Home
last modified time | relevance | path

Searched refs:bc (Results 1 – 25 of 252) sorted by relevance

1234567891011

/aosp12/packages/modules/adb/
H A Dtypes_test.cpp42 IOVector bc; in TEST() local
49 IOVector bc; in TEST() local
50 bc.append(copy_block(block)); in TEST()
51 ASSERT_EQ(100ULL, bc.size()); in TEST()
58 IOVector bc; in TEST() local
62 ASSERT_EQ(3ULL, bc.size()); in TEST()
68 IOVector bc; in TEST() local
72 ASSERT_EQ(9ULL, bc.size()); in TEST()
86 ASSERT_EQ(0ULL, bc.size()); in TEST()
90 IOVector bc; in TEST() local
[all …]
/aosp12/build/soong/cmd/merge_zips/
H A Dmerge_zips_test.go44 bc = testZipEntry{"b/c", 0755, []byte("bar")} var
153 {metainfDir, manifestFile2, bDir, bc},
164 {bDir, bc},
167 out: []testZipEntry{bDir, be, bc, A},
172 {a, bDir, bbDir, bbb, bc, bd, be},
174 out: []testZipEntry{a, bbb, bc, bd, be},
181 {a, bDir, bbDir, bbb, bc, bd, be},
210 {a, bDir, bbDir, bbb, bc, bd, be},
219 {a, bDir, bbDir, bbb, bc, bd, be},
221 out: []testZipEntry{a, bDir, bc, bd, be},
[all …]
/aosp12/frameworks/rs/
H A DAndroid.mk13 librsrt_arm.bc \
14 librsrt_arm64.bc \
15 librsrt_mips.bc \
16 librsrt_x86.bc \
17 librsrt_x86_64.bc \
H A DAndroid.bp250 "libclcore.bc",
251 "libclcore_debug.bc",
252 "libclcore_debug_g.bc",
253 "libclcore_g.bc",
259 required: ["libclcore_x86.bc"],
262 required: ["libclcore_x86.bc"],
267 required: ["libclcore_neon.bc"],
/aosp12/frameworks/rs/driver/runtime/
H A DAndroid.mk82 LOCAL_MODULE := libclcore.bc
104 LOCAL_MODULE := libclcore_debug.bc
129 LOCAL_MODULE := libclcore_x86.bc
147 LOCAL_MODULE := libclcore_neon.bc
160 LOCAL_MODULE := libclcore_g.bc
180 LOCAL_MODULE := libclcore_debug_g.bc
215 LOCAL_MODULE := librsrt_arm.bc
232 LOCAL_MODULE := librsrt_mips.bc
249 LOCAL_MODULE := librsrt_x86.bc
262 LOCAL_MODULE := librsrt_arm64.bc
[all …]
H A Dbuild_bc_lib_internal.mk65 c_bc_files := $(patsubst %.c,%.bc, \
68 ll_bc_files := $(patsubst %.ll,%.bc, \
76 $(c_bc_files): $(intermediates)/%.bc: $(LOCAL_PATH)/%.c $(bc_clang)
81 $(ll_bc_files): $(intermediates)/%.bc: $(LOCAL_PATH)/%.ll $(RS_LLVM_AS)
85 $(foreach f,$(c_bc_files),$(call include-depfile,$(f:%.bc=%.d),$(f)))
/aosp12/frameworks/native/libs/binder/tests/
H A DbinderDriverInterfaceTest.cpp59 const uint32_t bc[] = { in EnterLooper() local
63 bwr.write_buffer = (uintptr_t)bc; in EnterLooper()
64 bwr.write_size = sizeof(bc); in EnterLooper()
216 const uint32_t bc[] = { in TEST_F() local
227 bwr.write_buffer = (uintptr_t)bc; in TEST_F()
228 bwr.write_size = sizeof(bc); in TEST_F()
230 EXPECT_EQ(sizeof(bc), bwr.write_consumed); in TEST_F()
327 } __attribute__((packed)) bc = { in TEST_F() local
351 bwr.write_buffer = (uintptr_t)&bc; in TEST_F()
352 bwr.write_size = sizeof(bc); in TEST_F()
[all …]
/aosp12/art/libartbase/base/
H A Dbit_string.h28 inline std::ostream& operator<<(std::ostream& os, const BitStringChar& bc);
108 inline std::ostream& operator<<(std::ostream& os, const BitStringChar& bc) {
109 os << "BitStringChar<" << bc.GetBitLength() << ">("
110 << static_cast<BitStringChar::StorageType>(bc) << ")";
211 BitStringChar bc = (*this)[i]; in Length() local
212 if (bc != 0u) { in Length()
287 BitStringChar bc = bit_string[i]; variable
291 os << static_cast<BitString::StorageType>(bc);
/aosp12/packages/services/Car/tools/perf/app-launch-test/
H A Dapp_launch_perf_test.sh42 sum=$(echo "scale=${SCALE};${sum} + ${val}" | bc)
45 mean=$(echo "scale=${SCALE};${sum} / ${count}" | bc)
49 diff_sqrd_sum=$(echo "scale=${SCALE};${diff_sqrd_sum} + (${mean} - ${val}) ^ 2" | bc)
51 stddev=$(echo "scale=${SCALE};sqrt(${diff_sqrd_sum} / ${count})" | bc)
/aosp12/frameworks/layoutlib/bridge/src/android/preference/
H A DBridgePreferenceInflater.java36 BridgeContext bc = null; in createItem() local
40 bc = (BridgeContext) context; in createItem()
59 if (viewKey != null && bc != null) { in createItem()
60 bc.addCookie(preference, viewKey); in createItem()
H A DPreference_Delegate.java43 BridgeContext bc = context instanceof BridgeContext ? ((BridgeContext) context) : null; in getView() local
45 if (bc != null) { in getView()
46 Object cookie = bc.getCookie(pref); in getView()
48 bc.addViewKey(convertView, cookie); in getView()
/aosp12/frameworks/layoutlib/bridge/src/android/view/
H A DBridgeInflater.java198 private static Class<?> findCustomInflater(@NotNull BridgeContext bc, in findCustomInflater() argument
212 ResourceValue value = bc.getRenderResources().findItemInTheme(attrRef); in findCustomInflater()
222 } else if (bc.isAppCompatTheme()) { in findCustomInflater()
248 BridgeContext bc = (BridgeContext) context; in createViewFromCustomInflater() local
249 Class<?> inflaterClass = findCustomInflater(bc, mLayoutlibCallback); in createViewFromCustomInflater()
438 BridgeContext bc = (BridgeContext) context; in setupViewInContext() local
442 bc.addViewKey(view, viewKey); in setupViewInContext()
447 bc.setScrollXPos(view, value); in setupViewInContext()
452 bc.setScrollYPos(view, value); in setupViewInContext()
463 resourceId = bc.getResourceId(attrListItemValue.asReference(), 0); in setupViewInContext()
[all …]
/aosp12/build/make/core/
H A Djava_renderscript.mk70 bc_files := $(patsubst %.rscript,%.bc, $(notdir $(renderscript_sources)))
71 bc_dep_files := $(addprefix $(renderscript_intermediate.COMMON)/,$(patsubst %.bc,%.d,$(bc_files)))
83 $(transform-renderscripts-to-java-and-bc)
117 $(patsubst %.bc,%.so, $(bc_files)))
145 $(renderscript_intermediate.bc_folder)%.bc \
147 $(transform-bc-to-so)
/aosp12/frameworks/base/libs/hwui/pipeline/skia/
H A DShaderCache.cpp116 BlobCache* bc = getBlobCacheLocked(); in load() local
117 size_t valueSize = bc->get(key.data(), keySize, valueBuffer, mObservedBlobValueSize); in load()
127 valueSize = bc->get(key.data(), keySize, valueBuffer, mObservedBlobValueSize); in load()
171 BlobCache* bc = getBlobCacheLocked(); in store() local
175 mOldPipelineCacheSize = bc->get(key.data(), keySize, nullptr, 0); in store()
190 bc->set(key.data(), keySize, value, valueSize); in store()
/aosp12/frameworks/rs/driver/
H A DREADME.txt9 However, only user bitcode has a wrapper -- libclcore.bc does not.
10 Therefore, libclcore.bc must not violate ANY of the guarantees
13 libclcore.bc (bcc::Script::LinkRuntime()) the linked bitcode is
17 libclcore.bc to conform to that guarantee.
/aosp12/system/ca-certificates/google/files/
H A Da2c66da8.057 21:61:9b:34:eb:05:c6:5e:ec:5b:1a:bc:eb:c9:cf:
64 04:73:2a:6e:91:01:7c:21:4c:d4:bc:ae:1b:03:75:
66 a4:c2:e6:a9:a0:67:dd:a4:27:bc:a1:4f:39:b5:11:
77 b6:41:75:de:7a:ac:5f:8d:3f:c9:bc:d3:41:11:12:
110 26:d2:a4:a8:62:97:d2:1e:e2:ed:4a:8b:bc:1b:fd:47:4a:0d:
115 c9:0a:bc:ee:43:fa:3a:71:a5:c8:4d:26:a5:35:fd:89:5d:bc:
117 8b:4a:1b:8f:01:b6:27:95:53:e8:b6:89:6d:5b:bc:68:d4:23:
118 e8:8b:51:a2:56:f9:f0:a6:80:a0:d6:1e:b3:bc:0f:0f:53:75:
120 07:d1:75:bc:cf:f3:66:7e
H A De268a4c5.042 06:c5:bc:05:a5:03:7c:82:cb:29:10:ae:e1:88:81:
49 15:65:20:fa:35:66:69:de:df:2c:f1:6e:bc:30:db:
73 cc:29:89:44:5d:bf:46:39:3d:e8:ee:bc:4d:54:86:1e:1d:6c:
75 23:9a:bc:3e:ff:28:2a:ed:a3:ff:1c:23:ba:43:57:09:67:4d:
80 22:65:a7:3f:fe:d1:66:ad:0b:bc:6b:99:86:ef:3f:7d:f3:18:
84 20:44:08:c0:7a:b6:40:fd:c4:e4:35:e1:1d:16:1c:d0:bc:2b:
H A D35105088.039 01:fd:6d:30:fc:a3:ca:51:a8:1b:bc:64:0e:35:03:2d
53 f1:d3:b1:d6:7b:37:28:11:2b:47:da:39:c6:bc:3a:
57 90:22:3c:bc:fe:13:f0:87:14:7b:f6:e4:1f:8e:d4:
58 e4:51:c6:11:67:46:08:51:cb:86:14:54:3f:bc:33:
61 cc:f0:dc:bc:9e:4c:fe:af:05:96:35:1f:57:5a:b7:
77 7d:1c:4d:17:bc:c9:ec:43:26:d0:bf:41:5f:40:a9:
97 6b:4e:ba:8c:21:4f:a2:8e:55:62:91:f3:69:15:d8:bc:88:e3:
105 d8:d0:83:72:0c:f1:67:11:89:0c:9c:13:4c:72:34:df:bc:d5:
/aosp12/system/ca-certificates/files/
H A Da2c66da8.057 21:61:9b:34:eb:05:c6:5e:ec:5b:1a:bc:eb:c9:cf:
64 04:73:2a:6e:91:01:7c:21:4c:d4:bc:ae:1b:03:75:
66 a4:c2:e6:a9:a0:67:dd:a4:27:bc:a1:4f:39:b5:11:
77 b6:41:75:de:7a:ac:5f:8d:3f:c9:bc:d3:41:11:12:
110 26:d2:a4:a8:62:97:d2:1e:e2:ed:4a:8b:bc:1b:fd:47:4a:0d:
115 c9:0a:bc:ee:43:fa:3a:71:a5:c8:4d:26:a5:35:fd:89:5d:bc:
117 8b:4a:1b:8f:01:b6:27:95:53:e8:b6:89:6d:5b:bc:68:d4:23:
118 e8:8b:51:a2:56:f9:f0:a6:80:a0:d6:1e:b3:bc:0f:0f:53:75:
120 07:d1:75:bc:cf:f3:66:7e
H A D33ee480d.062 a1:93:88:eb:c1:97:bc:8c:f9:1d:d9:22:84:24:74:
76 63:6a:bc:96:92:6a:3e:f8:bc:65:55:9b:de:f5:0d:
78 59:5f:97:ac:eb:ef:2e:c8:bc:d7:1b:59:3c:2b:cc:
101 8a:38:43:3f:01:85:a5:47:a7:3d:46:b2:bc:e5:22:68:f7:7b:
103 71:c5:be:b1:f0:23:45:f4:9d:6b:fc:19:63:9d:a3:bc:04:c6:
118 8b:1b:6e:9c:bc:2c:a0:5b:d5:6a:00:af:5f:37:e1:d5:fa:10:
122 8b:61:1b:bc:fa:1f:91:2b:d7:44:07:5e:ba:29:ac:d9:c5:e9:
H A D35105088.039 01:fd:6d:30:fc:a3:ca:51:a8:1b:bc:64:0e:35:03:2d
53 f1:d3:b1:d6:7b:37:28:11:2b:47:da:39:c6:bc:3a:
57 90:22:3c:bc:fe:13:f0:87:14:7b:f6:e4:1f:8e:d4:
58 e4:51:c6:11:67:46:08:51:cb:86:14:54:3f:bc:33:
61 cc:f0:dc:bc:9e:4c:fe:af:05:96:35:1f:57:5a:b7:
77 7d:1c:4d:17:bc:c9:ec:43:26:d0:bf:41:5f:40:a9:
97 6b:4e:ba:8c:21:4f:a2:8e:55:62:91:f3:69:15:d8:bc:88:e3:
105 d8:d0:83:72:0c:f1:67:11:89:0c:9c:13:4c:72:34:df:bc:d5:
H A Db936d1c6.056 a3:49:d1:20:19:ee:bc:c0:29:18:65:a7:de:fe:ef:
57 dd:0a:90:21:e7:1a:67:92:42:10:98:5f:4f:30:bc:
74 e2:97:92:30:a1:89:e3:bc:55:a8:27:d6:4b:ed:90:
75 ad:8b:fa:63:25:59:2d:a8:35:dd:ca:97:33:bc:e5:
105 be:18:e1:a3:a4:dc:fa:18:f9:d3:bc:13:9b:39:7a:34:ba:d3:
110 73:c3:9a:2a:f7:ab:8b:a1:3a:14:ef:34:bc:52:0e:89:98:9a:
114 6d:0e:26:ad:c1:6e:34:bc:32:f8:0c:05:fa:65:a3:db:3b:37:
119 42:40:6a:be:3a:d3:72:e1:6a:37:55:bc:ac:1d:95:b7:69:61:
/aosp12/packages/modules/NeuralNetworks/driver/cache/nnCache/
H A DnnCache.cpp84 BlobCache* bc = getBlobCacheLocked(); in setBlob() local
85 bc->set(key, keySize, value, valueSize); in setBlob()
111 BlobCache* bc = getBlobCacheLocked(); in getBlob() local
112 return bc->get(key, keySize, value, valueSize); in getBlob()
127 BlobCache* bc = getBlobCacheLocked(); in getBlob() local
128 return bc->get(key, keySize, value, alloc); in getBlob()
/aosp12/frameworks/native/opengl/libs/EGL/
H A Degl_cache.cpp125 BlobCache* bc = getBlobCacheLocked(); in setBlob() local
126 bc->set(key, keySize, value, valueSize); in setBlob()
153 BlobCache* bc = getBlobCacheLocked(); in getBlob() local
154 return bc->get(key, keySize, value, valueSize); in getBlob()
/aosp12/frameworks/minikin/libs/minikin/
H A DMeasurement.cpp141 BoundsComposer bc; in getBounds() local
150 pieceEndHyphen, bc); in getBounds()
153 bc.mAdvance += paint.wordSpacing; in getBounds()
157 *out = bc.mBounds; in getBounds()

1234567891011