HomeSort by relevance Sort by last modified time
    Searched refs:bp (Results 101 - 125 of 993) sorted by null

1 2 3 45 6 7 8 91011>>

  /external/libcxx/test/std/utilities/memory/specialized.algorithms/uninitialized.copy/
uninitialized_copy.pass.cpp 56 B* bp = (B*)pool; local
62 std::uninitialized_copy(b, b+N, bp);
71 std::uninitialized_copy(b, b+2, bp);
73 assert(bp[i].data_ == 1);
uninitialized_copy_n.pass.cpp 56 B* bp = (B*)pool; local
62 std::uninitialized_copy_n(b, 5, bp);
71 std::uninitialized_copy_n(b, 2, bp);
73 assert(bp[i].data_ == 1);
  /external/zopfli/src/zopfli/
deflate.c 32 bp = bitpointer, always in range [0, 7].
34 Given the value of bp and the amount of bytes, the amount of bits represented
35 is not simply bytesize * 8 + bp because even representing one bit requires a
36 whole byte. It is: (bp == 0) ? (bytesize * 8) : ((bytesize - 1) * 8 + bp)
39 unsigned char* bp, unsigned char** out, size_t* outsize) {
40 if (*bp == 0) ZOPFLI_APPEND_DATA(0, out, outsize);
41 (*out)[*outsize - 1] |= bit << *bp;
42 *bp = (*bp + 1) & 7
325 bp, out, outsize); local
329 bp, out, outsize); local
    [all...]
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/utilities/memory/specialized.algorithms/uninitialized.copy/
uninitialized_copy.pass.cpp 56 B* bp = (B*)pool; local
62 std::uninitialized_copy(b, b+N, bp);
71 std::uninitialized_copy(b, b+2, bp);
73 assert(bp[i].data_ == 1);
uninitialized_copy_n.pass.cpp 56 B* bp = (B*)pool; local
62 std::uninitialized_copy_n(b, 5, bp);
71 std::uninitialized_copy_n(b, 2, bp);
73 assert(bp[i].data_ == 1);
  /toolchain/binutils/binutils-2.27/gas/testsuite/gas/i386/
x86-64-segovr.s 6 .irp reg, ax, cx, dx, bx, sp, bp, si, di, 8, 9, 10, 11, 12, 13, 14, 15
  /hardware/intel/bootstub/
bootstub.c 138 static void setup_boot_params(struct boot_params *bp, struct setup_header *sh)
140 bp->screen_info.orig_video_mode = 0;
141 bp->screen_info.orig_video_lines = 0;
142 bp->screen_info.orig_video_cols = 0;
143 bp->alt_mem_k = 128*1024; // hard coded 128M mem here, since SFI will override it
144 memcpy(&bp->hdr, sh, sizeof (struct setup_header));
145 bp->hdr.type_of_loader = 0xff; //bootstub is unknown bootloader for kernel :)
146 bp->hdr.hardware_subarch = X86_SUBARCH_MRST;
149 static u32 bzImage_setup(struct boot_params *bp, struct setup_header *sh)
169 bp->hdr.ramdisk_size = aosp->ramdisk_size
471 struct boot_params *bp = (struct boot_params *)BOOT_PARAMS_OFFSET; local
    [all...]
sfi.h 57 extern void sfi_setup_mmap(struct boot_params *bp, memory_map_t *mb_mmap);
58 extern int sfi_add_e820_entry(struct boot_params *bp, memory_map_t *mb_mmap, u64 start, u64 size, int type);
  /external/boringssl/src/crypto/x509/
