/frameworks/av/media/libstagefright/codecs/m4v_h263/dec/src/ |
D | chvr_filter.cpp | 36 int br, bc, incr, mbr, mbc; in CombinedHorzVertRingFilter() local 91 for (bc = mbc; bc < mbc + 2; bc++) /* bc is the column counter in blocks */ in CombinedHorzVertRingFilter() 95 if (br < pp_h && bc < pp_w) in CombinedHorzVertRingFilter() 100 ptr = rec + (brwidth << 6) + (bc << 3); in CombinedHorzVertRingFilter() 103 index = brwidth + bc; in CombinedHorzVertRingFilter() 250 for (bc = mbc + 1; bc < mbc + 3; bc++) /* bc is the column counter in blocks */ in CombinedHorzVertRingFilter() 254 if (br < pp_h && bc < pp_w) in CombinedHorzVertRingFilter() 259 ptr = rec + (brwidth << 6) + (bc << 3); in CombinedHorzVertRingFilter() 262 index = brwidth + bc; in CombinedHorzVertRingFilter() 408 for (bc = mbc; bc < mbc + 2; bc++) in CombinedHorzVertRingFilter() [all …]
|
D | chv_filter.cpp | 188 int br, bc, mbr, mbc; in CombinedHorzVertFilter() local 216 for (bc = mbc; bc < mbc + 2; bc++) in CombinedHorzVertFilter() 219 … if (bc < pp_w) /* boundary : don't do it on the most right col block */ in CombinedHorzVertFilter() 221 ptr = rec + (brwidth << 6) + (bc << 3); in CombinedHorzVertFilter() 222 jVal0 = brwidth + bc; in CombinedHorzVertFilter() 332 for (bc = mbc + 1; bc < mbc + 3; bc++) in CombinedHorzVertFilter() 335 if (bc < pp_w) in CombinedHorzVertFilter() 337 ptr = rec + (brwidth << 6) + (bc << 3); in CombinedHorzVertFilter() 338 jVal0 = brwidth + bc; in CombinedHorzVertFilter() 465 int br, bc, mbr, mbc; in CombinedHorzVertFilter_NoSoftDeblocking() local [all …]
|
/frameworks/compile/libbcc/ |
D | libbcc.sha1.mk | 15 $(call intermediates-dir-for,SHARED_LIBRARIES,libclcore.bc,,,$(my_2nd_arch_prefix))/libclcore.bc \ 16 …termediates-dir-for,SHARED_LIBRARIES,libclcore_debug.bc,,,$(my_2nd_arch_prefix))/libclcore_debug.bc 21 …intermediates-dir-for,SHARED_LIBRARIES,libclcore_neon.bc,,,$(my_2nd_arch_prefix))/libclcore_neon.bc
|
D | Android.mk | 62 LOCAL_REQUIRED_MODULES := libclcore.bc libclcore_debug.bc libclcore_g.bc libcompiler_rt 64 LOCAL_REQUIRED_MODULES_x86 += libclcore_x86.bc 65 LOCAL_REQUIRED_MODULES_x86_64 += libclcore_x86.bc 68 LOCAL_REQUIRED_MODULES_arm += libclcore_neon.bc
|
D | CleanSpec.mk | 48 $(call add-clean-step, rm -rf $(PRODUCT_OUT)/system/lib/libruntime.bc)
|
/frameworks/rs/driver/runtime/ |
D | Android.mk | 81 LOCAL_MODULE := libclcore.bc 100 LOCAL_MODULE := libclcore_debug.bc 122 LOCAL_MODULE := libclcore_x86.bc 138 LOCAL_MODULE := libclcore_neon.bc 149 LOCAL_MODULE := libclcore_g.bc 174 LOCAL_MODULE := librsrt_arm.bc 188 LOCAL_MODULE := librsrt_mips.bc 202 LOCAL_MODULE := librsrt_x86.bc 212 LOCAL_MODULE := librsrt_arm64.bc 223 LOCAL_MODULE := librsrt_x86_64.bc
|
D | build_bc_lib_internal.mk | 74 c_bc_files := $(patsubst %.c,%.bc, \ 77 ll_bc_files := $(patsubst %.ll,%.bc, \ 85 $(c_bc_files): $(intermediates)/%.bc: $(LOCAL_PATH)/%.c $(bc_clang) 89 $(call transform-d-to-p-args,$(@:%.bc=%.d),$(@:%.bc=%.P)) 91 $(ll_bc_files): $(intermediates)/%.bc: $(LOCAL_PATH)/%.ll $(RS_LLVM_AS) 95 $(foreach f,$(c_bc_files),$(call include-depfile,$(f:%.bc=%.P),$(f)))
|
/frameworks/native/libs/binder/tests/ |
D | binderDriverInterfaceTest.cpp | 57 const uint32_t bc[] = { in EnterLooper() local 61 bwr.write_buffer = (uintptr_t)bc; in EnterLooper() 62 bwr.write_size = sizeof(bc); in EnterLooper() 68 EXPECT_EQ(sizeof(bc), bwr.write_consumed); in EnterLooper() 198 const uint32_t bc[] = { in TEST_F() local 209 bwr.write_buffer = (uintptr_t)bc; in TEST_F() 210 bwr.write_size = sizeof(bc); in TEST_F() 212 EXPECT_EQ(sizeof(bc), bwr.write_consumed); in TEST_F() 308 } __attribute__((packed)) bc = { in TEST_F() local 332 bwr.write_buffer = (uintptr_t)&bc; in TEST_F() [all …]
|
/frameworks/base/tools/layoutlib/bridge/src/android/preference/ |
D | BridgePreferenceInflater.java | 35 BridgeContext bc = null; in onCreateItem() local 39 bc = (BridgeContext) context; in onCreateItem() 47 if (viewKey != null && bc != null) { in onCreateItem() 48 bc.addCookie(preference, viewKey); in onCreateItem()
|
D | Preference_Delegate.java | 43 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()
|
/frameworks/base/tools/layoutlib/bridge/src/android/view/ |
D | BridgeInflater.java | 262 BridgeContext bc = (BridgeContext) context; in setupViewInContext() local 264 Object viewKey = getViewKeyFromParser(attrs, bc, mResourceReference, mIsInMerge); in setupViewInContext() 266 bc.addViewKey(view, viewKey); in setupViewInContext() 271 bc.setScrollXPos(view, value); in setupViewInContext() 276 bc.setScrollYPos(view, value); in setupViewInContext() 283 ResourceValue resValue = bc.getRenderResources().findResValue(attrVal, false); in setupViewInContext() 295 RecyclerViewUtil.setAdapter(view, bc, mLayoutlibCallback, resourceId); in setupViewInContext() 320 /*package*/ static Object getViewKeyFromParser(AttributeSet attrs, BridgeContext bc, in getViewKeyFromParser() argument 335 BridgeXmlBlockParser previousParser = bc.getPreviousParser(); in getViewKeyFromParser()
|
/frameworks/native/opengl/libs/EGL/ |
D | egl_cache.cpp | 144 sp<BlobCache> bc = getBlobCacheLocked(); in setBlob() local 145 bc->set(key, keySize, value, valueSize); in setBlob() 183 sp<BlobCache> bc = getBlobCacheLocked(); in getBlob() local 184 return bc->get(key, keySize, value, valueSize); in getBlob()
|
/frameworks/base/tools/layoutlib/bridge/src/android/graphics/ |
D | BlendComposite.java | 109 BlendComposite bc = (BlendComposite) obj; in equals() local 111 return mode == bc.mode && alpha == bc.alpha; in equals()
|
/frameworks/support/v8/renderscript/java/src/android/support/v8/renderscript/ |
D | Allocation.java | 619 Bitmap.Config bc = b.getConfig(); in validateBitmapFormat() local 620 if (bc == null) { in validateBitmapFormat() 623 switch (bc) { in validateBitmapFormat() 630 " bytes, passed bitmap was " + bc); in validateBitmapFormat() 640 " bytes, passed bitmap was " + bc); in validateBitmapFormat() 650 " bytes, passed bitmap was " + bc); in validateBitmapFormat() 660 " bytes, passed bitmap was " + bc); in validateBitmapFormat() 2641 final Bitmap.Config bc = b.getConfig(); in elementFromBitmap() local 2642 if (bc == Bitmap.Config.ALPHA_8) { in elementFromBitmap() 2645 if (bc == Bitmap.Config.ARGB_4444) { in elementFromBitmap() [all …]
|
/frameworks/base/rs/java/android/renderscript/ |
D | Allocation.java | 633 Bitmap.Config bc = b.getConfig(); in validateBitmapFormat() local 634 if (bc == null) { in validateBitmapFormat() 637 switch (bc) { in validateBitmapFormat() 644 " bytes, passed bitmap was " + bc); in validateBitmapFormat() 654 " bytes, passed bitmap was " + bc); in validateBitmapFormat() 664 " bytes, passed bitmap was " + bc); in validateBitmapFormat() 674 " bytes, passed bitmap was " + bc); in validateBitmapFormat() 2754 final Bitmap.Config bc = b.getConfig(); in elementFromBitmap() local 2755 if (bc == Bitmap.Config.ALPHA_8) { in elementFromBitmap() 2758 if (bc == Bitmap.Config.ARGB_4444) { in elementFromBitmap() [all …]
|
/frameworks/av/media/libstagefright/codecs/aacenc/src/ |
D | dyn_bits.c | 65 findBestBook(const Word16 *bc, Word16 *book) in findBestBook() argument 72 if (bc[j] < minBits) { in findBestBook() 73 minBits = bc[j]; in findBestBook()
|
/frameworks/rs/ |
D | CleanSpec.mk | 55 $(call add-clean-step, rm -rf $(OUT_DIR)/host/*/obj/SHARED_LIBRARIES/librsrt*.bc)
|
D | update_rs_prebuilts.sh | 156 for a in `find renderscript/lib/$t -name \*.bc`; do
|
/frameworks/compile/libbcc/tests/libbcc/ |
D | tbaa.ll | 6 ; ModuleID = 'kernel.bc'
|
D | lit.cfg | 43 r"\blibclcore.bc\b"]:
|
D | tbaa-through-alloca.ll | 6 ; ModuleID = 'kernel.bc'
|
D | getelementptr.ll | 8 ; ModuleID = 'test_getelementptr.bc'
|
/frameworks/compile/slang/ |
D | RSCCOptions.td | 57 def emit_bc : Flag<["-"], "emit-bc">, 58 HelpText<"Build ASTs then convert to LLVM, emit .bc file">;
|
/frameworks/compile/slang/lit-tests/bitcode_wrapper/ |
D | bitcode_wrapper_test.ll | 39 ; ModuleID = 'kernel.bc'
|
/frameworks/compile/libbcc/tests/debuginfo/ |
D | README | 10 Host tests use clang to build bytecode (bc) files, which are then executed
|