HomeSort by relevance Sort by last modified time
    Searched refs:cf (Results 126 - 150 of 484) sorted by null

1 2 3 4 56 7 8 91011>>

  /dalvik/dx/src/com/android/dx/cf/direct/
DirectClassFile.java 17 package com.android.dx.cf.direct;
19 import com.android.dx.cf.attrib.AttBootstrapMethods;
20 import com.android.dx.cf.attrib.AttSourceFile;
21 import com.android.dx.cf.code.BootstrapMethodsList;
22 import com.android.dx.cf.cst.ConstantPoolParser;
23 import com.android.dx.cf.iface.Attribute;
24 import com.android.dx.cf.iface.AttributeList;
25 import com.android.dx.cf.iface.ClassFile;
26 import com.android.dx.cf.iface.FieldList;
27 import com.android.dx.cf.iface.MethodList
    [all...]
  /dalvik/dx/src/com/android/dx/cf/cst/
ConstantPoolParser.java 17 package com.android.dx.cf.cst;
19 import static com.android.dx.cf.cst.ConstantTags.CONSTANT_Class;
20 import static com.android.dx.cf.cst.ConstantTags.CONSTANT_Double;
21 import static com.android.dx.cf.cst.ConstantTags.CONSTANT_Fieldref;
22 import static com.android.dx.cf.cst.ConstantTags.CONSTANT_Float;
23 import static com.android.dx.cf.cst.ConstantTags.CONSTANT_Integer;
24 import static com.android.dx.cf.cst.ConstantTags.CONSTANT_InterfaceMethodref;
25 import static com.android.dx.cf.cst.ConstantTags.CONSTANT_InvokeDynamic;
26 import static com.android.dx.cf.cst.ConstantTags.CONSTANT_Long;
27 import static com.android.dx.cf.cst.ConstantTags.CONSTANT_MethodHandle
    [all...]
  /dalvik/dx/src/com/android/multidex/
MainDexListBuilder.java 19 import com.android.dx.cf.attrib.AttRuntimeVisibleAnnotations;
20 import com.android.dx.cf.direct.DirectClassFile;
21 import com.android.dx.cf.iface.Attribute;
22 import com.android.dx.cf.iface.FieldList;
23 import com.android.dx.cf.iface.HasAttribute;
24 import com.android.dx.cf.iface.MethodList;
  /external/mesa3d/src/gallium/drivers/freedreno/a2xx/
fd2_compiler.c 97 /* current exec CF instruction */
98 struct ir2_cf *cf; member in struct:fd2_compile_context
133 ctx->cf = NULL;
242 struct ir2_cf *cf = ctx->cf; local
243 if (!cf || cf->exec.instrs_count >= ARRAY_SIZE(ctx->cf->exec.instrs))
244 ctx->cf = cf = ir2_cf_create(ctx->so->ir, EXEC)
984 static struct ir2_cf *cf; local
    [all...]
  /dalvik/dx/src/com/android/dx/command/dump/
BlockDumper.java 19 import com.android.dx.cf.code.BasicBlocker;
20 import com.android.dx.cf.code.ByteBlock;
21 import com.android.dx.cf.code.ByteBlockList;
22 import com.android.dx.cf.code.ByteCatchList;
23 import com.android.dx.cf.code.BytecodeArray;
24 import com.android.dx.cf.code.ConcreteMethod;
25 import com.android.dx.cf.code.Ropper;
26 import com.android.dx.cf.direct.CodeObserver;
27 import com.android.dx.cf.direct.DirectClassFile;
28 import com.android.dx.cf.direct.StdAttributeFactory
    [all...]
  /dalvik/dx/src/com/android/dx/cf/attrib/
AttEnclosingMethod.java 17 package com.android.dx.cf.attrib;
BaseAnnotations.java 17 package com.android.dx.cf.attrib;
BaseParameterAnnotations.java 17 package com.android.dx.cf.attrib;
  /dalvik/dx/src/com/android/dx/cf/code/
ByteBlockList.java 17 package com.android.dx.cf.code;
  /dalvik/dx/tests/135-invoke-custom/
build 38 (cd "${BUILD_PATH}" && jar cf "${JAR_FILE}" invokecustom/InvokeCustom.class invokecustom/Super.class ) || fail "jar creation error"
  /dalvik/dx/tests/137-dexmerger-dex38/
build 38 (cd "${BUILD_PATH}" && jar cf "${JAR_FILE}" invokecustom/InvokeCustom*.class invokecustom/Super.class ) || fail "jar creation error"
  /dalvik/dx/tests/142-const-method-handle/
build 38 (cd "${BUILD_PATH}" && jar cf "${JAR_FILE}" Main.class constmethodhandle/ConstTest.class) || fail "jar creation error"
  /external/llvm/examples/BrainF/
BrainFDriver.cpp 136 BrainF::CompileFlags cf = BrainF::flag_off; local
138 cf = BrainF::CompileFlags(cf | BrainF::flag_arraybounds);
142 std::unique_ptr<Module> Mod(bf.parse(in, 65536, cf, Context)); // 64 KiB
  /external/swiftshader/third_party/LLVM/examples/BrainF/
