/external/chromium_org/third_party/webrtc/common_audio/signal_processing/ |
auto_corr_to_refl_coef.c | 26 int16_t *acfptr, *pptr, *wptr, *p1ptr, *w1ptr, ACF[WEBRTC_SPL_MAX_LPC_ORDER], local 32 pptr = P; 40 *pptr++ = *acfptr++; 47 *pptr++ = *acfptr++; 88 pptr = P; 91 *pptr = WebRtcSpl_AddSatW16(*pptr, tmp); 92 pptr++; 96 *pptr = WebRtcSpl_AddSatW16(*(pptr + 1), tmp) [all...] |
/external/webrtc/src/common_audio/signal_processing/ |
auto_corr_to_refl_coef.c | 26 WebRtc_Word16 *acfptr, *pptr, *wptr, *p1ptr, *w1ptr, ACF[WEBRTC_SPL_MAX_LPC_ORDER], local 32 pptr = P; 40 *pptr++ = *acfptr++; 47 *pptr++ = *acfptr++; 88 pptr = P; 91 *pptr = WEBRTC_SPL_ADD_SAT_W16( *pptr, tmp ); 92 pptr++; 96 *pptr = WEBRTC_SPL_ADD_SAT_W16( *(pptr+1), tmp ) [all...] |
/frameworks/compile/mclinker/include/mcld/Support/ |
Allocators.h | 36 static void construct(value_type* pPtr) 37 { new (pPtr) value_type(); } 39 static void construct(value_type* pPtr, const value_type& pValue) 40 { new (pPtr) value_type(pValue); } 42 static void destroy(value_type* pPtr) 75 static void construct(value_type* pPtr) 76 { new (pPtr) value_type(); } 78 static void construct(value_type* pPtr, const value_type& pValue) 79 { new (pPtr) value_type(pValue); } 81 static void destroy(value_type* pPtr) [all...] |
GCFactory.h | 153 void deallocate(pointer &pPtr, size_type N) { 154 Alloc::deallocate(pPtr, N); 155 if (0 == pPtr) 159 void deallocate(pointer &pPtr) { 160 Alloc::deallocate(pPtr); 161 if (0 == pPtr)
|
/external/llvm/test/Transforms/Inline/ |
blockaddress.ll | 6 ; CHECK: store i8* blockaddress(@doit, %here), i8** %pptr, align 8 11 define void @doit(i8** nocapture %pptr, i32 %cond) nounwind uwtable { 17 store i8* blockaddress(@doit, %here), i8** %pptr, align 8
|
/external/tcpdump/ |
print-syslog.c | 84 syslog_print(register const u_char *pptr, register u_int len) 96 TCHECK2(*pptr, 1); 97 if (*(pptr+msg_off) == '<') { 99 TCHECK2(*(pptr+msg_off), 1); 100 while ( *(pptr+msg_off) >= '0' && 101 *(pptr+msg_off) <= '9' && 103 pri = pri * 10 + (*(pptr+msg_off) - '0'); 105 TCHECK2(*(pptr+msg_off), 1); 107 if (*(pptr+msg_off) != '>') { 138 TCHECK2(*(pptr+msg_off), 1) [all...] |
print-sip.c | 36 sip_print(register const u_char *pptr, register u_int len) 47 TCHECK2(*(pptr+idx), 2); 48 if (EXTRACT_16BITS(pptr+idx) != 0x0d0a) { /* linefeed ? */ 49 safeputchar(*(pptr+idx)); 58 print_unknown_data(pptr,"\n\t",len);
|
print-forces.c | 70 int (*print) (register const u_char * pptr, register u_int len, 250 int (*print) (register const u_char * pptr, register u_int len, 254 static int genoptlv_print(register const u_char * pptr, register u_int len, 256 static int recpdoptlv_print(register const u_char * pptr, register u_int len, 258 static int invoptlv_print(register const u_char * pptr, register u_int len, 462 static int lfbselect_print(register const u_char * pptr, register u_int len, 464 static int redirect_print(register const u_char * pptr, register u_int len, 466 static int asrtlv_print(register const u_char * pptr, register u_int len, 468 static int asttlv_print(register const u_char * pptr, register u_int len, 520 int (*print) (register const u_char * pptr, register u_int len [all...] |
print-bgp.c | 489 decode_prefix4(const u_char *pptr, u_int itemlen, char *buf, u_int buflen) 494 TCHECK(pptr[0]); 496 plen = pptr[0]; 503 TCHECK2(pptr[1], plenbytes); 505 memcpy(&addr, &pptr[1], plenbytes); 521 decode_labeled_prefix4(const u_char *pptr, u_int itemlen, char *buf, u_int buflen) 527 TCHECK2(pptr[0], 4); 529 plen = pptr[0]; /* get prefix length */ 550 TCHECK2(pptr[4], plenbytes); 552 memcpy(&addr, &pptr[4], plenbytes) [all...] |
print-zephyr.c | 88 parse_field(char **pptr, int *len) 92 if (*len <= 0 || !pptr || !*pptr) 94 if (*pptr > (char *) snapend) 97 s = *pptr; 98 while (*pptr <= (char *) snapend && *len >= 0 && **pptr) { 99 (*pptr)++; 102 (*pptr)++; 104 if (*len < 0 || *pptr > (char *) snapend [all...] |
print-isoclns.c | 568 static void osi_print_cksum(const u_int8_t *pptr, u_int16_t checksum, 773 static int clnp_print (const u_int8_t *pptr, u_int length) 781 clnp_header = (const struct clnp_header_t *) pptr; 785 optr = pptr; 804 pptr += sizeof(struct clnp_header_t); 806 dest_address_length = *pptr; 807 dest_address = pptr + 1; 809 pptr += (1 + dest_address_length); 811 source_address_length = *pptr; 812 source_address = pptr +1 2095 const u_int8_t *optr, *pptr, *tptr; local [all...] |
print-dtp.c | 49 dtp_print (const u_char *pptr, u_int length) 57 tptr = pptr; 75 while (tptr < (pptr+length)) {
|
/external/llvm/test/Bitcode/ |
blockaddress.ll | 18 define void @doit(i8** nocapture %pptr) { 24 store i8* blockaddress(@doit, %here), i8** %pptr, align 8 33 define void @doitagain(i8** nocapture %pptr) { 39 store i8* blockaddress(@doit, %here), i8** %pptr, align 8
|
/external/libcxx/test/input.output/file.streams/fstreams/filebuf.virtuals/ |
overflow.pass.cpp | 31 char_type* pptr() const {return base::pptr();} function in struct:test_buf 45 assert(f.pptr() == 0); 49 assert(f.pptr() == f.pbase()); 65 assert(f.pptr() == 0); 69 assert(f.pptr() == 0); 84 assert(f.pptr() == 0); 88 assert(f.pptr() == f.pbase()); 104 assert(f.pptr() == 0); 108 assert(f.pptr() == 0) [all...] |
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/input.output/file.streams/fstreams/filebuf.virtuals/ |
overflow.pass.cpp | 31 char_type* pptr() const {return base::pptr();} function in struct:test_buf 45 assert(f.pptr() == 0); 49 assert(f.pptr() == f.pbase()); 65 assert(f.pptr() == 0); 69 assert(f.pptr() == 0); 84 assert(f.pptr() == 0); 88 assert(f.pptr() == f.pbase()); 104 assert(f.pptr() == 0); 108 assert(f.pptr() == 0) [all...] |
/external/libcxx/test/localization/locales/locale.convenience/conversions/conversions.buffer/ |
overflow.pass.cpp | 34 char_type* pptr() const {return base::pptr();} function in struct:test_buf 47 assert(f.pptr() == 0); 51 assert(f.pptr() == f.pbase()); 65 assert(f.pptr() == 0); 69 assert(f.pptr() == 0);
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/localization/locales/locale.convenience/conversions/conversions.buffer/ |
overflow.pass.cpp | 34 char_type* pptr() const {return base::pptr();} function in struct:test_buf 47 assert(f.pptr() == 0); 51 assert(f.pptr() == f.pbase()); 65 assert(f.pptr() == 0); 69 assert(f.pptr() == 0);
|
/external/clang/test/CodeGen/ |
address-space.c | 41 void test4(MyStruct __attribute__((address_space(2))) *pPtr) { 42 MyStruct s = pPtr[0]; 43 pPtr[0] = s;
|
/external/chromium_org/base/memory/ |
ref_counted_unittest.cc | 20 SelfAssign** pptr = &ptr_; local 21 EXPECT_EQ(*pptr, ptr_);
|
/external/libcxx/src/ |
strstream.cpp | 147 return static_cast<int>(pptr() - pbase()); 155 if (pptr() == epptr()) 173 ptrdiff_t nout = pptr() - pbase(); 187 *pptr() = static_cast<char>(__c); 221 if (egptr() >= pptr()) 223 setg(eback(), gptr(), pptr()); 249 if (pos_out && pptr() == nullptr) 261 newoff = (pos_in ? gptr() : pptr()) - eback(); 294 if (!((pos_in && gptr() == nullptr) || (pos_out && pptr() == nullptr)))
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/src/ |
strstream.cpp | 147 return static_cast<int>(pptr() - pbase()); 155 if (pptr() == epptr()) 173 ptrdiff_t nout = pptr() - pbase(); 187 *pptr() = static_cast<char>(__c); 221 if (egptr() >= pptr()) 223 setg(eback(), gptr(), pptr()); 249 if (pos_out && pptr() == nullptr) 261 newoff = (pos_in ? gptr() : pptr()) - eback(); 294 if (!((pos_in && gptr() == nullptr) || (pos_out && pptr() == nullptr)))
|
/external/stlport/src/ |
strstream.cpp | 113 return int(pptr() ? pptr() - pbase() : 0); 121 if (pptr() == epptr() && _M_dynamic && !_M_frozen && !_M_constant) { 147 if (pptr() != epptr()) { 148 *pptr() = traits_type::to_char_type(c); 177 if (gptr() == egptr() && pptr() && pptr() > egptr()) 178 setg(eback(), gptr(), pptr()); 208 if ((!do_get && !do_put) || (do_put && !pptr()) || !gptr()) 223 newoff = do_put ? pptr() - seeklow : gptr() - seeklow [all...] |
/ndk/sources/cxx-stl/stlport/src/ |
strstream.cpp | 113 return int(pptr() ? pptr() - pbase() : 0); 121 if (pptr() == epptr() && _M_dynamic && !_M_frozen && !_M_constant) { 147 if (pptr() != epptr()) { 148 *pptr() = traits_type::to_char_type(c); 177 if (gptr() == egptr() && pptr() && pptr() > egptr()) 178 setg(eback(), gptr(), pptr()); 208 if ((!do_get && !do_put) || (do_put && !pptr()) || !gptr()) 223 newoff = do_put ? pptr() - seeklow : gptr() - seeklow [all...] |
/external/libcxx/test/input.output/stream.buffers/streambuf/streambuf.protected/streambuf.assign/ |
swap.pass.cpp | 38 assert(this->pptr() == old_that.pptr()); 46 assert(t.pptr() == old_this.pptr());
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/input.output/stream.buffers/streambuf/streambuf.protected/streambuf.assign/ |
swap.pass.cpp | 38 assert(this->pptr() == old_that.pptr()); 46 assert(t.pptr() == old_this.pptr());
|