x509.c 135 int X509_signature_dump(BIO *bp, const ASN1_STRING *sig, int indent) {
143 if (BIO_write(bp, "\n", 1) <= 0 ||
144 BIO_indent(bp, indent, indent) <= 0) {
148 if (BIO_printf(bp, "%02x%s", s[i], ((i + 1) == n) ? "" : ":") <= 0) {
152 if (BIO_write(bp, "\n", 1) != 1) {
  /prebuilts/ndk/r16/sources/third_party/shaderc/third_party/spirv-tools/source/opt/
dead_branch_elim_pass.h 76 // Add branch to |labelId| to end of block |bp|.
77 void AddBranch(uint32_t labelId, ir::BasicBlock* bp);
79 // Add selction merge of |labelId| to end of block |bp|.
80 void AddSelectionMerge(uint32_t labelId, ir::BasicBlock* bp);
83 // of block |bp|.
85 uint32_t falseLabId, ir::BasicBlock* bp);
87 // Kill all instructions in block |bp|.
88 void KillAllInsts(ir::BasicBlock* bp);
90 // If block |bp| contains constant conditional branch preceeded by an
93 bool GetConstConditionalSelectionBranch(ir::BasicBlock* bp,
    [all...]
  /external/libpcap/
pcap-nit.c 107 register u_char *bp, *cp, *ep; local
121 bp = (u_char *)p->buffer;
123 bp = p->bp;
131 ep = bp + cc;
132 while (bp < ep) {
147 p->cc = ep - bp;
148 p->bp = bp;
153 nh = (struct nit_hdr *)bp;
    [all...]
  /frameworks/base/services/core/java/com/android/server/pm/permission/
PermissionManagerService.java 169 BasePermission bp = mSettings.getPermissionLocked(perm.name); local
170 if (bp == null) {
171 bp = new BasePermission(perm.name, "android", BasePermission.TYPE_BUILTIN);
172 mSettings.putPermissionLocked(perm.name, bp);
175 bp.setGids(perm.gids, perm.perUser);
227 BasePermission bp = mSettings.getPermissionLocked(permName); local
228 if (bp != null && bp.isInstant()) {
330 final BasePermission bp = mSettings.getPermissionLocked(permName); local
331 if (bp == null)
496 final BasePermission bp = BasePermission.createOrUpdate( local
501 final BasePermission bp = BasePermission.createOrUpdate( local
558 BasePermission bp = (BasePermission) mSettings.mPermissions.get(p.info.name); local
617 BasePermission bp = mSettings.getPermissionLocked(info.name); local
646 final BasePermission bp = mSettings.getPermissionLocked(permName); local
718 final BasePermission bp = mSettings.getPermissionLocked(permName); local
1304 BasePermission bp = mSettings.getPermissionLocked(permission); local
1343 final BasePermission bp; local
1393 final BasePermission bp; local
1520 final BasePermission bp = mSettings.getPermissionLocked(permName); local
1595 BasePermission bp = mSettings.getPermissionLocked(permission); local
1609 BasePermission bp = mSettings.getPermissionLocked(permissionState.getName()); local
1628 BasePermission bp = mSettings.getPermissionLocked(permissionState.getName()); local
1764 final BasePermission bp = it.next(); local
1811 final BasePermission bp = it.next(); local
1880 final BasePermission bp; local
    [all...]
  /external/boringssl/src/crypto/x509v3/
v3_prn.c 158 int X509V3_extensions_print(BIO *bp, const char *title,
169 BIO_printf(bp, "%*s%s:\n", indent, "", title);
177 if (indent && BIO_printf(bp, "%*s", indent, "") <= 0)
180 i2a_ASN1_OBJECT(bp, obj);
182 if (BIO_printf(bp, ": %s\n", j ? "critical" : "") <= 0)
184 if (!X509V3_EXT_print(bp, ex, flag, indent + 4)) {
185 BIO_printf(bp, "%*s", indent + 4, "");
186 M_ASN1_OCTET_STRING_print(bp, ex->value);
188 if (BIO_write(bp, "\n", 1) <= 0)
  /external/pdfium/third_party/libopenjpeg20/
mqc_inl.h 81 if (*mqc->bp > 0x8f) {
85 mqc->c = *mqc->bp;
86 mqc->bp ++;
90 mqc->c = *mqc->bp;
91 mqc->bp ++;
107 l_c = *(mqc->bp + 1); \
108 if (*mqc->bp == 0xff) { \
114 mqc->bp++; \
119 mqc->bp++; \
  /external/pdfium/third_party/lcms/src/
cmscnvrt.c 714 GrayOnlyParams* bp = (GrayOnlyParams*) Cargo; local
721 Out[3] = cmsEvalToneCurve16(bp->KTone, In[3]);
726 bp ->cmyk2cmyk ->Eval16Fn(In, Out, bp ->cmyk2cmyk->Data);
740 GrayOnlyParams bp; local
759 memset(&bp, 0, sizeof(bp));
766 bp.cmyk2cmyk = DefaultICCintents(ContextID,
774 if (bp.cmyk2cmyk == NULL) goto Error;
777 bp.KTone = _cmsBuildKToneCurve(ContextID
846 PreserveKPlaneParams* bp = (PreserveKPlaneParams*) Cargo; local
932 PreserveKPlaneParams bp; local
    [all...]
  /external/pdfium/third_party/libtiff/
tif_packbits.c 68 unsigned char* bp = (unsigned char*) buf; local
85 b = *bp++;
88 for (; cc > 0 && b == *bp; cc--, bp++)
197 PackBitsEncodeChunk(TIFF* tif, uint8* bp, tmsize_t cc, uint16 s)
207 if (PackBitsEncode(tif, bp, chunk, s) < 0)
209 bp += chunk;
219 char *bp; local
225 bp = (char*) tif->tif_rawcp;
228 n = (long) *bp++
    [all...]
  /external/compiler-rt/lib/sanitizer_common/
sanitizer_stacktrace.cc 43 // In GCC on ARM bp points to saved lr, not fp, so we should check the next
46 static inline uhwptr *GetCanonicFrame(uptr bp,
50 if (!IsValidFrame(bp, stack_top, stack_bottom)) return 0;
51 uhwptr *bp_prev = (uhwptr *)bp;
63 return (uhwptr*)bp;
67 void BufferedStackTrace::FastUnwindStack(uptr pc, uptr bp, uptr stack_top,
74 uhwptr *frame = GetCanonicFrame(bp, stack_top, stack_bottom);
  /packages/apps/Email/tests/src/com/android/emailcommon/mail/
MessageTestUtils.java 78 final MimeBodyPart bp = new MimeBodyPart(null, mimeType); local
80 bp.setHeader(MimeHeader.HEADER_CONTENT_ID, contentId);
82 return bp;
161 final BodyPart bp = new MimeBodyPart(); local
162 bp.setBody(this.build());
163 return bp;
  /prebuilts/go/darwin-x86/src/runtime/
mem_plan9.go 52 bp := (*memHdr)(ap)
53 bp.size = n
56 bp.next = 0
57 memFreelist.set(bp)
62 memFreelist.set(bp)
63 if bpn+bp.size == uintptr(unsafe.Pointer(p)) {
64 bp.size += p.size
65 bp.next = p.next
68 bp.next.set(p)
77 if bpn+bp.size == uintptr(unsafe.Pointer(p.next))
    [all...]
  /prebuilts/go/linux-x86/src/runtime/
mem_plan9.go 52 bp := (*memHdr)(ap)
53 bp.size = n
56 bp.next = 0
57 memFreelist.set(bp)
62 memFreelist.set(bp)
63 if bpn+bp.size == uintptr(unsafe.Pointer(p)) {
64 bp.size += p.size
65 bp.next = p.next
68 bp.next.set(p)
77 if bpn+bp.size == uintptr(unsafe.Pointer(p.next))
    [all...]
  /external/boringssl/src/crypto/pem/
pem_oth.c 72 void *PEM_ASN1_read_bio(d2i_of_void *d2i, const char *name, BIO *bp, void **x,
80 if (!PEM_bytes_read_bio(&data, &len, NULL, name, bp, cb, u))
  /external/compiler-rt/test/asan/TestCases/
debug_report.cc 37 void *bp = __asan_get_report_bp(); local
48 fprintf(stderr, "bp: " PTR_FMT "\n", bp);
49 // CHECK: bp: 0x[[BP:[0-9a-f]+]]
62 // CHECK: AddressSanitizer: heap-use-after-free on address {{0x0*}}[[ADDR]] at pc {{0x0*}}[[PC]] bp {{0x0*}}[[BP]] sp {{0x0*}}[[SP]]
  /external/skia/src/core/
SkBitmapController.h 45 State* requestBitmap(const SkBitmapProvider& bp, const SkMatrix& inv, SkFilterQuality quality) {
46 return this->requestBitmap(bp, inv, quality, nullptr, 0);
  /external/skqp/src/core/
SkBitmapController.h 45 State* requestBitmap(const SkBitmapProvider& bp, const SkMatrix& inv, SkFilterQuality quality) {
46 return this->requestBitmap(bp, inv, quality, nullptr, 0);
  /toolchain/binutils/binutils-2.27/gas/testsuite/gas/bfin/
flow2.s 70 //IF CC JUMP pcrel11m2 (bp) ; /* branch if CC=1, branch predicted as taken (a) */
71 IF CC JUMP 0xFFFFFE08(bp);
72 IF CC JUMP 0x0B4(bp);
78 //IF !CC JUMP pcrel11m2 (bp) ; /* branch if CC=0, branch predicted as taken (a) */
79 IF !CC JUMP 0xFFFFFF22(bp);
80 IF !CC JUMP 0X120(bp);
86 //IF CC JUMP user_label (bp) ; /* user-defined absolute address label, resolved by the assembler/linker to the appropriate PC-relative instruction (a) */
87 IF CC JUMP MY_LABEL1(bp);
88 IF CC JUMP MY_LABEL2(bp);
94 //IF !CC JUMP user_label (bp) ; /* user-defined absolute address label, resolved by the assembler/linker to the appropriate PC- (…)
    [all...]

Completed in 1549 milliseconds

1 2 3 45 6 7 8 91011>>