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

1 2 34 5 6 7 8 91011>>

  /external/boringssl/src/crypto/evp/
print.c 67 static int bn_print(BIO *bp, const char *number, const BIGNUM *num,
73 if (!BIO_indent(bp, off, 128)) {
77 if (BIO_printf(bp, "%s 0\n", number) <= 0) {
85 if (BIO_printf(bp, "%s %s%lu (%s0x%lx)\n", number, neg,
92 if (BIO_printf(bp, "%s%s", number,
107 if (BIO_puts(bp, "\n") <= 0 ||
108 !BIO_indent(bp, off + 4, 128)) {
112 if (BIO_printf(bp, "%02x%s", buf[i], ((i + 1) == n) ? "" : ":") <= 0) {
116 if (BIO_write(bp, "\n", 1) <= 0) {
204 static int rsa_pub_print(BIO *bp, const EVP_PKEY *pkey, int indent
    [all...]
  /external/boringssl/src/crypto/x509/
rsa_pss.c 298 int x509_print_rsa_pss_params(BIO *bp, const X509_ALGOR *sigalg, int indent,
306 if (BIO_puts(bp, " (INVALID PSS PARAMETERS)\n") <= 0) {
313 if (BIO_puts(bp, "\n") <= 0 ||
314 !BIO_indent(bp, indent, 128) ||
315 BIO_puts(bp, "Hash Algorithm: ") <= 0) {
320 if (i2a_ASN1_OBJECT(bp, pss->hashAlgorithm->algorithm) <= 0) {
323 } else if (BIO_puts(bp, "sha1 (default)") <= 0) {
327 if (BIO_puts(bp, "\n") <= 0 ||
328 !BIO_indent(bp, indent, 128) ||
329 BIO_puts(bp, "Mask Algorithm: ") <= 0)
    [all...]
  /frameworks/base/tools/aapt2/format/proto/
ProtoSerialize_test.cpp 291 BinaryPrimitive* bp = test::GetValueForConfigAndProduct<BinaryPrimitive>( local
293 ASSERT_THAT(bp, NotNull());
294 EXPECT_THAT(bp->value.dataType, Eq(android::Res_value::TYPE_INT_BOOLEAN));
295 EXPECT_THAT(bp->value.data, Eq(ResourceUtils::TryParseBool("true")->value.data));
297 bp = test::GetValueForConfigAndProduct<BinaryPrimitive>(&new_table, "android:bool/boolean_false",
299 ASSERT_THAT(bp, NotNull());
300 EXPECT_THAT(bp->value.dataType, Eq(android::Res_value::TYPE_INT_BOOLEAN));
301 EXPECT_THAT(bp->value.data, Eq(ResourceUtils::TryParseBool("false")->value.data));
303 bp = test::GetValueForConfigAndProduct<BinaryPrimitive>(&new_table, "android:color/color_rgb8",
305 ASSERT_THAT(bp, NotNull())
    [all...]
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/rbbi/
RBBITestExtended.java 424 int bp; local
437 for (bp = t.bi.first(); bp != BreakIterator.DONE; bp = t.bi.next()) {
438 if (prevBP == bp) {
440 errln("Forward Iteration, no forward progress. Break Pos=" + bp +
441 " File line,col=" + t.srcLine[bp] + ", " + t.srcCol[bp]);
447 for (i=prevBP+1; i<bp; i++) {
455 if (t.expectedBreaks[bp] == 0)
    [all...]
  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/rbbi/
RBBITestExtended.java 421 int bp; local
434 for (bp = t.bi.first(); bp != BreakIterator.DONE; bp = t.bi.next()) {
435 if (prevBP == bp) {
437 errln("Forward Iteration, no forward progress. Break Pos=" + bp +
438 " File line,col=" + t.srcLine[bp] + ", " + t.srcCol[bp]);
444 for (i=prevBP+1; i<bp; i++) {
452 if (t.expectedBreaks[bp] == 0)
    [all...]
  /external/pdfium/third_party/libopenjpeg20/
mqc.c 187 /* bp is initialized to start - 1 in opj_mqc_init_enc() */
189 assert(mqc->bp >= mqc->start - 1);
190 if (*mqc->bp == 0xff) {
191 mqc->bp++;
192 *mqc->bp = (OPJ_BYTE)(mqc->c >> 20);
197 mqc->bp++;
198 *mqc->bp = (OPJ_BYTE)(mqc->c >> 19);
202 (*mqc->bp)++;
203 if (*mqc->bp == 0xff) {
205 mqc->bp++
    [all...]
bio.h 62 OPJ_BYTE *bp; member in struct:opj_bio
91 @param bp Output buffer
94 void opj_bio_init_enc(opj_bio_t *bio, OPJ_BYTE *bp, OPJ_UINT32 len);
98 @param bp Input buffer
101 void opj_bio_init_dec(opj_bio_t *bio, OPJ_BYTE *bp, OPJ_UINT32 len);
  /device/linaro/bootloader/edk2/StdLib/BsdSocketLib/
gethostbydns.c 204 char *bp, **ap, **hap; local
233 bp = hostbuf;
241 n = dn_expand(answer->buf, eom, cp, bp, buflen);
242 if ((n < 0) || !(*name_ok)(bp)) {
252 n = (int)strlen(bp) + 1; /* for the \0 */
257 host.h_name = bp;
258 bp += n;
273 n = dn_expand(answer->buf, eom, cp, bp, buflen);
274 if ((n < 0) || !(*name_ok)(bp)) {
310 *ap++ = bp;
525 char *bp; local
    [all...]
ns_addr.c 116 register char *bp = buf; local
159 while (*bp) switch (*bp++) {
175 *--bp = '0';
184 *--bp = 0; /* Ends Loop */
197 for (bp = buf; *bp++; ) clen++;
201 bp = clen + buf - 3;
205 (void)sscanf(bp, fmt, hp);
206 bp[0] = 0;
    [all...]
  /frameworks/base/services/core/java/com/android/server/pm/permission/
PermissionSettings.java 114 for (BasePermission bp : permissions.values()) {
115 bp.transfer(origPackageName, newPackageName);
123 final BasePermission bp = mPermissions.get(permName); local
124 return (bp != null && (bp.isRuntime() || bp.isDevelopment()) && bp.isInstant());
143 for (BasePermission bp : mPermissions.values()) {
144 bp.writeLPr(serializer);
151 for (BasePermission bp : mPermissionTrees.values())
258 final BasePermission bp = mPermissions.get(permName); local
265 final BasePermission bp = mPermissions.get(permName); local
    [all...]
BasePermission.java 284 static BasePermission createOrUpdate(@Nullable BasePermission bp, @NonNull Permission p,
289 if (bp != null && !Objects.equals(bp.sourcePackageName, p.info.packageName)) {
290 final boolean currentOwnerIsSystem = (bp.perm != null
291 && bp.perm.owner.isSystem());
293 if (bp.type == BasePermission.TYPE_BUILTIN && bp.perm == null) {
295 bp.sourcePackageSetting = pkgSetting;
296 bp.perm = p;
297 bp.uid = pkg.applicationInfo.uid
363 BasePermission bp = findPermissionTree(permissionTrees, permName); local
449 BasePermission bp = out.get(name); local
    [all...]
  /external/libcxx/test/std/language.support/support.dynamic/new.delete/new.delete.single/
delete_align_val_t_replace.pass.cpp 71 B* volatile bp; variable
78 bp = new B;
83 delete bp;
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/language.support/support.dynamic/new.delete/new.delete.single/
delete_align_val_t_replace.pass.cpp 71 B* volatile bp; variable
78 bp = new B;
83 delete bp;
  /external/libmtp/src/
util.c 78 unsigned char *bp = (unsigned char *) buf; local
82 fprintf(f, "%02x ", *bp);
83 bp++;
105 unsigned char *bp = (unsigned char *) buf; local
115 fprintf(f, "%02x", bp[16*lc+i]);
125 unsigned char ch= bp[16*lc+i];
  /external/libdrm/
Android.sources.bp.mk 1 # Usage: make -f path/to/Android.sources.bp.mk NAMES=<> >Android.sources.bp
4 # write <NAME>_FILES to stdout as an Android.bp cc_defaults module.
15 $(info // Autogenerated with Android.sources.bp.mk)
  /external/tcpdump/
print-msnlb.c 51 msnlb_print(netdissect_options *ndo, const u_char *bp)
55 hb = (const struct msnlb_heartbeat_pkt *)bp;
print-sctp.c 494 const u_char *bp, /* beginning of sctp packet */
514 sctpPktHdr = (const struct sctpHeader*) bp;
551 bp += sizeof(struct sctpHeader);
559 for (chunkCount = 0, chunkDescPtr = (const struct sctpChunkDesc *)bp;
566 chunkDescPtr = (const struct sctpChunkDesc *)bp;
588 ND_TCHECK2(*bp, chunkLength);
590 bp += sizeof(*chunkDescPtr);
631 dataHdrPtr=(const struct sctpDataPart*)bp;
646 bp += sizeof(*dataHdrPtr);
656 forces_print(ndo, bp, payload_size)
    [all...]
  /toolchain/binutils/binutils-2.27/gas/testsuite/gas/i386/
intel16.d 16 24: 8d 02 [ ]*lea \(%bp,%si\),%ax
18 28: 8d 03 [ ]*lea \(%bp,%di\),%ax
20 2c: 8d 02 [ ]*lea \(%bp,%si\),%ax
22 30: 8d 03 [ ]*lea \(%bp,%di\),%ax
  /external/apache-commons-math/src/main/java/org/apache/commons/math/linear/
LUDecompositionImpl.java 273 final double[] bp = new double[m]; local
277 bp[row] = b[pivot[row]];
282 final double bpCol = bp[col];
284 bp[i] -= bpCol * lu[i][col];
290 bp[col] /= lu[col][col];
291 final double bpCol = bp[col];
293 bp[i] -= bpCol * lu[i][col];
297 return bp;
317 final double[] bp = new double[m]; local
321 bp[row] = b.getEntry(pivot[row])
375 final double[][] bp = new double[m][nColB]; local
    [all...]
FieldLUDecompositionImpl.java 275 final T[] bp = (T[]) Array.newInstance(field.getZero().getClass(), m); local
279 bp[row] = b[pivot[row]];
284 final T bpCol = bp[col];
286 bp[i] = bp[i].subtract(bpCol.multiply(lu[i][col]));
292 bp[col] = bp[col].divide(lu[col][col]);
293 final T bpCol = bp[col];
295 bp[i] = bp[i].subtract(bpCol.multiply(lu[i][col]))
321 final T[] bp = (T[]) Array.newInstance(field.getZero().getClass(), m); local
380 final T[][] bp = (T[][]) Array.newInstance(field.getZero().getClass(), new int[] { m, nColB }); local
    [all...]
  /external/mesa3d/src/glx/
glxext.c 359 const INT32 * bp, Bool tagged_only,
367 config->visualID = *bp++;
369 config->visualType = convert_from_x_visual_type(*bp++);
371 config->rgbMode = *bp++;
373 config->redBits = *bp++;
374 config->greenBits = *bp++;
375 config->blueBits = *bp++;
376 config->alphaBits = *bp++;
377 config->accumRedBits = *bp++;
378 config->accumGreenBits = *bp++
    [all...]
  /device/linaro/bootloader/arm-trusted-firmware/plat/arm/board/juno/
juno_trng.c 40 uint8_t *bp = buf; local
44 assert(!check_uptr_overflow((uintptr_t)bp, len));
68 memcpy(bp, &val, n);
69 bp += n;
  /external/clang/test/FixIt/
fixit-function-call.cpp 71 bool bp(A *a);
85 // CHECK: error: no matching function for call to 'bp
87 bp(b); // good
97 // CHECK: error: no matching function for call to 'bp
99 bp(*ptra);
106 // CHECK: error: no matching function for call to 'bp
109 bp(c);
  /external/clang/test/SemaCXX/
address-space-conversion.cpp 52 B_ptr bp, B_ptr_1 bp1, B_ptr_2 bp2) {
54 (void)static_cast<A_ptr>(bp);
74 (void)static_cast<A_ptr_1>(bp); // expected-error{{is not allowed}}
76 (void)static_cast<A_ptr_2>(bp); // expected-error{{is not allowed}}
103 B_ptr bp, B_ptr_1 bp1, B_ptr_2 bp2) {
105 (void)dynamic_cast<A_ptr>(bp);
117 (void)dynamic_cast<A_ptr_1>(bp); // expected-error{{casts away qualifiers}}
119 (void)dynamic_cast<A_ptr_2>(bp); // expected-error{{casts away qualifiers}}
133 B_ptr bp, B_ptr_1 bp1, B_ptr_2 bp2,
138 (void)reinterpret_cast<A_ptr>(bp);
    [all...]
  /external/freetype/src/base/
fthash.c 110 FT_Hashnode* bp = hash->table; local
116 ndp = bp + ( res % hash->size );
123 if ( ndp < bp )
124 ndp = bp + ( hash->size - 1 );
136 FT_Hashnode* bp; local
149 for ( i = 0, bp = obp; i < sz; i++, bp++ )
151 if ( *bp )
153 nbp = hash_bucket( (*bp)->key, hash );
154 *nbp = *bp;
218 FT_Hashnode* bp = hash->table; local
240 FT_Hashnode* bp = hash_bucket( key, hash ); local
    [all...]

Completed in 2053 milliseconds

1 2 34 5 6 7 8 91011>>