HomeSort by relevance Sort by last modified time
    Searched refs:pn (Results 1 - 25 of 152) sorted by null

1 2 3 4 5 6 7

  /external/clang/test/Analysis/
unions.cpp 16 void CloneParseTree(ParseNode *opn, ParseNode *pn, ParseNode *x) {
28 *pn = *opn;
29 x = pn->pn_u.lexdef->pn_u.lexdef;
49 void CloneParseTree(ParseNode *opn, ParseNode *pn, ParseNode *x) {
50 pn->pn_u = opn->pn_u;
51 x = pn->pn_u.name.lexdef->pn_u.name.lexdef;
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/smart_ptr/
shared_array.hpp 58 explicit shared_array(T * p = 0): px(p), pn(p, deleter())
68 template<class D> shared_array(T * p, D d): px(p), pn(p, d)
78 shared_array( shared_array const & r ): px( r.px ), pn( r.pn ) // never throws
120 return pn.unique();
125 return pn.use_count();
131 pn.swap(other.pn);
136 return pn.get_deleter( ti );
142 detail::shared_count pn; // reference counte member in class:boost::shared_array
    [all...]
shared_ptr.hpp 178 shared_ptr(): px(0), pn() // never throws in 1.30+
183 explicit shared_ptr( Y * p ): px( p ), pn( p ) // Y must be complete
194 template<class Y, class D> shared_ptr(Y * p, D d): px(p), pn(p, d)
201 template<class Y, class D, class A> shared_ptr( Y * p, D d, A a ): px( p ), pn( p, d, a )
212 shared_ptr( shared_ptr const & r ): px( r.px ), pn( r.pn ) // never throws
219 explicit shared_ptr(weak_ptr<Y> const & r): pn(r.pn) // may throw
221 // it is now safe to copy r.px, as pn(r.pn) did not thro
486 boost::detail::shared_count pn; \/\/ reference counter member in class:boost::shared_ptr
    [all...]
  /external/yaffs2/yaffs2/
yaffs_qsort.c 81 char *pa, *pb, *pc, *pd, *pl, *pm, *pn; local
97 pn = (char *)a + (n - 1) * es;
102 pn = med3(pn - 2 * d, pn - d, pn, cmp);
104 pm = med3(pl, pm, pn, cmp);
142 pn = (char *)a + n * es;
145 r = min((long)(pd - pc), (long)(pn - pd - es));
146 vecswap(pb, pn - r, r)
    [all...]
  /external/jemalloc/test/include/test/
math.h 57 double pn[6]; local
91 pn[0] = 1.0;
92 pn[1] = x;
93 pn[2] = x + 1.0;
94 pn[3] = x * b;
95 gin = pn[2] / pn[3];
103 pn[i+4] = b * pn[i+2] - an * pn[i]
    [all...]
  /ndk/sources/host-tools/sed-4.2.1/lib/
xalloc.h 59 void *x2realloc (void *p, size_t *pn);
110 void *x2nrealloc (void *p, size_t *pn, size_t s);
139 /* If P is null, allocate a block of at least *PN such objects;
140 otherwise, reallocate P so that it contains more than *PN objects
141 each of S bytes. *PN must be nonzero unless P is null, and S must
142 be nonzero. Set *PN to the new number of objects, and return the
143 pointer to the new block. *PN is never set to zero, and the
172 To have finer-grained control over the initial size, set *PN to a
195 x2nrealloc (void *p, size_t *pn, size_t s)
197 size_t n = *pn;
    [all...]
xmalloc.c 63 /* If P is null, allocate a block of at least *PN bytes; otherwise,
64 reallocate P so that it contains more than *PN bytes. *PN must be
65 nonzero unless P is null. Set *PN to the new block's size, and
66 return the pointer to the new block. *PN is never set to zero, and
70 x2realloc (void *p, size_t *pn)
72 return x2nrealloc (p, pn, 1);
  /external/chromium_org/third_party/openssl/openssl/crypto/evp/
evp_test.c 138 const unsigned char *plaintext,int pn,
151 hexdump(stdout,"Plaintext",plaintext,pn);
171 if(!EVP_EncryptUpdate(&ctx,out,&outl,plaintext,pn))
223 if(outl+outl2 != pn)
226 outl+outl2,pn);
230 if(memcmp(out,plaintext,pn))
233 hexdump(stderr,"Got",out,pn);
234 hexdump(stderr,"Expected",plaintext,pn);
246 const unsigned char *plaintext,int pn,
256 test1(c,key,kn,iv,in,plaintext,pn,ciphertext,cn,encdec)
371 int kn,in,pn,cn; local
    [all...]
  /external/openssl/crypto/evp/
evp_test.c 138 const unsigned char *plaintext,int pn,
151 hexdump(stdout,"Plaintext",plaintext,pn);
171 if(!EVP_EncryptUpdate(&ctx,out,&outl,plaintext,pn))
223 if(outl+outl2 != pn)
226 outl+outl2,pn);
230 if(memcmp(out,plaintext,pn))
233 hexdump(stderr,"Got",out,pn);
234 hexdump(stderr,"Expected",plaintext,pn);
246 const unsigned char *plaintext,int pn,
256 test1(c,key,kn,iv,in,plaintext,pn,ciphertext,cn,encdec)
371 int kn,in,pn,cn; local
    [all...]
  /external/bison/lib/
xalloc.h 62 void *x2realloc (void *p, size_t *pn);
120 /* If P is null, allocate a block of at least *PN such objects;
121 otherwise, reallocate P so that it contains more than *PN objects
122 each of S bytes. *PN must be nonzero unless P is null, and S must
123 be nonzero. Set *PN to the new number of objects, and return the
124 pointer to the new block. *PN is never set to zero, and the
153 To have finer-grained control over the initial size, set *PN to a
176 x2nrealloc (void *p, size_t *pn, size_t s)
178 size_t n = *pn;
205 *pn = n
    [all...]
xmalloc.c 67 /* If P is null, allocate a block of at least *PN bytes; otherwise,
68 reallocate P so that it contains more than *PN bytes. *PN must be
69 nonzero unless P is null. Set *PN to the new block's size, and
70 return the pointer to the new block. *PN is never set to zero, and
74 x2realloc (void *p, size_t *pn)
76 return x2nrealloc (p, pn, 1);
  /external/llvm/test/MC/Sparc/
sparc64-ctrl-instructions.s 292 ! CHECK: bne,pn %icc, .BB0 ! encoding: [0x12,0b01000AAA,A,A]
294 bne,pn %icc, .BB0
296 ! CHECK: be,pn %icc, .BB0 ! encoding: [0x02,0b01000AAA,A,A]
298 be,pn %icc, .BB0
300 ! CHECK: bg,pn %icc, .BB0 ! encoding: [0x14,0b01000AAA,A,A]
302 bg,pn %icc, .BB0
304 ! CHECK: ble,pn %icc, .BB0 ! encoding: [0x04,0b01000AAA,A,A]
306 ble,pn %icc, .BB0
308 ! CHECK: bge,pn %icc, .BB0 ! encoding: [0x16,0b01000AAA,A,A]
310 bge,pn %icc, .BB
    [all...]
  /packages/apps/Contacts/tests/src/com/android/contacts/tests/
PhoneNumberTestService.java 101 final PhoneNumber pn = util.parse(number, country); local
102 isValid = util.isValidNumber(pn);
103 formatted = util.format(pn, format);
104 util.truncateTooLongNumber(pn);
105 truncated = util.format(pn, format);
  /bionic/libc/upstream-freebsd/lib/libc/stdlib/
qsort.c 113 char *pa, *pb, *pc, *pd, *pl, *pm, *pn; local
131 pn = (char *)a + (n - 1) * es;
136 pn = med3(pn - 2 * d, pn - d, pn, cmp, thunk);
138 pm = med3(pl, pm, pn, cmp, thunk);
177 pn = (char *)a + n * es;
180 r = min(pd - pc, pn - pd - es);
181 vecswap(pb, pn - r, r)
    [all...]
  /external/chromium_org/third_party/skia/experimental/PdfViewer/
pdf_viewer_main.cpp 260 for (int pn = 0; pn < renderer->pages(); ++pn) {
262 FLAGS_noExtensionForOnePagePdf && renderer->pages() == 1 ? -1 : pn);
265 for (int pn = renderer->pages() - 1; pn >= 0; --pn) {
267 FLAGS_noExtensionForOnePagePdf && renderer->pages() == 1 ? -1 : pn);
277 int pn = atoi(FLAGS_pages[0]); local
279 FLAGS_noExtensionForOnePagePdf && renderer->pages() == 1 ? -1 : pn);
    [all...]
  /external/skia/experimental/PdfViewer/
pdf_viewer_main.cpp 260 for (int pn = 0; pn < renderer->pages(); ++pn) {
262 FLAGS_noExtensionForOnePagePdf && renderer->pages() == 1 ? -1 : pn);
265 for (int pn = renderer->pages() - 1; pn >= 0; --pn) {
267 FLAGS_noExtensionForOnePagePdf && renderer->pages() == 1 ? -1 : pn);
277 int pn = atoi(FLAGS_pages[0]); local
279 FLAGS_noExtensionForOnePagePdf && renderer->pages() == 1 ? -1 : pn);
    [all...]
  /external/chromium_org/third_party/opus/src/celt/tests/
test_unit_cwrs32.c 57 static const int pn[NDIMS]={ variable
75 static const int pn[NDIMS]={ variable
94 n=pn[t];
  /external/libopus/celt/tests/
test_unit_cwrs32.c 57 static const int pn[NDIMS]={ variable
75 static const int pn[NDIMS]={ variable
94 n=pn[t];
  /packages/apps/ContactsCommon/src/com/android/contacts/common/util/
PhoneNumberHelper.java 87 PhoneNumber pn = util.parse(phoneNumberE164, "ZZ"); local
88 String regionCode = util.getRegionCodeForNumber(pn);
126 PhoneNumber pn = util.parseAndKeepRawInput(phoneNumber, defaultCountryIso); local
127 result = util.formatInOriginalFormat(pn, defaultCountryIso);
  /cts/suite/cts/deviceTests/simplecpu/jni/
CpuNativeJni.cpp 77 char *pa, *pb, *pc, *pd, *pl, *pm, *pn; local
93 pn = (char *)a + (n - 1) * es;
98 pn = med3(pn - 2 * d, pn - d, pn, cmp);
100 pm = med3(pl, pm, pn, cmp);
138 pn = (char *)a + n * es;
141 r = min(pd - pc, pn - pd - (int)es);
142 vecswap(pb, pn - r, r)
    [all...]
  /build/core/
product.mk 166 $(eval pn := $(strip $(PRODUCTS.$(p).PRODUCT_NAME))) \
167 $(if $(pn),,$(error $(p): PRODUCT_NAME must be defined.)) \
168 $(if $(filter $(pn),$(_cap_names)), \
169 $(error $(p): PRODUCT_NAME must be unique; "$(pn)" already used by $(strip \
172 $(if $(filter $(pn),$(PRODUCTS.$(pp).PRODUCT_NAME)), \
177 $(eval _cap_names += $(pn)) \
178 $(if $(call is-c-identifier,$(pn)),, \
179 $(error $(p): PRODUCT_NAME must be a valid C identifier, not "$(pn)") \
199 $(eval pn := $(strip $(1)))
202 $(if $(filter $(pn),$(PRODUCTS.$(p).PRODUCT_NAME)),
    [all...]
  /external/chromium_org/tools/gn/
builder_record.h 66 void set_originally_referenced_from(const ParseNode* pn) {
67 originally_referenced_from_ = pn;
  /external/valgrind/main/coregrind/m_demangle/
safe-ctype.c 139 #define pn _sch_ispunct macro
152 #define P (const unsigned short) (pn |pr) /* punctuation */
153 #define _ (const unsigned short) (pn|is |pr) /* underscore */
  /external/clang/test/SemaCXX/
nullptr.cpp 61 nullptr_t *pn = &null; local
65 (void)reinterpret_cast<uintptr_t>(*pn);
70 int *ip = *pn;
71 if (*pn) { }
  /external/libpcap/
pcap-nit.c 84 struct pcap_nit *pn = p->priv; local
102 *ps = pn->stat;
109 struct pcap_nit *pn = p->priv; local
168 pn->stat.ps_drop = nh->nh_dropped;
179 ++pn->stat.ps_recv;

Completed in 740 milliseconds

1 2 3 4 5 6 7