/external/tcpdump/ |
print-timed.c | 99 register const u_char *bp) 101 const struct tsp *tsp = (const struct tsp *)bp;
|
/external/zopfli/src/zopfli/ |
gzip_container.c | 81 unsigned char bp = 0; local 97 in, insize, &bp, out, outsize);
|
/external/boringssl/src/include/openssl/ |
x509.h | 577 OPENSSL_EXPORT int X509_signature_dump(BIO *bp,const ASN1_STRING *sig, int indent); 578 OPENSSL_EXPORT int X509_signature_print(BIO *bp, const X509_ALGOR *alg, 642 OPENSSL_EXPORT X509 *d2i_X509_bio(BIO *bp,X509 **x509); 643 OPENSSL_EXPORT int i2d_X509_bio(BIO *bp,X509 *x509); 644 OPENSSL_EXPORT X509_CRL *d2i_X509_CRL_bio(BIO *bp,X509_CRL **crl); 645 OPENSSL_EXPORT int i2d_X509_CRL_bio(BIO *bp,X509_CRL *crl); 646 OPENSSL_EXPORT X509_REQ *d2i_X509_REQ_bio(BIO *bp,X509_REQ **req); 647 OPENSSL_EXPORT int i2d_X509_REQ_bio(BIO *bp,X509_REQ *req); 648 OPENSSL_EXPORT RSA *d2i_RSAPrivateKey_bio(BIO *bp,RSA **rsa); 649 OPENSSL_EXPORT int i2d_RSAPrivateKey_bio(BIO *bp,RSA *rsa) [all...] |
/device/linaro/bootloader/edk2/DuetPkg/BootSector/ |
Mbr.asm | 57 mov bp, 0600h ; BP = 0x0600
61 lea di, [bp+si] ; DI = 0x0600 + Offset(RelocatedStart)
88 mov bp,sp ; BP = 0x7c00
91 mov byte ptr [bp+PhysicalDrive],dl ; BBS defines that BIOS would pass the booting driver number to the loader through DL
106 mov al, byte ptr [bp+MbrPartitionIndicator] ; AX = MbrPartitionIndex
125 mov eax, dword ptr es:[bp + di + 8] ; Start LBA
131 mov bp, 7bfah
132 div word ptr [bp+2] ; AX = Hi + H*Ci [all...] |
/external/boringssl/src/crypto/pem/ |
pem_pkey.c | 72 EVP_PKEY *PEM_read_bio_PrivateKey(BIO *bp, EVP_PKEY **x, pem_password_cb *cb, 81 if (!PEM_bytes_read_bio(&data, &len, &nm, PEM_STRING_EVP_PKEY, bp, cb, u)) 147 int PEM_write_bio_PrivateKey(BIO *bp, EVP_PKEY *x, const EVP_CIPHER *enc, 151 return PEM_write_bio_PKCS8PrivateKey(bp, x, enc, (char *)kstr, klen, cb, u); 191 DH *PEM_read_bio_DHparams(BIO *bp, DH **x, pem_password_cb *cb, void *u) 199 if (!PEM_bytes_read_bio(&data, &len, &nm, PEM_STRING_DHPARAMS, bp, cb, u))
|
/external/tensorflow/tensorflow/core/distributed_runtime/rpc/ |
grpc_serialization_traits.h | 31 explicit GrpcBufferWriter(grpc_byte_buffer** bp, int block_size) 33 *bp = g_core_codegen_interface->grpc_raw_byte_buffer_create(NULL, 0); 34 slice_buffer_ = &(*bp)->data.raw.slice_buffer; 171 static Status Serialize(const T& msg, grpc_byte_buffer** bp, 183 *bp = g_core_codegen_interface->grpc_raw_byte_buffer_create(&slice, 1); 188 bp, tensorflow_helper::kGrpcBufferWriterMaxBufferLength);
|
/external/xmlrpcpp/src/ |
XmlRpcClient.cpp | 308 char *bp = 0; // Start of body local 311 for (char *cp = hp; (bp == 0) && (cp < ep); ++cp) { 315 bp = cp + 4; 317 bp = cp + 2; 321 if (bp == 0) { 346 _response = bp;
|
/prebuilts/go/darwin-x86/src/runtime/ |
defs_plan9_386.go | 8 bp uint32 /* ... */ 51 print("bp ", hex(u.bp), "\n")
|
defs_plan9_amd64.go | 12 bp uint64 60 print("bp ", hex(u.bp), "\n")
|
/prebuilts/go/linux-x86/src/runtime/ |
defs_plan9_386.go | 8 bp uint32 /* ... */ 51 print("bp ", hex(u.bp), "\n")
|
defs_plan9_amd64.go | 12 bp uint64 60 print("bp ", hex(u.bp), "\n")
|
/external/python/cpython3/Lib/ |
pdb.py | 179 self.commands_doprompt = {} # for each bp num, tells if the prompt 181 self.commands_silent = {} # for each bp num, tells if the stack trace 484 return [str(i) for i, bp in enumerate(bdb.Breakpoint.bpbynumber) 485 if bp is not None and str(i).startswith(text)] 614 for bp in bdb.Breakpoint.bpbynumber: 615 if bp: 616 self.message(bp.bpformat()) 684 bp = self.get_breaks(filename, line)[-1] 686 (bp.number, bp.file, bp.line) [all...] |
/external/pdfium/third_party/libtiff/ |
tif_lzw.c | 188 #define NextCode(tif, sp, bp, code, get) get(sp, bp, code) 340 #define GetNextCode(sp, bp, code) { \ 341 nextdata = (nextdata<<8) | *(bp)++; \ 344 nextdata = (nextdata<<8) | *(bp)++; \ 367 unsigned char *bp; local 427 bp = (unsigned char *)tif->tif_rawcp; 440 NextCode(tif, sp, bp, code, GetNextCode); 451 NextCode(tif, sp, bp, code, GetNextCode); 555 tif->tif_rawcc -= (tmsize_t)( (uint8*) bp - tif->tif_rawcp ) 604 unsigned char *bp; local [all...] |
/external/compiler-rt/lib/msan/ |
msan.cc | 220 void GetStackTrace(BufferedStackTrace *stack, uptr max_s, uptr pc, uptr bp, 226 return stack->Unwind(max_s, pc, bp, nullptr, 0, 0, request_fast_unwind); 228 stack->Unwind(max_s, pc, bp, nullptr, t->stack_top(), t->stack_bottom(), 232 void PrintWarning(uptr pc, uptr bp) { 233 PrintWarningWithOrigin(pc, bp, __msan_origin_tls); 236 void PrintWarningWithOrigin(uptr pc, uptr bp, u32 origin) { 246 GET_FATAL_STACK_TRACE_PC_BP(pc, bp); 319 PrintWarningWithOrigin(pc, bp, o); \ 338 GET_STORE_STACK_TRACE_PC_BP(pc, bp); \ 353 PrintWarning(pc, bp); [all...] |
msan.h | 249 void PrintWarning(uptr pc, uptr bp); 250 void PrintWarningWithOrigin(uptr pc, uptr bp, u32 origin); 252 void GetStackTrace(BufferedStackTrace *stack, uptr max_s, uptr pc, uptr bp, 280 #define GET_STORE_STACK_TRACE_PC_BP(pc, bp) \ 283 GetStackTrace(&stack, flags()->store_context_size, pc, bp, \ 286 #define GET_FATAL_STACK_TRACE_PC_BP(pc, bp) \ 289 GetStackTrace(&stack, kStackTraceMax, pc, bp, \
|
/toolchain/binutils/binutils-2.27/gas/testsuite/gas/i386/ |
prefix.d | 21 [ ]*[a-f0-9]+: f2 67 66 0f 11 22 data16 movsd %xmm4,\(%bp,%si\) 22 [ ]*[a-f0-9]+: f2 67 f0 66 0f 11 22 lock data16 movsd %xmm4,\(%bp,%si\) 24 [ ]*[a-f0-9]+: f3 67 f0 66 0f 11 22 lock data16 movss %xmm4,\(%bp,%si\) 25 [ ]*[a-f0-9]+: f3 67 f2 66 0f 11 22 repz data16 movsd %xmm4,\(%bp,%si\) 30 [ ]*[a-f0-9]+: f2 67 66 3e 36 0f 11 22 data16 ds movsd %xmm4,%ss:\(%bp,%si\) 31 [ ]*[a-f0-9]+: f2 67 f0 66 3e 36 0f 11 22 lock data16 ds movsd %xmm4,%ss:\(%bp,%si\) 34 [ ]*[a-f0-9]+: f3 67 f2 66 3e 36 0f 11 22 repz data16 ds movsd %xmm4,%ss:\(%bp,%si\)
|
/external/syslinux/core/ |
isolinux.asm | 398 mov bp,[ImageSectors] 403 push bp ; Sector count 413 cmp bp,cx 415 mov bp,cx 418 push bp 424 pop bp 430 sub bp,dx 730 push bp 736 mov bp,sp 737 setc [bp+10] ; Propagate CF to the calle [all...] |
/external/libvpx/ |
generate_config.sh | 184 ) > config_$1.bp 211 ) > config_$1.bp 289 echo "Convert to bp" 302 rm -f $BASE_DIR/Android.bp 305 echo "// Generated from Android.bp.in, run ./generate_config.sh to regenerate" 307 cat config_*.bp 308 cat $BASE_DIR/Android.bp.in 309 ) > $BASE_DIR/Android.bp 310 bpfmt -w $BASE_DIR/Android.bp
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Objects/ |
obmalloc.c | 792 block *bp; local 1227 void *bp; local [all...] |
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Objects/ |
obmalloc.c | 749 block *bp; local 1178 void *bp; local [all...] |
/external/python/cpython2/Objects/ |
obmalloc.c | 792 block *bp; local 1227 void *bp; local [all...] |
/external/libxml2/ |
nanohttp.c | 662 char *bp = buf; local 665 while (bp - buf < 4095) { 668 if (bp == buf) 671 *bp = 0; 678 *bp = *ctxt->inrptr++; 679 if (*bp == '\n') { 680 *bp = 0; 683 if (*bp != '\r') 684 bp++; 1360 char *bp, *p; local [all...] |
/external/compiler-rt/lib/asan/ |
asan_rtl.cc | 116 ReportGenericError(pc, bp, sp, addr, is_write, size, 0, true); \ 121 ReportGenericError(pc, bp, sp, addr, is_write, size, exp, true); \ 126 ReportGenericError(pc, bp, sp, addr, is_write, size, 0, false); \ 144 ReportGenericError(pc, bp, sp, addr, is_write, size, 0, true); \ 149 ReportGenericError(pc, bp, sp, addr, is_write, size, exp, true); \ 154 ReportGenericError(pc, bp, sp, addr, is_write, size, 0, false); \ 172 ReportGenericError(pc, bp, sp, addr, is_write, size, exp_arg, \ 208 ReportGenericError(pc, bp, sp, addr, false, size, 0, true); 217 ReportGenericError(pc, bp, sp, addr, false, size, exp, true); 226 ReportGenericError(pc, bp, sp, addr, false, size, 0, false) [all...] |
/external/one-true-awk/ |
tran.c | 419 uschar *buf, *bp; local 423 for (bp = buf; (c = *s) != delim; s++) { 427 *bp++ = c; 431 *bp++ = '\\'; 435 case '\\': *bp++ = '\\'; break; 436 case 'n': *bp++ = '\n'; break; 437 case 't': *bp++ = '\t'; break; 438 case 'b': *bp++ = '\b'; break; 439 case 'f': *bp++ = '\f'; break; 440 case 'r': *bp++ = '\r'; break [all...] |
/build/soong/android/ |
namespace_test.go | 155 `dir3/Android.bp:4:4: "b" depends on undefined module "a" 377 errors.New(`dir1/Android.bp:2:4: module "soong_namespace": namespace a_nonexistent_namespace does not exist`), 406 errors.New(`dir1/subdir1/Android.bp:4:4: "b" depends on undefined module "a" 469 errors.New(`dir3/Android.bp:5:4: "c" depends on undefined module "a" 491 errors.New(`dir1/Android.bp:4:4: namespace dir1 already exists`), 512 errors.New(`dir1/Android.bp:5:4: a namespace must be the first module in the file`), 536 errors.New(`dir1/Android.bp:7:4: module "a" already defined 537 dir1/Android.bp:4:4 <-- previous definition here`), 547 "Android.bp": []byte(` 548 build = ["include.bp"] [all...] |