/external/libpcap/ |
etherent.c | 100 char *bp; local 151 bp = e.name; 155 *bp++ = c; 158 *bp = '\0';
|
pcap-snit.c | 120 register u_char *bp, *cp, *ep; local 137 bp = (u_char *)p->buffer; 139 bp = p->bp; 145 ep = bp + cc; 146 while (bp < ep) { 161 p->bp = bp; 162 p->cc = ep - bp; 168 cp = bp; [all...] |
/external/pdfium/third_party/libopenjpeg20/ |
mqc.h | 84 OPJ_BYTE *bp; member in struct:opj_mqc 129 @param bp Pointer to the start of the buffer where the bytes will be written 131 void opj_mqc_init_enc(opj_mqc_t *mqc, OPJ_BYTE *bp); 214 @param bp Pointer to the start of the buffer from which the bytes will be read 218 So bp must be at least len + OPJ_COMMON_CBLK_DATA_EXTRA large, and 222 This is to indicate your consent that bp must be 225 void opj_mqc_init_dec(opj_mqc_t *mqc, OPJ_BYTE *bp, OPJ_UINT32 len, 235 @param bp Pointer to the start of the buffer from which the bytes will be read 239 So bp must be at least len + OPJ_COMMON_CBLK_DATA_EXTRA large, and 243 This is to indicate your consent that bp must b [all...] |
/external/syslinux/lzo/src/ |
lzo_swd.ch | 122 lzo_uint bp; /* buffer pointer */ 303 s->bp = s->ip; 345 lzo_bytep p = &s_b(s)[s->bp+s->look]; 374 (s->bp > (pos) ? s->bp - (pos) : s->b_size - ((pos) - s->bp)) 405 if (++s->bp == s->b_size) 406 s->bp = 0; 428 (long)node, (long)s->rp, (long)s->ip, (long)s->bp, 430 (long)(s->ip - s->bp)); [all...] |
/external/compiler-rt/lib/sanitizer_common/ |
sanitizer_stacktrace_libcdep.cc | 57 void BufferedStackTrace::Unwind(u32 max_depth, uptr pc, uptr bp, void *context, 60 top_frame_bp = (max_depth > 0) ? bp : 0; 81 FastUnwindStack(pc, bp, stack_top, stack_bottom, max_depth);
|
sanitizer_stacktrace.h | 92 uptr top_frame_bp; // Optional bp of a top frame. 97 void Unwind(u32 max_depth, uptr pc, uptr bp, void *context, uptr stack_top, 101 void FastUnwindStack(uptr pc, uptr bp, uptr stack_top, uptr stack_bottom, 123 uptr bp = GET_CURRENT_FRAME(); \ 129 uptr bp = GET_CURRENT_FRAME(); \ 135 uptr bp = GET_CURRENT_FRAME(); \
|
/external/libcxx/test/std/language.support/support.dynamic/new.delete/new.delete.array/ |
new_align_val_t_nothrow_replace.pass.cpp | 87 B* bp = new (std::nothrow) B[2]; local 88 assert(bp); 91 delete [] bp;
|
new_align_val_t_replace.pass.cpp | 79 B* bp = new B[3]; local 80 assert(bp); 83 delete [] bp;
|
/external/libcxx/test/std/language.support/support.dynamic/new.delete/new.delete.single/ |
new_align_val_t_nothrow_replace.pass.cpp | 89 B* bp = new (std::nothrow) B; local 90 assert(bp); 93 delete bp;
|
new_align_val_t_replace.pass.cpp | 79 B* bp = new B; local 80 assert(bp); 83 delete bp;
|
/external/libopus/celt/arm/ |
kiss_fft_armv4.h | 43 "ldrsh %[br], [%[bp], #0]\n\t" \ 45 "ldrsh %[bi], [%[bp], #2]\n\t" \ 57 : [ap]"r"(&(a)), [bp]"r"(&(b)) \ 71 "ldrsh %[br], [%[bp], #0]\n\t" \ 73 "ldrsh %[bi], [%[bp], #2]\n\t" \ 85 : [ap]"r"(&(a)), [bp]"r"(&(b)) \ 99 "ldrsh %[br], [%[bp], #0]\n\t" \ 101 "ldrsh %[bi], [%[bp], #2]\n\t" \ 113 : [ap]"r"(&(a)), [bp]"r"(&(b)) \
|
kiss_fft_armv5e.h | 52 "ldr %[bval], %[bp]\n\t" \ 59 : [ap]LDRD_CONS(a), [bp]"m"(b) \ 77 "ldr %[bval], %[bp]\n\t" \ 84 : [ap]LDRD_CONS(a), [bp]"m"(b) \ 102 "ldr %[bval], %[bp]\n\t" \ 109 : [ap]LDRD_CONS(a), [bp]"m"(b) \
|
/external/linux-kselftest/tools/testing/selftests/x86/ |
check_initial_reg_state.c | 19 unsigned long ax, bx, cx, dx, si, di, bp, sp, flags; variable 34 "mov %rbp, bp\n\t" 53 "mov %ebp, bp\n\t" 71 if (ax || bx || cx || dx || si || di || bp 84 SHOW(bp);
|
/external/syslinux/mbr/ |
gptmbr.S | 64 pushw %es /* 4(%bp) es:di -> $PnP header */ 65 pushw %di /* 2(%bp) */ 79 pushw %dx /* 0(%bp) = %dl -> drive number */ 80 movw %sp, %bp /* %bp -> frame pointer: LEAVE UNCHANGED */ 83 sub $0x1c, %sp /* -28(%bp) == %sp */ 84 pushw $0x1e /* -30(%bp) == %sp */ 85 movw $0x200, -6(%bp) /* -6(%bp) sector size */ 122 pushw %cx /* -32(%bp) Save sectors on the stack * [all...] |
/prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/language.support/support.dynamic/new.delete/new.delete.array/ |
new_align_val_t_nothrow_replace.pass.cpp | 87 B* bp = new (std::nothrow) B[2]; local 88 assert(bp); 91 delete [] bp;
|
new_align_val_t_replace.pass.cpp | 79 B* bp = new B[3]; local 80 assert(bp); 83 delete [] bp;
|
/prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/language.support/support.dynamic/new.delete/new.delete.single/ |
new_align_val_t_nothrow_replace.pass.cpp | 89 B* bp = new (std::nothrow) B; local 90 assert(bp); 93 delete bp;
|
new_align_val_t_replace.pass.cpp | 79 B* bp = new B; local 80 assert(bp); 83 delete bp;
|
/external/syslinux/gpxe/src/util/ |
nrv2b.c | 167 const unsigned char *bp; member in struct:ucl_compress 256 unsigned int bp; /* buffer pointer */ member in struct:ucl_swd 285 if (m_off <= (unsigned int) (c->bp - c->in)) 287 assert(c->bp - m_off + m_len < c->ip); 288 assert(memcmp(c->bp, c->bp - m_off, m_len) == 0); 293 d_off = m_off - (unsigned int) (c->bp - c->in); 297 assert(memcmp(c->bp, swd->dict_end - d_off, d_off) == 301 assert(memcmp(c->bp + d_off, c->in, m_len - d_off) == 307 assert(memcmp(c->bp, swd->dict_end - d_off, m_len) = 558 const unsigned char * bp = s->b + s->bp; local [all...] |
/hardware/intel/common/libmix/mix_vbp/viddec_fw/fw/codecs/vc1/parser/ |
vc1parse_bitplane.c | 477 vc1_Bitplane bp; local 478 vc1_Bitplane *bpp = &bp; 613 /* At this point bp contains the information we need for the bit-plane */ 621 if(bp.imode != VC1_BITPLANE_RAW_MODE) 623 pInfo->picLayerHeader.FORWARDMB.invert = bp.invert; 624 pInfo->picLayerHeader.FORWARDMB.imode = bp.imode; 627 parser->bp_forwardmb[i] = bp.databits[i]; 639 if(bp.imode != VC1_BITPLANE_RAW_MODE) 641 pInfo->picLayerHeader.ACPRED.invert = bp.invert; 642 pInfo->picLayerHeader.ACPRED.imode = bp.imode [all...] |
/external/tcpdump/ |
print-domain.c | 149 register const u_char *cp, register const u_char *bp) 161 max_offset = (u_int)(cp - bp); 192 cp = bp + offset; 324 register const u_char *cp, register const u_char *bp, int is_mdns) 352 cp = ns_nprint(ndo, np, bp); 359 register const u_char *cp, register const u_char *bp, int is_mdns) 367 if ((cp = ns_nprint(ndo, cp, bp)) == NULL) 432 if (ns_nprint(ndo, cp, bp) == NULL) 440 if ((cp = ns_nprint(ndo, cp, bp)) == NULL) 443 if ((cp = ns_nprint(ndo, cp, bp)) == NULL [all...] |
print-medsa.c | 141 const u_char *bp, u_int length, u_int caplen, 147 medsa = (const struct medsa_pkthdr *)bp; 156 bp += 8; 163 if (llc_print(ndo, bp, length, caplen, src, dst) < 0) { 166 ND_DEFAULTPRINT(bp, caplen); 174 if (ethertype_print(ndo, ether_type, bp, length, caplen, src, dst) == 0) { 183 ND_DEFAULTPRINT(bp, caplen);
|
/external/libunwind/tests/ |
crasher.c | 48 char *buf, *bp, *eb; local 73 for (bp = buf, eb = buf + len; bp < eb; bp += kv->kve_structsize) { 74 kv = (struct kinfo_vmentry *)(uintptr_t)bp;
|
/external/libmtp/examples/ |
detect.c | 36 uint32_t bp = 0; local 38 while (bp < len) { 39 if (buf[bp+0] == 0xFF && buf[bp+1] == 0xFE) { 41 } else if (buf[bp+0] == 0xFE && buf[bp+1] == 0xff) { 47 tmp = buf[bp+1] << 8 | buf[bp+0]; 49 tmp = buf[bp+0] << 8 | buf[bp+1] [all...] |
/device/linaro/bootloader/edk2/StdLib/BsdSocketLib/ |
ns_name.c | 173 u_char *label, *bp, *eom;
local 178 bp = dst;
180 label = bp++;
209 c = ((int)(bp - label) - 1);
222 if (bp >= eom) {
226 *bp++ = '\0';
228 if ((bp - dst) > MAXCDNAME) {
238 label = bp++;
241 if (bp >= eom) {
245 *bp++ = (u_char)c; [all...] |