BrainFDriver.cpp 122 BrainF::CompileFlags cf = BrainF::flag_off; local
124 cf = BrainF::CompileFlags(cf | BrainF::flag_arraybounds);
128 Module *mod = bf.parse(in, 65536, cf, Context); //64 KiB
  /external/swiftshader/third_party/llvm-7.0/llvm/examples/BrainF/
BrainFDriver.cpp 137 BrainF::CompileFlags cf = BrainF::flag_off; local
139 cf = BrainF::CompileFlags(cf | BrainF::flag_arraybounds);
143 std::unique_ptr<Module> Mod(bf.parse(in, 65536, cf, Context)); // 64 KiB
  /external/swiftshader/third_party/llvm-7.0/llvm/test/MC/Mips/
micromips-neg-offset.s 8 # CHECK: 2: cf fe bc16 -4
  /cts/tools/cfassembler/src/dxconvext/
ClassFileParser.java 19 import com.android.dx.cf.direct.ClassPathOpener;
20 import com.android.dx.cf.direct.DirectClassFile;
21 import com.android.dx.cf.direct.StdAttributeFactory;
22 import com.android.dx.cf.iface.Member;
23 import com.android.dx.cf.iface.ParseObserver;
105 DirectClassFile cf = new DirectClassFile(allbytes, fixedPathName, true); local
109 cf.setObserver(new ParseObserver() {
232 cf.setAttributeFactory(StdAttributeFactory.THE_ONE);
234 cf.getMagic();
235 // cf.getFields()
    [all...]
  /external/u-boot/drivers/bios_emulator/x86emu/
prim_ops.c 726 unsigned int res, cnt, mask, cf; local
731 CF B_7 B_6 B_5 B_4 B_3 B_2 B_1 B_0
749 1) CF <- b_(8-n)
751 3) B_(n-1) <- cf
757 /* CF <- b_(8-n) */
758 cf = (d >> (8 - cnt)) & 0x1;
777 /* B_(n-1) <- cf */
780 /* set the new carry flag, based on the variable "cf" */
781 CONDITIONAL_SET_FLAG(cf, F_CF);
783 xor of CF and the most significant bit. Blecck. *
799 unsigned int res, cnt, mask, cf; local
823 u32 res, cnt, mask, cf; local
848 u32 mask, cf, ocf = 0; local
932 u32 mask, cf, ocf = 0; local
964 u32 mask, cf, ocf = 0; local
1187 unsigned int cnt, res, cf; local
1229 unsigned int cnt, res, cf; local
1267 unsigned int cnt, res, cf; local
1302 unsigned int cnt, res, cf; local
1337 unsigned int cnt, res, cf; local
1372 unsigned int cnt, res, cf; local
1406 unsigned int cnt, res, cf, mask, sf; local
1444 unsigned int cnt, res, cf, mask, sf; local
1482 u32 cnt, res, cf, mask, sf; local
1520 unsigned int cnt, res, cf; local
1555 unsigned int cnt, res, cf; local
1590 unsigned int cnt, res, cf; local
1625 unsigned int cnt, res, cf; local
    [all...]
  /build/make/core/tasks/
sdk-addon.mk 47 $(foreach cf,$(PRODUCT_SDK_ADDON_COPY_MODULES), \
48 $(eval _src := $(call module-stubs-files,$(call word-colon,1,$(cf)))) \
51 $(if $(_src),,$(eval $(error Unknown or unlinkable module: $(call word-colon,1,$(cf)). Requested by $(INTERNAL_PRODUCT)))) \
52 $(eval _dest := $(call word-colon,2,$(cf))) \
59 $(foreach cf,$(PRODUCT_SDK_ADDON_COPY_FILES), \
60 $(eval _src := $(call word-colon,1,$(cf))) \
61 $(eval _dest := $(call word-colon,2,$(cf))) \
84 $(foreach cf,$(files_to_copy), \
85 $(eval _root := $(call word-colon,1,$(cf))) \
86 $(eval _src := $(call word-colon,2,$(cf))) \
    [all...]
  /external/cldr/tools/java/org/unicode/cldr/tool/
DumpCoverage.java 28 CLDRFile cf = cldrFactory.makeWithFallback(lang); local
30 cf.getPaths("//ldml", null, paths);
  /external/compiler-rt/lib/scudo/
scudo_allocator.h 42 void setFrom(const Flags *f, const CommonFlags *cf);
43 void copyTo(Flags *f, CommonFlags *cf) const;
  /external/ltp/testcases/kernel/fs/fs_maim/
backbeat 38 print `tar -cf test.tar sbin`;
  /external/skqp/modules/sksg/src/
SkSGRenderNode.cpp 55 RenderNode::ScopedRenderContext::modulateColorFilter(sk_sp<SkColorFilter> cf) {
57 std::move(cf));
  /external/boringssl/src/crypto/asn1/
tasn_fre.c 80 const ASN1_COMPAT_FUNCS *cf; local
128 cf = it->funcs;
129 if (cf && cf->asn1_free)
130 cf->asn1_free(*pval);
  /external/mesa3d/src/compiler/nir/
nir_propagate_invariant.c 54 add_cf_node(nir_cf_node *cf, struct set *invariants)
56 if (cf->type == nir_cf_node_if) {
57 nir_if *if_stmt = nir_cf_node_as_if(cf);
61 if (cf->parent)
62 add_cf_node(cf->parent, invariants);

Completed in 1318 milliseconds

1 2 3 4 56 7 8 91011>>