Searched refs:pf (Results 26 - 50 of 139) sorted by relevance

123456

/external/linux-tools-perf/src/tools/perf/util/
H A Dprobe-finder.h60 int (*callback)(Dwarf_Die *sc_die, struct probe_finder *pf);
80 struct probe_finder pf; member in struct:trace_event_finder
88 struct probe_finder pf; member in struct:available_var_finder
/external/selinux/libsepol/src/
H A Dgenbools.c152 struct policy_file pf; local
173 policy_file_init(&pf);
174 pf.type = PF_USE_MEMORY;
175 pf.data = data;
176 pf.len = len;
177 rc = policydb_write(&policydb, &pf);
213 struct policy_file pf; local
245 policy_file_init(&pf);
246 pf.type = PF_USE_MEMORY;
247 pf
[all...]
/external/libvncserver/libvncserver/
H A Dtranslate.c29 static void PrintPixelFormat(rfbPixelFormat *pf);
460 PrintPixelFormat(rfbPixelFormat *pf) argument
462 if (pf->bitsPerPixel == 1) {
464 (pf->bigEndian ? "most" : "least"));
466 rfbLog(" %d bpp, depth %d%s\n",pf->bitsPerPixel,pf->depth,
467 ((pf->bitsPerPixel == 8) ? ""
468 : (pf->bigEndian ? ", big endian" : ", little endian")));
469 if (pf->trueColour) {
471 pf
[all...]
/external/deqp/modules/gles2/
H A Dtes2InfoTests.cpp103 const tcu::PixelFormat& pf = rt.getPixelFormat(); local
106 << tcu::TestLog::Integer("RedBits", "Red channel bits", "", QP_KEY_TAG_NONE, pf.redBits)
107 << tcu::TestLog::Integer("GreenBits", "Green channel bits", "", QP_KEY_TAG_NONE, pf.greenBits)
108 << tcu::TestLog::Integer("BlueBits", "Blue channel bits", "", QP_KEY_TAG_NONE, pf.blueBits)
109 << tcu::TestLog::Integer("AlphaBits", "Alpha channel bits", "", QP_KEY_TAG_NONE, pf.alphaBits)
/external/deqp/modules/gles3/
H A Dtes3InfoTests.cpp103 const tcu::PixelFormat& pf = rt.getPixelFormat(); local
106 << tcu::TestLog::Integer("RedBits", "Red channel bits", "", QP_KEY_TAG_NONE, pf.redBits)
107 << tcu::TestLog::Integer("GreenBits", "Green channel bits", "", QP_KEY_TAG_NONE, pf.greenBits)
108 << tcu::TestLog::Integer("BlueBits", "Blue channel bits", "", QP_KEY_TAG_NONE, pf.blueBits)
109 << tcu::TestLog::Integer("AlphaBits", "Alpha channel bits", "", QP_KEY_TAG_NONE, pf.alphaBits)
/external/deqp/modules/gles31/
H A Dtes31InfoTests.cpp103 const tcu::PixelFormat& pf = rt.getPixelFormat(); local
106 << tcu::TestLog::Integer("RedBits", "Red channel bits", "", QP_KEY_TAG_NONE, pf.redBits)
107 << tcu::TestLog::Integer("GreenBits", "Green channel bits", "", QP_KEY_TAG_NONE, pf.greenBits)
108 << tcu::TestLog::Integer("BlueBits", "Blue channel bits", "", QP_KEY_TAG_NONE, pf.blueBits)
109 << tcu::TestLog::Integer("AlphaBits", "Alpha channel bits", "", QP_KEY_TAG_NONE, pf.alphaBits)
/external/iputils/
H A Dtftpd.c102 void sendfile(struct formats *pf);
103 void recvfile(struct formats *pf);
227 register struct formats *pf; local
249 for (pf = formats; pf->f_mode; pf++)
250 if (strcmp(pf->f_mode, mode) == 0)
252 if (pf->f_mode == 0) {
256 ecode = (*pf->f_validate)(filename, tp->th_opcode);
262 (*pf
349 sendfile(struct formats *pf) argument
420 recvfile(struct formats *pf) argument
[all...]
/external/selinux/policycoreutils/semodule_expand/
H A Dsemodule_expand.c42 struct sepol_policy_file *pf; local
113 if (sepol_policy_file_create(&pf)) {
129 sepol_policy_file_set_fp(pf, fp);
130 ret = sepol_module_package_read(base, pf, 0);
175 sepol_policy_file_set_fp(pf, outfile);
176 ret = sepol_policydb_write(out, pf);
186 sepol_policy_file_free(pf);
/external/libpcap/
H A Dpcap-pf.c27 "@(#) $Header: /tcpdump/master/libpcap/pcap-pf.c,v 1.97 2008-04-14 20:40:58 guy Exp $ (LBL)";
108 struct pcap_pf *pf = pc->priv; local
135 snprintf(pc->errbuf, sizeof(pc->errbuf), "pf read: %s",
169 "pf short read (%d)", cc);
181 "pf short stamplen (%d)",
195 pf->TotPkts++;
196 pf->TotDrops += sp->ens_dropped;
197 pf->TotMissed = sp->ens_ifoverflows;
198 if (pf->OrigMissed < 0)
199 pf
250 struct pcap_pf *pf = p->priv; local
305 struct pcap_pf *pf = p->priv; local
532 struct pcap_pf *pf = p->priv; local
[all...]
/external/clang/test/SemaCXX/
H A Dmember-pointer.cpp25 int (A::*pf)(int, int);
32 pf = 0;
33 pf = __null;
49 bool b1 = (pf == pf2); (void)b1;
50 bool b2 = (pf != pf2); (void)b2;
51 bool b3 = (pf == pf3); (void)b3;
52 bool b4 = (pf != 0); (void)b4;
106 void (HasMembers::*pf)() = &HasMembers::f;
107 (hm.*pf)();
108 (phm->*pf)();
[all...]
/external/selinux/policycoreutils/semodule_package/
H A Dsemodule_unpackage.c23 static int file_to_policy_file(const char *filename, struct sepol_policy_file **pf, const char *mode) argument
27 if (sepol_policy_file_create(pf)) {
37 sepol_policy_file_set_fp(*pf, f);
/external/clang/test/Sema/
H A Dattr-deprecated-message.c28 int (*pf)() = f1; // expected-warning {{'f1' is deprecated: Please avoid f1}}
H A Dconditional-expr.c27 int (*pf)[2];
29 pf = (i ? pf : pv);
/external/pdfium/third_party/freetype/src/type1/
H A Dt1parse.h109 #define T1_Load_Field( p, f, o, m, pf ) \
110 (p)->root.funcs.load_field( &(p)->root, f, o, m, pf )
112 #define T1_Load_Field_Table( p, f, o, m, pf ) \
113 (p)->root.funcs.load_field_table( &(p)->root, f, o, m, pf )
/external/dhcpcd/
H A Dlpf.c77 struct sock_fprog pf; local
94 memset(&pf, 0, sizeof(pf));
96 pf.filter = UNCONST(arp_bpf_filter);
97 pf.len = arp_bpf_filter_len;
99 pf.filter = UNCONST(dhcp_bpf_filter);
100 pf.len = dhcp_bpf_filter_len;
102 if (setsockopt(s, SOL_SOCKET, SO_ATTACH_FILTER, &pf, sizeof(pf)) != 0)
/external/mesa3d/src/gallium/state_trackers/dri/drm/
H A Ddri2.c298 enum pipe_format pf; local
322 pf = PIPE_FORMAT_B8G8R8A8_UNORM;
325 pf = PIPE_FORMAT_B8G8R8X8_UNORM;
328 pf = PIPE_FORMAT_Z16_UNORM;
340 templ.format = pf;
362 buffer->base.cpp = util_format_get_blocksize(pf);
442 enum pipe_format pf; local
448 pf = PIPE_FORMAT_B5G6R5_UNORM;
451 pf = PIPE_FORMAT_B8G8R8X8_UNORM;
454 pf
521 enum pipe_format pf; local
[all...]
/external/clang/test/PCH/
H A Dchain-cxx.cpp22 void pf();
121 pf();
/external/mesa3d/src/gallium/state_trackers/gbm/
H A Dgbm_drm.c81 enum pipe_format pf; local
83 pf = gbm_format_to_gallium(format);
84 if (pf == PIPE_FORMAT_NONE)
87 if (!gdrm->screen->is_format_supported(gdrm->screen, PIPE_TEXTURE_2D, pf, 0,
180 enum pipe_format pf; local
191 pf = gbm_format_to_gallium(format);
192 if (pf == PIPE_FORMAT_NONE)
197 templ.format = pf;
/external/sepolicy/tools/sepolicy-analyze/
H A Dsepolicy-analyze.c45 struct policy_file pf; local
53 if(load_policy(policy, &policydb, &pf))
/external/sepolicy/tools/
H A Dsepolicy-check.c188 int load_policy(char *filename, policydb_t *policydb, struct policy_file *pf) { argument
211 policy_file_init(pf);
212 pf->type = PF_USE_MEMORY;
213 pf->data = map;
214 pf->len = sb.st_size;
221 ret = policydb_read(policydb, pf, 0);
237 struct policy_file pf; local
279 if (load_policy(policy, &policydb, &pf))
/external/boringssl/src/crypto/asn1/
H A Dtasn_fre.c207 const ASN1_PRIMITIVE_FUNCS *pf; local
208 pf = it->funcs;
209 if (pf && pf->prim_free)
211 pf->prim_free(pval, it);
/external/conscrypt/src/test/java/org/conscrypt/
H A DCertPinManagerTest.java102 CertPinManager pf = new CertPinManager(path, new TrustedCertificateStore());
105 pf.isChainValid(longHostname, shortChain));
107 pf.isChainValid(shortHostname, longChain));
109 pf.isChainValid(shortHostname, shortChain));
111 pf.isChainValid(longHostname, longChain));
/external/linux-tools-perf/src/tools/perf/bench/
H A Dmem-memcpy.c168 #define pf (no_prefault ? 0 : 1) macro
243 result_cycle[pf] =
247 result_bps[pf] =
272 (double)result_cycle[pf]
275 print_bps(result_bps[pf]);
292 printf("%lf\n", (double)result_cycle[pf]
295 printf("%lf\n", result_bps[pf]);
H A Dmem-memset.c160 #define pf (no_prefault ? 0 : 1) macro
235 result_cycle[pf] =
239 result_bps[pf] =
264 (double)result_cycle[pf]
267 print_bps(result_bps[pf]);
284 printf("%lf\n", (double)result_cycle[pf]
287 printf("%lf\n", result_bps[pf]);
/external/chromium-trace/trace-viewer/third_party/Paste/paste/
H A Dwsgiwrappers.py279 pf = pformat
282 id(self), pf(self.method))
284 (pf(self.scheme), pf(self.host), pf(self.script_name),
285 pf(self.path_info))
286 msg += '\nlanguages=%s,' % pf(self.languages)
288 msg += ' charset=%s, errors=%s,' % (pf(self.charset),
289 pf(self.errors))
290 msg += '\nGET=%s,' % pf(sel
[all...]

Completed in 1455 milliseconds

123456