Searched refs:pf (Results 51 - 75 of 139) sorted by relevance

123456

/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/duration/
H A DLanguageTestRoot.java243 PeriodFormatter pf = pfFactory.getFormatter();
252 String string = pf.format(p);
268 PeriodFormatter pf = pfFactory.getFormatter();
274 String string = pf.format(p);
289 PeriodFormatter pf = pfFactory.getFormatter();
295 String string = pf.format(p);
310 PeriodFormatter pf = pfFactory.getFormatter();
316 xAssertEquals(targets, n++, pf.format(p));
318 xAssertEquals(targets, n++, pf.format(p));
358 PeriodFormatter pf
[all...]
/external/selinux/libselinux/src/
H A Dload_policy.c61 sepol_policy_file_t *pf; local
206 if (policy_file_create(&pf))
209 policy_file_free(pf);
212 policy_file_set_mem(pf, data, size);
213 if (policydb_read(policydb, pf)) {
214 policy_file_free(pf);
224 policy_file_free(pf);
231 policy_file_free(pf);
/external/boringssl/src/crypto/asn1/
H A Dtasn_new.c335 const ASN1_PRIMITIVE_FUNCS *pf = it->funcs; local
336 if (pf->prim_new)
337 return pf->prim_new(pval, it);
384 const ASN1_PRIMITIVE_FUNCS *pf = it->funcs; local
385 if (pf->prim_clear)
386 pf->prim_clear(pval, it);
/external/dhcpcd/
H A Dbpf.c59 struct bpf_program pf; local
111 pf.bf_insns = UNCONST(arp_bpf_filter);
112 pf.bf_len = arp_bpf_filter_len;
115 pf.bf_insns = UNCONST(dhcp_bpf_filter);
116 pf.bf_len = dhcp_bpf_filter_len;
119 if (ioctl(fd, BIOCSETF, &pf) == -1)
/external/jmonkeyengine/engine/src/lwjgl/com/jme3/system/lwjgl/
H A DLwjglDisplay.java88 PixelFormat pf = new PixelFormat(settings.getBitsPerPixel(),
98 if (created.get() && (pixelFormat.getBitsPerPixel() != pf.getBitsPerPixel()
99 ||pixelFormat.getDepthBits() != pf.getDepthBits()
100 ||pixelFormat.getStencilBits() != pf.getStencilBits()
101 ||pixelFormat.getSamples() != pf.getSamples())){
106 pixelFormat = pf;
/external/valgrind/drd/tests/
H A Dannotate_smart_pointer.cpp80 void Create(void* (*pf)(void*), void* arg) argument
82 WrapperArgs* wrapper_arg_p = new WrapperArgs(pf, arg);
92 WrapperArgs(void* (*pf)(void*), void* arg) : m_pf(pf), m_arg(arg) { } argument
141 void Create(void* (*pf)(void*), void* arg) argument
146 pthread_create(&m_tid, &attr, pf, arg);
/external/libvncserver/test/
H A Dtjbench.c47 int flags=0, decomponly=0, quiet=0, dotile=0, pf=TJPF_BGR; variable
86 int ps=tjPixelSize[pf];
116 pitch, scaledh, pf, flags)==-1)
130 pitch, height, pf, flags)==-1)
160 if(savebmp(tempstr, dstbuf, scaledw, scaledh, bmpPF[pf], pitch,
175 int rindex=index2+tjRedOffset[pf];
176 int gindex=index2+tjGreenOffset[pf];
177 int bindex=index2+tjBlueOffset[pf];
195 if(savebmp(tempstr, dstbuf, w, h, bmpPF[pf], pitch,
217 int ps=tjPixelSize[pf], ntiles
[all...]
/external/selinux/libsemanage/src/
H A Ddatabase_policydb.c95 sepol_policy_file_t *pf = NULL; local
124 if (sepol_policy_file_create(&pf) < 0) {
129 sepol_policy_file_set_fp(pf, fp);
130 sepol_policy_file_set_handle(pf, handle->sepolh);
132 if (sepol_policydb_read(policydb, pf) < 0)
135 sepol_policy_file_free(pf);
153 sepol_policy_file_free(pf);
/external/selinux/checkpolicy/
H A Dcheckmodule.c114 struct policy_file pf; local
120 policy_file_init(&pf);
121 pf.type = PF_USE_STDIO;
122 pf.fp = outfp;
123 return policydb_write(p, &pf);
/external/selinux/policycoreutils/sepolgen-ifgen/
H A Dsepolgen-ifgen-attr-helper.c148 struct policy_file pf; local
159 policy_file_init(&pf);
160 pf.type = PF_USE_STDIO;
161 pf.fp = fp;
175 ret = policydb_read(policydb, &pf, 1);
/external/selinux/secilc/
H A Dsecilc.c76 struct sepol_policy_file *pf = NULL; local
281 rc = sepol_policy_file_create(&pf);
287 sepol_policy_file_set_fp(pf, binary);
289 rc = sepol_policydb_write(pdb, pf);
337 sepol_policy_file_free(pf);
/external/libnfc-nci/src/nfc/tags/
H A Drw_main.c252 status = rw_t3t_select (p_activate_params->rf_tech_param.param.pf.nfcid2,
253 p_activate_params->rf_tech_param.param.pf.mrti_check,
254 p_activate_params->rf_tech_param.param.pf.mrti_update);
/external/selinux/policycoreutils/semodule_deps/
H A Dsemodule_deps.c88 struct sepol_policy_file *pf = NULL; local
95 if (sepol_policy_file_create(&pf)) {
105 sepol_policy_file_set_fp(pf, fp);
107 ret = sepol_module_package_read(p, pf, 0);
114 sepol_policy_file_free(pf);
118 sepol_policy_file_free(pf);
/external/clang/test/CodeGenCXX/
H A Dptr-to-datamember.cpp84 float A::* pf = &A::f; member in class:A
95 printf("%d, %f, %f \n", a1.*pa, a1.*pf, a1.*pd);
H A Dmember-function-pointers.cpp177 void (A::*pf)(bool) = &A::f; member in namespace:PR6258
180 void (A::*pf)(bool) = &A::f;
/external/e2fsprogs/lib/e2p/
H A DAndroid.mk17 pf.c \
/external/bsdiff/
H A Dbsdiff.c212 FILE * pf; local
249 if ((pf = fopen(argv[3], "w")) == NULL)
266 if (fwrite(header, 32, 1, pf) != 1)
270 if ((pfbz2 = BZ2_bzWriteOpen(&bz2err, pf, 9, 0, 0)) == NULL)
359 if ((len = ftello(pf)) == -1)
364 if ((pfbz2 = BZ2_bzWriteOpen(&bz2err, pf, 9, 0, 0)) == NULL)
374 if ((newsize = ftello(pf)) == -1)
379 if ((pfbz2 = BZ2_bzWriteOpen(&bz2err, pf, 9, 0, 0)) == NULL)
389 if (fseeko(pf, 0, SEEK_SET))
391 if (fwrite(header, 32, 1, pf) !
[all...]
/external/clang/test/SemaTemplate/
H A Dinstantiate-invalid.cpp45 base_ren_type ren_base(pf);
/external/kernel-headers/original/uapi/linux/netfilter/
H A Dnfnetlink_queue.h74 __be16 pf; /* AF_xxx for PF_[UN]BIND */ member in struct:nfqnl_msg_config_cmd
/external/libnl/include/linux/netfilter/
H A Dnfnetlink_queue.h70 __be16 pf; /* AF_xxx for PF_[UN]BIND */ member in struct:nfqnl_msg_config_cmd
/external/libvncserver/x11vnc/misc/
H A Dinet6to484 my $pf = $ENV{INET6TO4_PIDFILE};
85 if (open(PID, ">$pf")) {
88 $pidfile = $pf;
90 print STDERR "could not open pidfile: $pf - $! - continuing...\n";
/external/icu/icu4c/source/test/intltest/
H A Dtfsmalls.cpp306 Formattable *pf; local
308 pf = ftarray[i].clone();
309 if(pf == (ftarray + i) || *pf != ftarray[i]) {
312 delete pf;
H A Dplurfmts.cpp145 PluralFormat *pf = new PluralFormat(stat); local
148 pf->parseObject((UnicodeString)"",*f,*pp);
152 delete pf;
564 PluralFormat pf(Locale::getEnglish(), fmtString, status);
574 UnicodeString result = pf.format(i, status);
619 PluralFormat pf(fmt, status);
630 PluralFormat pf(Locale::getEnglish(), UPLURAL_TYPE_ORDINAL, pattern, errorCode);
634 UnicodeString result = pf.format((int32_t)321, errorCode);
639 result = pf.format((int32_t)22, errorCode);
644 result = pf
[all...]
/external/valgrind/VEX/priv/
H A Dguest_x86_helpers.c151 { UInt cf, pf, af, zf, sf, of; \
157 pf = parity_table[(UChar)res]; \
163 return cf | pf | af | zf | sf | of; \
172 { UInt cf, pf, af, zf, sf, of; \
178 pf = parity_table[(UChar)res]; \
184 return cf | pf | af | zf | sf | of; \
193 { UInt cf, pf, af, zf, sf, of; \
203 pf = parity_table[(UChar)res]; \
209 return cf | pf | af | zf | sf | of; \
218 { UInt cf, pf, a
647 UInt of,sf,zf,cf,pf; local
[all...]
H A Dguest_amd64_helpers.c193 { ULong cf, pf, af, zf, sf, of; \
199 pf = parity_table[(UChar)res]; \
205 return cf | pf | af | zf | sf | of; \
214 { ULong cf, pf, af, zf, sf, of; \
220 pf = parity_table[(UChar)res]; \
226 return cf | pf | af | zf | sf | of; \
235 { ULong cf, pf, af, zf, sf, of; \
245 pf = parity_table[(UChar)res]; \
251 return cf | pf | af | zf | sf | of; \
260 { ULong cf, pf, a
822 ULong of,sf,zf,cf,pf; local
[all...]

Completed in 1154 milliseconds

123456