Searched refs:pp (Results 1 - 25 of 317) sorted by relevance

1234567891011>>

/external/clang/test/CodeGen/
H A D2002-01-23-LoadQISIReloadFailure.c5 unsigned char *pp; local
8 w_cnt += *pp;
/external/blktrace/btt/
H A Dplat.c33 struct plat_info *pp; local
37 pp = malloc(sizeof(*pp));
38 pp->nl = 0;
39 pp->first_ts = pp->last_ts = pp->tl = -1.0;
43 if ((pp->fp = my_fopen(oname, "w")) == NULL) {
47 add_file(pp->fp, oname);
49 return pp;
54 struct plat_info *pp = info; local
71 struct plat_info *pp = info; local
[all...]
/external/libvpx/libvpx/vp8/common/
H A Dreconintra4x4.c147 unsigned char pp[9]; local
149 pp[0] = Left[3];
150 pp[1] = Left[2];
151 pp[2] = Left[1];
152 pp[3] = Left[0];
153 pp[4] = top_left;
154 pp[5] = Above[0];
155 pp[6] = Above[1];
156 pp[7] = Above[2];
157 pp[
181 unsigned char pp[9]; local
216 unsigned char *pp = Above; local
239 unsigned char pp[9]; local
273 unsigned char *pp = Left; local
[all...]
/external/harfbuzz_ng/src/
H A Dhb-shape.cc38 parse_space (const char **pp, const char *end) argument
40 while (*pp < end && ISSPACE (**pp))
41 (*pp)++;
46 parse_char (const char **pp, const char *end, char c) argument
48 parse_space (pp, end);
50 if (*pp == end || **pp != c)
53 (*pp)++;
58 parse_uint (const char **pp, cons argument
82 parse_bool(const char **pp, const char *end, unsigned int *pv) argument
102 parse_feature_value_prefix(const char **pp, const char *end, hb_feature_t *feature) argument
115 parse_feature_tag(const char **pp, const char *end, hb_feature_t *feature) argument
151 parse_feature_indices(const char **pp, const char *end, hb_feature_t *feature) argument
176 parse_feature_value_postfix(const char **pp, const char *end, hb_feature_t *feature) argument
189 parse_one_feature(const char **pp, const char *end, hb_feature_t *feature) argument
[all...]
/external/clang/test/Parser/
H A Dnamelookup-bug-1.c6 struct Object *pp; variable in typeref:struct:Object
/external/clang/test/SemaCXX/
H A Dqualification-conversion.cpp3 int* quals2(int const * const * pp);
6 void test_quals(int * p, int * * pp, int * * * ppp) { argument
7 int const * const * pp2 = pp;
9 quals2(pp);
15 void mquals2(int const A::* const A::*pp);
18 void test_mquals(int A::*p, int A::* A::*pp, int A::* A::* A::*ppp) {
19 int const A::* const A::* pp2 = pp;
21 mquals2(pp);
26 void aquals2(int * const (*pp)[1]);
29 void test_aquals(int (*p)[1], int * (*pp)[ argument
[all...]
/external/libpng/arm/
H A Darm_init.c56 png_init_filter_functions_neon(png_structp pp, unsigned int bpp) argument
69 switch ((pp->options >> PNG_ARM_NEON) & 3)
83 no_neon = !png_have_neon(pp);
114 pp->read_filter[PNG_FILTER_VALUE_UP-1] = png_read_filter_row_up_neon;
118 pp->read_filter[PNG_FILTER_VALUE_SUB-1] = png_read_filter_row_sub3_neon;
119 pp->read_filter[PNG_FILTER_VALUE_AVG-1] = png_read_filter_row_avg3_neon;
120 pp->read_filter[PNG_FILTER_VALUE_PAETH-1] =
126 pp->read_filter[PNG_FILTER_VALUE_SUB-1] = png_read_filter_row_sub4_neon;
127 pp->read_filter[PNG_FILTER_VALUE_AVG-1] = png_read_filter_row_avg4_neon;
128 pp
[all...]
/external/libnfc-nci/src/nfc/nci/
H A Dnci_hrcv.c49 UINT8 *pp, len, op_code; local
55 pp = p+1;
56 NCI_MSG_PRS_HDR1 (pp, op_code);
58 len = *pp++;
64 nfc_ncif_proc_reset_rsp (pp, FALSE);
77 nfc_ncif_set_config_status (pp, len);
85 nfc_ncif_report_conn_close_evt (*p_old, *pp);
108 UINT8 *pp, len, op_code; local
113 pp = p+1;
114 NCI_MSG_PRS_HDR1 (pp, op_cod
160 UINT8 *pp, len, op_code; local
231 UINT8 *pp, len, op_code; local
307 UINT8 *pp, len, op_code; local
367 UINT8 *pp, len, op_code; local
450 UINT8 *pp, len, op_code; local
477 UINT8 *pp, len, op_code; local
[all...]
H A Dnci_hmsgs.c47 UINT8 *pp; local
56 pp = (UINT8 *) (p + 1) + p->offset;
58 NCI_MSG_BLD_HDR0 (pp, NCI_MT_CMD, NCI_GID_CORE);
59 NCI_MSG_BLD_HDR1 (pp, NCI_MSG_CORE_RESET);
60 UINT8_TO_STREAM (pp, NCI_CORE_PARAM_SIZE_RESET);
61 UINT8_TO_STREAM (pp, reset_type);
79 UINT8 *pp; local
88 pp = (UINT8 *) (p + 1) + p->offset;
90 NCI_MSG_BLD_HDR0 (pp, NCI_MT_CMD, NCI_GID_CORE);
91 NCI_MSG_BLD_HDR1 (pp, NCI_MSG_CORE_INI
110 UINT8 *pp; local
143 UINT8 *pp; local
196 UINT8 *pp; local
235 UINT8 *pp; local
271 UINT8 *pp; local
304 UINT8 *pp; local
339 UINT8 *pp, *p_size, *p_start; local
383 UINT8 *pp; local
418 UINT8 *pp; local
453 UINT8 *pp, *p_size, *p_start; local
497 UINT8 *pp; local
532 UINT8 *pp; local
588 UINT8 *pp; local
638 UINT8 *pp; local
[all...]
/external/clang/test/CodeGenCXX/
H A Dvirtual-destructor-synthesis.cpp11 pile_box::pile_box(box *pp) argument
/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/support/
H A DA.java21 private static P pp = new P(); field in class:A
24 pp.setClazz(getClass());
28 return pp.findProp(key);
/external/compiler-rt/test/lsan/TestCases/
H A Dstale_stack_leak.cc10 void **pp; variable
20 pp = &locals[0];
36 fprintf(stderr, "Value after LSan: %p.\n", *pp);
/external/boringssl/src/crypto/asn1/
H A Da_bool.c63 int i2d_ASN1_BOOLEAN(int a, unsigned char **pp) argument
69 if (pp == NULL) return(r);
70 p= *pp;
74 *pp=p;
78 int d2i_ASN1_BOOLEAN(int *a, const unsigned char **pp, long length) argument
86 p= *pp;
107 *pp=p;
/external/skia/src/ports/
H A DSkDebug_nacl.cpp21 extern pp::Instance* gPluginInstance;
35 pp::Var msg = pp::Var(buffer);
/external/clang/lib/Lex/
H A DPreprocessorLexer.cpp22 PreprocessorLexer::PreprocessorLexer(Preprocessor *pp, FileID fid) argument
23 : PP(pp), FID(fid), InitialNumSLocEntries(0),
26 if (pp)
27 InitialNumSLocEntries = pp->getSourceManager().local_sloc_entry_size();
/external/scrypt/lib/util/
H A Dsysendian.h48 be32dec(const void *pp) argument
50 const uint8_t *p = (uint8_t const *)pp;
57 be32enc(void *pp, uint32_t x) argument
59 uint8_t * p = (uint8_t *)pp;
68 be64dec(const void *pp) argument
70 const uint8_t *p = (uint8_t const *)pp;
79 be64enc(void *pp, uint64_t x) argument
81 uint8_t * p = (uint8_t *)pp;
94 le32dec(const void *pp) argument
96 const uint8_t *p = (uint8_t const *)pp;
103 le32enc(void *pp, uint32_t x) argument
114 le64dec(const void *pp) argument
125 le64enc(void *pp, uint64_t x) argument
[all...]
/external/selinux/policycoreutils/hll/
H A DMakefile1 SUBDIRS = pp
/external/compiler-rt/test/tsan/
H A Dmalloc_stack.cc8 int *pp = __c11_atomic_load(&p, __ATOMIC_RELAXED); local
9 *pp = 42;
/external/libpcap/Win32/Src/
H A Dinet_net.c51 u_long parts[4], *pp = parts; local
85 if (pp >= parts + 4)
87 *pp++ = val, cp++;
92 *pp++ = val;
93 n = pp - parts;
/external/boringssl/src/crypto/x509/
H A Di2d_pr.c67 int i2d_PrivateKey(const EVP_PKEY *a, unsigned char **pp) argument
71 return a->ameth->old_priv_encode(a, pp);
75 int ret = i2d_PKCS8_PRIV_KEY_INFO(p8,pp);
/external/compiler-rt/test/asan/TestCases/
H A Dmax_redzone.cc18 void *pp[10000]; local
20 pp[i] = malloc(4096 - 64);
23 free(pp[i]);
/external/iproute2/tc/
H A Dm_gact.c102 struct tc_gact_p pp; local
138 pp.ptype = PGACT_NETRAND;
141 pp.ptype = PGACT_DETERM;
149 pp.paction = action;
156 if (get_u16(&pp.pval, *argv, 10)) {
157 fprintf(stderr, "Illegal probability val 0x%x\n",pp.pval);
160 if (pp.pval > 10000) {
161 fprintf(stderr, "Illegal probability val 0x%x\n",pp.pval);
195 addattr_l(n, MAX_MSG, TCA_GACT_PROB, &pp, sizeof (pp));
211 struct tc_gact_p *pp = NULL; local
[all...]
/external/llvm/examples/OCaml-Kaleidoscope/Chapter2/
H A DMakefile20 OCAMLCFLAGS += -pp camlp4of
/external/selinux/policycoreutils/hll/pp/
H A DMakefile17 all: pp
19 pp: $(PP_OBJS)
27 install -m 755 pp $(HLLDIR)
32 -rm -f pp $(PP_OBJS)
/external/clang/test/Analysis/diagnostics/
H A Dderef-track-symbolic-region.c12 void test(struct S syz, int *pp) { argument
27 void testTrackConstraintBRVisitorIsTrackingTurnedOn(struct S syz, int *pp) { argument

Completed in 933 milliseconds

1234567891011>>