Searched refs:cf (Results 76 - 100 of 285) sorted by relevance

1234567891011>>

/external/javassist/src/main/javassist/
H A DCtNewNestedClass.java41 ClassFile cf = clazz.getClassFile2();
42 InnerClassesAttribute ica = (InnerClassesAttribute)cf.getAttribute(
/external/skia/tests/
H A DFlatDataTest.cpp64 SkAutoTUnref<SkColorFilter> cf(SkColorFilter::CreateLightingFilter(SK_ColorBLUE, SK_ColorRED));
65 testCreate<SkFlattenableTraits>(reporter, *cf);
/external/chromium_org/third_party/boringssl/src/crypto/asn1/
H A Dtasn_fre.c81 const ASN1_COMPAT_FUNCS *cf; local
133 cf = it->funcs;
134 if (cf && cf->asn1_free)
135 cf->asn1_free(*pval);
H A Dtasn_new.c90 const ASN1_COMPAT_FUNCS *cf; local
121 cf = it->funcs;
122 if (cf && cf->asn1_new) {
123 *pval = cf->asn1_new();
/external/openssl/crypto/asn1/
H A Dtasn_fre.c83 const ASN1_COMPAT_FUNCS *cf; local
135 cf = it->funcs;
136 if (cf && cf->asn1_free)
137 cf->asn1_free(*pval);
H A Dtasn_new.c92 const ASN1_COMPAT_FUNCS *cf; local
123 cf = it->funcs;
124 if (cf && cf->asn1_new) {
125 *pval = cf->asn1_new();
/external/valgrind/main/VEX/priv/
H A Dguest_x86_helpers.c151 { Int cf, pf, af, zf, sf, of; \
156 cf = (DATA_UTYPE)res < (DATA_UTYPE)argL; \
163 return cf | pf | af | zf | sf | of; \
172 { Int cf, pf, af, zf, sf, of; \
177 cf = (DATA_UTYPE)argL < (DATA_UTYPE)argR; \
184 return cf | pf | af | zf | sf | of; \
193 { Int cf, pf, af, zf, sf, of; \
200 cf = (DATA_UTYPE)res <= (DATA_UTYPE)argL; \
202 cf = (DATA_UTYPE)res < (DATA_UTYPE)argL; \
209 return cf | p
647 UInt of,sf,zf,cf,pf; local
1895 UInt tempCOUNT = rot_amt & 0x1F, cf=0, of=0, tempcf; local
1950 UInt tempCOUNT = rot_amt & 0x1F, cf=0, of=0, tempcf; local
[all...]
H A Dguest_amd64_helpers.c193 { Long cf, pf, af, zf, sf, of; \
198 cf = (DATA_UTYPE)res < (DATA_UTYPE)argL; \
205 return cf | pf | af | zf | sf | of; \
214 { Long cf, pf, af, zf, sf, of; \
219 cf = (DATA_UTYPE)argL < (DATA_UTYPE)argR; \
226 return cf | pf | af | zf | sf | of; \
235 { Long cf, pf, af, zf, sf, of; \
242 cf = (DATA_UTYPE)res <= (DATA_UTYPE)argL; \
244 cf = (DATA_UTYPE)res < (DATA_UTYPE)argL; \
251 return cf | p
822 ULong of,sf,zf,cf,pf; local
2742 ULong cf=0, of=0, tempcf; local
2810 ULong cf=0, of=0, tempcf; local
[all...]
H A Dguest_arm64_helpers.c358 ULong cf = (cc_dep1 >> ARM64G_CC_SHIFT_C) & 1; local
359 return cf;
366 ULong cf = res < argL; local
367 return cf;
374 ULong cf = res < argL; local
375 return cf;
381 ULong cf = argL >= argR; local
382 return cf;
388 ULong cf = argL >= argR; local
389 return cf;
398 ULong cf = oldC ? (res <= argL) : (res < argL); local
408 ULong cf = oldC ? (res <= argL) : (res < argL); local
417 ULong cf = oldC ? (argL >= argR) : (argL > argR); local
426 ULong cf = oldC ? (argL >= argR) : (argL > argR); local
617 ULong nf, zf, vf, cf; local
[all...]
H A Dguest_arm_helpers.c282 UInt cf = (cc_dep1 >> ARMG_CC_SHIFT_C) & 1; local
283 return cf;
290 UInt cf = res < argL; local
291 return cf;
297 UInt cf = argL >= argR; local
298 return cf;
307 UInt cf = oldC ? (res <= argL) : (res < argL); local
308 return cf;
316 UInt cf = oldC ? (argL >= argR) : (argL > argR); local
317 return cf;
323 UInt cf = shco; local
330 UInt cf = oldC; local
337 UInt cf = oldC; local
476 UInt nf, zf, vf, cf, inv; local
[all...]
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/elements/
H A DSpectrum.js233 var cf = WebInspector.Color.Format;
242 if (format === cf.HSLA || format === cf.HSL)
243 return color.toString(cf.HSLA);
245 return color.toString(cf.RGBA);
248 if (format === cf.ShortHEX)
249 return color.toString(cf.HEX);
250 console.assert(format === cf.Nickname);
251 return color.toString(cf.RGB);
/external/clang/test/ARCMT/
H A DCommon.h25 CFTypeRef CFRetain(CFTypeRef cf);
26 CFTypeRef CFMakeCollectable(CFTypeRef cf) NS_AUTOMATED_REFCOUNT_UNAVAILABLE;
28 NS_INLINE NS_RETURNS_RETAINED id NSMakeCollectable(CFTypeRef CF_CONSUMED cf) NS_AUTOMATED_REFCOUNT_UNAVAILABLE;
/external/javassist/src/main/javassist/util/proxy/
H A DProxyFactory.java497 ClassFile cf = make();
499 FactoryHelper.writeFile(cf, writeDirectory);
501 thisClass = FactoryHelper.toClass(cf, cl, getDomain());
684 ClassFile cf = new ClassFile(false, classname, superName);
685 cf.setAccessFlags(AccessFlag.PUBLIC);
686 setInterfaces(cf, interfaces);
687 ConstPool pool = cf.getConstPool();
693 cf.addField(finfo);
699 cf.addField(finfo2);
704 cf
835 setInterfaces(ClassFile cf, Class[] interfaces) argument
851 addMethodsHolder(ClassFile cf, ConstPool cp, String classname, int size) argument
872 addSetter(String classname, ClassFile cf, ConstPool cp) argument
887 addGetter(String classname, ClassFile cf, ConstPool cp) argument
901 overrideMethods(ClassFile cf, ConstPool cp, String className) argument
922 override(String thisClassname, Method meth, String prefix, int index, String desc, ClassFile cf, ConstPool cp) argument
944 makeConstructors(String thisClassName, ClassFile cf, ConstPool cp, String classname) argument
[all...]
/external/chromium_org/ui/android/java/src/org/chromium/ui/
H A DDropdownDividerDrawable.java47 public void setColorFilter(ColorFilter cf) { argument
/external/llvm/examples/BrainF/
H A DBrainF.h42 Module *parse(std::istream *in1, int mem, CompileFlags cf,
/external/llvm/tools/gold/
H A Dgold-plugin.cpp308 claimed_file &cf = Modules.back(); local
313 cf.handle = file->handle;
315 cf.syms.reserve(sym_count);
322 cf.syms.push_back(ld_plugin_symbol());
323 ld_plugin_symbol &sym = cf.syms.back();
377 cf.syms.reserve(cf.syms.size());
379 if (!cf.syms.empty()) {
380 if ((*add_symbols)(cf.handle, cf
[all...]
/external/chromium_org/third_party/WebKit/Source/platform/graphics/
H A DDrawLooperBuilder.cpp112 RefPtr<SkColorFilter> cf = adoptRef(SkColorFilter::CreateModeFilter(skColor, SkXfermode::kSrcIn_Mode)); local
113 paint->setColorFilter(cf.get());
/external/icu/icu4c/source/common/
H A Dlrucache.h82 CreateFunc cf,
84 LRUCache(maxSize, status), createFunc(cf) {
80 SimpleLRUCache( int32_t maxSize, CreateFunc cf, UErrorCode &status) argument
/external/libpcap/
H A Dpcap-can-linux.c225 struct can_frame* cf; local
254 cf = (struct can_frame*)&handle->buffer[8];
255 pkth.caplen -= 8 - cf->can_dlc;
258 cf->can_id = htonl( cf->can_id );
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/r600/
H A Dr600_asm.h202 struct list_head cf; member in struct:r600_bytecode
222 int eg_bytecode_cf_build(struct r600_bytecode *bc, struct r600_bytecode_cf *cf);
242 void r700_bytecode_cf_vtx_build(uint32_t *bytecode, const struct r600_bytecode_cf *cf);
/external/chromium_org/v8/test/mjsunit/
H A Dsetters-on-elements.js187 var cf = [create_func_smi, variable
196 base_setter_test(cf[c], 0, values[s]);
197 base_setter_test(cf[c], 1, values[s]);
/external/compiler-rt/lib/asan/
H A Dasan_rtl.cc95 CommonFlags *cf = common_flags(); local
96 ParseCommonFlagsFromString(cf, str);
97 CHECK((uptr)cf->malloc_context_size <= kStackTraceMax);
234 CommonFlags *cf = common_flags(); local
235 SetCommonFlagsDefaults(cf);
236 cf->detect_leaks = CAN_SANITIZE_LEAKS;
237 cf->external_symbolizer_path = GetEnv("ASAN_SYMBOLIZER_PATH");
238 cf->malloc_context_size = kDefaultMallocContextSize;
239 cf->intercept_tls_get_addr = true;
240 cf
[all...]
/external/mesa3d/src/gallium/drivers/r600/
H A Dr600_asm.h202 struct list_head cf; member in struct:r600_bytecode
222 int eg_bytecode_cf_build(struct r600_bytecode *bc, struct r600_bytecode_cf *cf);
242 void r700_bytecode_cf_vtx_build(uint32_t *bytecode, const struct r600_bytecode_cf *cf);
/external/apache-harmony/crypto/src/test/api/java.injected/javax/crypto/
H A DCipherOutputStreamTest.java133 Cipher cf = Cipher.getInstance("DES/CBC/PKCS5Padding");
136 CipherOutputStream stream2 = new CipherOutputStream(stream1, cf);
/external/lzma/C/
H A DPpmd7.c381 UInt32 cf, s0; local
384 cf = s->Freq - 1;
385 s0 = c->SummFreq - c->NumStats - cf;
386 upState.Freq = (Byte)(1 + ((2 * cf <= s0) ? (5 * cf > s0) : ((2 * cf + 3 * s0 - 1) / (2 * s0))));
506 UInt32 cf, sf; local
547 cf = 2 * (UInt32)p->FoundState->Freq * (c->SummFreq + 6);
549 if (cf < 6 * sf)
551 cf
[all...]

Completed in 1187 milliseconds

1234567891011>>