Home
last modified time | relevance | path

Searched refs:bp (Results 1 – 25 of 438) sorted by relevance

12345678910>>...18

/third_party/openssl/crypto/bn/
Dbn_nist.c376 const unsigned int *bp = (const unsigned int *)buf.ui; in BN_nist_mod_192() local
379 acc += bp[3 * 2 - 6]; in BN_nist_mod_192()
380 acc += bp[5 * 2 - 6]; in BN_nist_mod_192()
385 acc += bp[3 * 2 - 5]; in BN_nist_mod_192()
386 acc += bp[5 * 2 - 5]; in BN_nist_mod_192()
391 acc += bp[3 * 2 - 6]; in BN_nist_mod_192()
392 acc += bp[4 * 2 - 6]; in BN_nist_mod_192()
393 acc += bp[5 * 2 - 6]; in BN_nist_mod_192()
398 acc += bp[3 * 2 - 5]; in BN_nist_mod_192()
399 acc += bp[4 * 2 - 5]; in BN_nist_mod_192()
[all …]
Dbn_sparc.c16 int bn_mul_mont(BN_ULONG *rp, const BN_ULONG *ap, const BN_ULONG *bp, in bn_mul_mont() argument
19 int bn_mul_mont_vis3(BN_ULONG *rp, const BN_ULONG *ap, const BN_ULONG *bp, in bn_mul_mont()
21 int bn_mul_mont_fpu(BN_ULONG *rp, const BN_ULONG *ap, const BN_ULONG *bp, in bn_mul_mont()
23 int bn_mul_mont_int(BN_ULONG *rp, const BN_ULONG *ap, const BN_ULONG *bp, in bn_mul_mont()
31 const BN_ULONG *bp, in bn_mul_mont()
35 const BN_ULONG *bp, const BN_ULONG *np, in bn_mul_mont()
38 const BN_ULONG *bp, const BN_ULONG *np, in bn_mul_mont()
41 const BN_ULONG *bp, const BN_ULONG *np, in bn_mul_mont()
44 const BN_ULONG *bp, const BN_ULONG *np, in bn_mul_mont()
52 if ((*worker) (rp, ap, bp, np, n0)) in bn_mul_mont()
[all …]
/third_party/openssl/crypto/ocsp/
Docsp_prn.c17 static int ocsp_certid_print(BIO *bp, OCSP_CERTID *a, int indent) in ocsp_certid_print() argument
19 BIO_printf(bp, "%*sCertificate ID:\n", indent, ""); in ocsp_certid_print()
21 BIO_printf(bp, "%*sHash Algorithm: ", indent, ""); in ocsp_certid_print()
22 i2a_ASN1_OBJECT(bp, a->hashAlgorithm.algorithm); in ocsp_certid_print()
23 BIO_printf(bp, "\n%*sIssuer Name Hash: ", indent, ""); in ocsp_certid_print()
24 i2a_ASN1_STRING(bp, &a->issuerNameHash, 0); in ocsp_certid_print()
25 BIO_printf(bp, "\n%*sIssuer Key Hash: ", indent, ""); in ocsp_certid_print()
26 i2a_ASN1_STRING(bp, &a->issuerKeyHash, 0); in ocsp_certid_print()
27 BIO_printf(bp, "\n%*sSerial Number: ", indent, ""); in ocsp_certid_print()
28 i2a_ASN1_INTEGER(bp, &a->serialNumber); in ocsp_certid_print()
[all …]
Dv3_ocsp.c42 BIO *bp, int ind);
110 static int i2r_ocsp_crlid(const X509V3_EXT_METHOD *method, void *in, BIO *bp, in i2r_ocsp_crlid() argument
115 if (BIO_printf(bp, "%*scrlUrl: ", ind, "") <= 0) in i2r_ocsp_crlid()
117 if (!ASN1_STRING_print(bp, (ASN1_STRING *)a->crlUrl)) in i2r_ocsp_crlid()
119 if (BIO_write(bp, "\n", 1) <= 0) in i2r_ocsp_crlid()
123 if (BIO_printf(bp, "%*scrlNum: ", ind, "") <= 0) in i2r_ocsp_crlid()
125 if (i2a_ASN1_INTEGER(bp, a->crlNum) <= 0) in i2r_ocsp_crlid()
127 if (BIO_write(bp, "\n", 1) <= 0) in i2r_ocsp_crlid()
131 if (BIO_printf(bp, "%*scrlTime: ", ind, "") <= 0) in i2r_ocsp_crlid()
133 if (!ASN1_GENERALIZEDTIME_print(bp, a->crlTime)) in i2r_ocsp_crlid()
[all …]
/third_party/openssl/ssl/
Dssl_txt.c32 int SSL_SESSION_print(BIO *bp, const SSL_SESSION *x) in SSL_SESSION_print() argument
41 if (BIO_puts(bp, "SSL-Session:\n") <= 0) in SSL_SESSION_print()
44 if (BIO_printf(bp, " Protocol : %s\n", s) <= 0) in SSL_SESSION_print()
49 if (BIO_printf(bp, " Cipher : %06lX\n", in SSL_SESSION_print()
53 if (BIO_printf(bp, " Cipher : %04lX\n", in SSL_SESSION_print()
58 if (BIO_printf(bp, " Cipher : %s\n", in SSL_SESSION_print()
63 if (BIO_puts(bp, " Session-ID: ") <= 0) in SSL_SESSION_print()
66 if (BIO_printf(bp, "%02X", x->session_id[i]) <= 0) in SSL_SESSION_print()
69 if (BIO_puts(bp, "\n Session-ID-ctx: ") <= 0) in SSL_SESSION_print()
72 if (BIO_printf(bp, "%02X", x->sid_ctx[i]) <= 0) in SSL_SESSION_print()
[all …]
/third_party/openssl/crypto/asn1/
Dasn1_parse.c20 static int asn1_parse2(BIO *bp, const unsigned char **pp, long length,
22 static int asn1_print_info(BIO *bp, long offset, int depth, int hl, long len, in asn1_print_info() argument
45 if (bp != NULL) { in asn1_print_info()
46 if (BIO_set_prefix(bp, str) <= 0) { in asn1_print_info()
48 || (bp = BIO_push(bio, bp)) == NULL) in asn1_print_info()
52 saved_indent = BIO_get_indent(bp); in asn1_print_info()
53 if (BIO_set_prefix(bp, str) <= 0 || BIO_set_indent(bp, indent) < 0) in asn1_print_info()
73 i = (BIO_printf(bp, "%-18s", p) > 0); in asn1_print_info()
76 BIO_set_indent(bp, saved_indent); in asn1_print_info()
78 BIO_pop(bp); in asn1_print_info()
[all …]
/third_party/openssl/crypto/x509/
Dt_req.c37 int X509_REQ_print_ex(BIO *bp, X509_REQ *x, unsigned long nmflags, in X509_REQ_print_ex() argument
56 if (BIO_write(bp, "Certificate Request:\n", 21) <= 0) in X509_REQ_print_ex()
58 if (BIO_write(bp, " Data:\n", 10) <= 0) in X509_REQ_print_ex()
64 if (BIO_printf(bp, "%8sVersion: %ld (0x%lx)\n", "", l + 1, (unsigned long)l) <= 0) in X509_REQ_print_ex()
67 if (BIO_printf(bp, "%8sVersion: Unknown (%ld)\n", "", l) <= 0) in X509_REQ_print_ex()
72 if (BIO_printf(bp, " Subject:%c", mlch) <= 0) in X509_REQ_print_ex()
74 if (X509_NAME_print_ex(bp, X509_REQ_get_subject_name(x), in X509_REQ_print_ex()
77 if (BIO_write(bp, "\n", 1) <= 0) in X509_REQ_print_ex()
83 if (BIO_write(bp, " Subject Public Key Info:\n", 33) <= 0) in X509_REQ_print_ex()
85 if (BIO_printf(bp, "%12sPublic Key Algorithm: ", "") <= 0) in X509_REQ_print_ex()
[all …]
Dt_x509.c43 int X509_print(BIO *bp, X509 *x) in X509_print() argument
45 return X509_print_ex(bp, x, XN_FLAG_COMPAT, X509_FLAG_COMPAT); in X509_print()
48 int X509_print_ex(BIO *bp, X509 *x, unsigned long nmflags, in X509_print_ex() argument
69 if (BIO_write(bp, "Certificate:\n", 13) <= 0) in X509_print_ex()
71 if (BIO_write(bp, " Data:\n", 10) <= 0) in X509_print_ex()
77 if (BIO_printf(bp, "%8sVersion: %ld (0x%lx)\n", "", l + 1, (unsigned long)l) <= 0) in X509_print_ex()
80 if (BIO_printf(bp, "%8sVersion: Unknown (%ld)\n", "", l) <= 0) in X509_print_ex()
87 if (BIO_write(bp, " Serial Number:", 22) <= 0) in X509_print_ex()
106 if (BIO_printf(bp, " %s%lu (%s0x%lx)\n", neg, ul, neg, ul) <= 0) in X509_print_ex()
110 if (BIO_printf(bp, "\n%12s%s", "", neg) <= 0) in X509_print_ex()
[all …]
Dx_all.c185 X509 *d2i_X509_bio(BIO *bp, X509 **x509) in d2i_X509_bio() argument
187 return ASN1_item_d2i_bio(ASN1_ITEM_rptr(X509), bp, x509); in d2i_X509_bio()
190 int i2d_X509_bio(BIO *bp, const X509 *x509) in i2d_X509_bio() argument
192 return ASN1_item_i2d_bio(ASN1_ITEM_rptr(X509), bp, x509); in i2d_X509_bio()
207 X509_CRL *d2i_X509_CRL_bio(BIO *bp, X509_CRL **crl) in d2i_X509_CRL_bio() argument
209 return ASN1_item_d2i_bio(ASN1_ITEM_rptr(X509_CRL), bp, crl); in d2i_X509_CRL_bio()
212 int i2d_X509_CRL_bio(BIO *bp, const X509_CRL *crl) in i2d_X509_CRL_bio() argument
214 return ASN1_item_i2d_bio(ASN1_ITEM_rptr(X509_CRL), bp, crl); in i2d_X509_CRL_bio()
241 PKCS7 *d2i_PKCS7_bio(BIO *bp, PKCS7 **p7) in d2i_PKCS7_bio() argument
252 ret = ASN1_item_d2i_bio_ex(ASN1_ITEM_rptr(PKCS7), bp, p7, libctx, propq); in d2i_PKCS7_bio()
[all …]
Dv3_admis.c54 BIO *bp, int ind);
72 BIO *bp, int ind) in i2r_NAMING_AUTHORITY() argument
84 if (BIO_printf(bp, "%*snamingAuthority: ", ind, "") <= 0) in i2r_NAMING_AUTHORITY()
91 if (BIO_printf(bp, "%*s admissionAuthorityId: ", ind, "") <= 0) in i2r_NAMING_AUTHORITY()
96 if (BIO_printf(bp, "%s%s%s%s\n", ln ? ln : "", in i2r_NAMING_AUTHORITY()
101 if (BIO_printf(bp, "%*s namingAuthorityText: ", ind, "") <= 0 in i2r_NAMING_AUTHORITY()
102 || ASN1_STRING_print(bp, namingAuthority->namingAuthorityText) <= 0 in i2r_NAMING_AUTHORITY()
103 || BIO_printf(bp, "\n") <= 0) in i2r_NAMING_AUTHORITY()
107 if (BIO_printf(bp, "%*s namingAuthorityUrl: ", ind, "") <= 0 in i2r_NAMING_AUTHORITY()
108 || ASN1_STRING_print(bp, namingAuthority->namingAuthorityUrl) <= 0 in i2r_NAMING_AUTHORITY()
[all …]
/third_party/libwebsockets/lib/misc/fts/
Dtrie-fd.c90 int ra, bp = 0; in lws_fts_filepath() local
120 bp += rq32(&buf[bp], ofs_linetable); in lws_fts_filepath()
122 bp += rq32(&buf[bp], &flen); in lws_fts_filepath()
124 bp += rq32(&buf[bp], lines); in lws_fts_filepath()
126 bp += rq32(&buf[bp], &flen); in lws_fts_filepath()
127 bp += rq32(&buf[bp], &flen); in lws_fts_filepath()
133 strncpy(result, (char *)&buf[bp], m); in lws_fts_filepath()
226 bp = 0; \
244 int line = 1, bp, ra; in lws_fts_cache_chunktable() local
264 lt->chunk_line_number_count = b16(&buf[bp + 2]); in lws_fts_cache_chunktable()
[all …]
Dtrie.c171 if (bp && ((uint32_t)bp >= (sizeof(buf) - (size_t)(margin)) || (force))) { \
172 if ((int)write(t->fd, buf, (size_t)bp) != bp) { \
174 bp, errno); \
177 t->c += (unsigned int)bp; \
178 bp = 0; \
401 int bp = 0; in finalize_per_input() local
403 bp += g16(&buf[bp], 0); in finalize_per_input()
404 bp += g16(&buf[bp], 0); in finalize_per_input()
405 bp += g32(&buf[bp], 0); in finalize_per_input()
406 if ((int)write(t->fd, buf, (size_t)bp) != bp) in finalize_per_input()
[all …]
/third_party/skia/third_party/externals/abseil-cpp/absl/time/internal/cctz/src/
Dtime_zone_format.cc247 if (const char* const bp = dp) { in ParseInt() local
264 if (dp != bp && !erange && (neg || value != kmin)) { in ParseInt()
343 char* bp; // works back from ep in format() local
393 bp = Format64(ep, 0, al.cs.year()); in format()
394 result.append(bp, static_cast<std::size_t>(ep - bp)); in format()
397 bp = Format02d(ep, al.cs.month()); in format()
398 result.append(bp, static_cast<std::size_t>(ep - bp)); in format()
402 bp = Format02d(ep, al.cs.day()); in format()
403 if (*cur == 'e' && *bp == '0') *bp = ' '; // for Windows in format()
404 result.append(bp, static_cast<std::size_t>(ep - bp)); in format()
[all …]
/third_party/ffmpeg/libavcodec/
Dmqcenc.c34 if (*mqc->bp == 0xff){ in byteout()
35 mqc->bp++; in byteout()
36 *mqc->bp = mqc->c >> 20; in byteout()
40 (*mqc->bp)++; in byteout()
44 mqc->bp++; in byteout()
45 *mqc->bp = mqc->c >> 19; in byteout()
69 void ff_mqc_initenc(MqcState *mqc, uint8_t *bp) in ff_mqc_initenc() argument
74 mqc->bp = bp-1; in ff_mqc_initenc()
75 mqc->bpstart = bp; in ff_mqc_initenc()
76 mqc->ct = 12 + (*mqc->bp == 0xff); in ff_mqc_initenc()
[all …]
/third_party/mesa3d/src/glx/
Dglxext.c413 const INT32 * bp, Bool tagged_only, in __glXInitializeVisualConfigFromTags() argument
420 config->visualID = *bp++; in __glXInitializeVisualConfigFromTags()
422 config->visualType = convert_from_x_visual_type(*bp++); in __glXInitializeVisualConfigFromTags()
424 config->renderType = *bp++ ? GLX_RGBA_BIT : GLX_COLOR_INDEX_BIT; in __glXInitializeVisualConfigFromTags()
426 config->redBits = *bp++; in __glXInitializeVisualConfigFromTags()
427 config->greenBits = *bp++; in __glXInitializeVisualConfigFromTags()
428 config->blueBits = *bp++; in __glXInitializeVisualConfigFromTags()
429 config->alphaBits = *bp++; in __glXInitializeVisualConfigFromTags()
430 config->accumRedBits = *bp++; in __glXInitializeVisualConfigFromTags()
431 config->accumGreenBits = *bp++; in __glXInitializeVisualConfigFromTags()
[all …]
/third_party/openssl/crypto/ec/asm/
Decp_nistz256-sparcv9.pl99 my ($rp,$ap,$bp)=map("%i$_",(0..2));
123 add %o7,.LRR-1b,$bp
138 add %o7,.Lone-1b,$bp
165 mov $ap,$bp
186 ld [$bp+0],$bi ! b[0]
218 ld [$bp+4*$i],$bi ! b[$i]
395 ld [$bp+0],$t0 ! b[0]
396 ld [$bp+4],$t1
397 ld [$bp+8],$t2
398 ld [$bp+12],$t3
[all …]
/third_party/wpa_supplicant/wpa_supplicant-2.9/src/drivers/
Ddriver_nl80211_android.c81 int ret = 0, i = 0, bp; in android_pno_start() local
84 bp = WEXT_PNOSETUP_HEADER_SIZE; in android_pno_start()
85 os_memcpy(buf, WEXT_PNOSETUP_HEADER, bp); in android_pno_start()
86 buf[bp++] = WEXT_PNO_TLV_PREFIX; in android_pno_start()
87 buf[bp++] = WEXT_PNO_TLV_VERSION; in android_pno_start()
88 buf[bp++] = WEXT_PNO_TLV_SUBVERSION; in android_pno_start()
89 buf[bp++] = WEXT_PNO_TLV_RESERVED; in android_pno_start()
94 if ((bp + WEXT_PNO_SSID_HEADER_SIZE + MAX_SSID_LEN + in android_pno_start()
100 buf[bp++] = WEXT_PNO_SSID_SECTION; in android_pno_start()
101 buf[bp++] = params->ssids[i].ssid_len; in android_pno_start()
[all …]
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/drivers/
Ddriver_nl80211_android.c81 int ret = 0, i = 0, bp; in android_pno_start() local
84 bp = WEXT_PNOSETUP_HEADER_SIZE; in android_pno_start()
85 os_memcpy(buf, WEXT_PNOSETUP_HEADER, bp); in android_pno_start()
86 buf[bp++] = WEXT_PNO_TLV_PREFIX; in android_pno_start()
87 buf[bp++] = WEXT_PNO_TLV_VERSION; in android_pno_start()
88 buf[bp++] = WEXT_PNO_TLV_SUBVERSION; in android_pno_start()
89 buf[bp++] = WEXT_PNO_TLV_RESERVED; in android_pno_start()
94 if ((bp + WEXT_PNO_SSID_HEADER_SIZE + MAX_SSID_LEN + in android_pno_start()
100 buf[bp++] = WEXT_PNO_SSID_SECTION; in android_pno_start()
101 buf[bp++] = params->ssids[i].ssid_len; in android_pno_start()
[all …]
/third_party/openssl/crypto/lhash/
Dlh_stats.c26 BIO *bp; in OPENSSL_LH_stats() local
28 bp = BIO_new(BIO_s_file()); in OPENSSL_LH_stats()
29 if (bp == NULL) in OPENSSL_LH_stats()
31 BIO_set_fp(bp, fp, BIO_NOCLOSE); in OPENSSL_LH_stats()
32 OPENSSL_LH_stats_bio(lh, bp); in OPENSSL_LH_stats()
33 BIO_free(bp); in OPENSSL_LH_stats()
38 BIO *bp; in OPENSSL_LH_node_stats() local
40 bp = BIO_new(BIO_s_file()); in OPENSSL_LH_node_stats()
41 if (bp == NULL) in OPENSSL_LH_node_stats()
43 BIO_set_fp(bp, fp, BIO_NOCLOSE); in OPENSSL_LH_node_stats()
[all …]
/third_party/openssl/crypto/rsa/
Drsa_ameth.c202 static int rsa_pss_param_print(BIO *bp, int pss_key, RSA_PSS_PARAMS *pss, in rsa_pss_param_print() argument
208 if (!BIO_indent(bp, indent, 128)) in rsa_pss_param_print()
212 if (BIO_puts(bp, "No PSS parameter restrictions\n") <= 0) in rsa_pss_param_print()
216 if (BIO_puts(bp, "PSS parameter restrictions:") <= 0) in rsa_pss_param_print()
220 if (BIO_puts(bp,"(INVALID PSS PARAMETERS)\n") <= 0) in rsa_pss_param_print()
224 if (BIO_puts(bp, "\n") <= 0) in rsa_pss_param_print()
228 if (!BIO_indent(bp, indent, 128)) in rsa_pss_param_print()
230 if (BIO_puts(bp, "Hash Algorithm: ") <= 0) in rsa_pss_param_print()
234 if (i2a_ASN1_OBJECT(bp, pss->hashAlgorithm->algorithm) <= 0) in rsa_pss_param_print()
236 } else if (BIO_puts(bp, "sha1 (default)") <= 0) { in rsa_pss_param_print()
[all …]
/third_party/openssl/apps/
Drehash.c129 BUCKET *bp; in add_entry() local
133 for (bp = hash_table[ndx]; bp; bp = bp->next) in add_entry()
134 if (bp->type == type && bp->hash == hash) in add_entry()
136 if (bp == NULL) { in add_entry()
137 bp = app_malloc(sizeof(*bp), "hash bucket"); in add_entry()
138 *bp = nilbucket; in add_entry()
139 bp->next = hash_table[ndx]; in add_entry()
140 bp->type = type; in add_entry()
141 bp->hash = hash; in add_entry()
142 hash_table[ndx] = bp; in add_entry()
[all …]
/third_party/ffmpeg/libavformat/
Duncodedframecrcenc.c48 static void video_frame_cksum(AVBPrint *bp, AVFrame *frame) in video_frame_cksum() argument
55 av_bprintf(bp, ", %d x %d", frame->width, frame->height); in video_frame_cksum()
57 av_bprintf(bp, ", unknown"); in video_frame_cksum()
62 av_bprintf(bp, ", %s", desc->name); in video_frame_cksum()
73 av_bprintf(bp, ", 0x%08x", cksum); in video_frame_cksum()
77 static void audio_frame_cksum(AVBPrint *bp, AVFrame *frame) in audio_frame_cksum() argument
89 av_bprintf(bp, ", %d samples", frame->nb_samples); in audio_frame_cksum()
90 av_bprintf(bp, ", %s", name ? name : "unknown"); in audio_frame_cksum()
118 av_bprintf(bp, ", 0x%08"PRIx32, cksum); in audio_frame_cksum()
130 AVBPrint bp; in write_frame() local
[all …]
/third_party/openssl/crypto/pem/
Dpem_pk8.c21 static int do_pk8pkey(BIO *bp, const EVP_PKEY *x, int isder,
28 static int do_pk8pkey_fp(FILE *bp, const EVP_PKEY *x, int isder,
41 int PEM_write_bio_PKCS8PrivateKey_nid(BIO *bp, const EVP_PKEY *x, int nid, in PEM_write_bio_PKCS8PrivateKey_nid() argument
45 return do_pk8pkey(bp, x, 0, nid, NULL, kstr, klen, cb, u, NULL); in PEM_write_bio_PKCS8PrivateKey_nid()
48 int PEM_write_bio_PKCS8PrivateKey(BIO *bp, const EVP_PKEY *x, const EVP_CIPHER *enc, in PEM_write_bio_PKCS8PrivateKey() argument
52 return do_pk8pkey(bp, x, 0, -1, enc, kstr, klen, cb, u, NULL); in PEM_write_bio_PKCS8PrivateKey()
55 int i2d_PKCS8PrivateKey_bio(BIO *bp, const EVP_PKEY *x, const EVP_CIPHER *enc, in i2d_PKCS8PrivateKey_bio() argument
59 return do_pk8pkey(bp, x, 1, -1, enc, kstr, klen, cb, u, NULL); in i2d_PKCS8PrivateKey_bio()
62 int i2d_PKCS8PrivateKey_nid_bio(BIO *bp, const EVP_PKEY *x, int nid, in i2d_PKCS8PrivateKey_nid_bio() argument
66 return do_pk8pkey(bp, x, 1, nid, NULL, kstr, klen, cb, u, NULL); in i2d_PKCS8PrivateKey_nid_bio()
[all …]
/third_party/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/rbbi/
DRBBITestExtended.java431 int bp; in executeTest() local
444 for (bp = t.bi.first(); bp != BreakIterator.DONE; bp = t.bi.next()) { in executeTest()
445 if (prevBP == bp) { in executeTest()
447 errln("Forward Iteration, no forward progress. Break Pos=" + bp + in executeTest()
448 " File line,col=" + t.srcLine[bp] + ", " + t.srcCol[bp]); in executeTest()
454 for (i=prevBP+1; i<bp; i++) { in executeTest()
462 if (t.expectedBreaks[bp] == 0) { in executeTest()
463 errln("Forward Iteration, break found, but not expected. Pos=" + bp + in executeTest()
464 " File line,col= " + t.srcLine[bp] + ", " + t.srcCol[bp]); in executeTest()
468 int expectedTagVal = t.expectedBreaks[bp]; in executeTest()
[all …]
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/rbbi/
DRBBITestExtended.java424 int bp; in executeTest() local
437 for (bp = t.bi.first(); bp != BreakIterator.DONE; bp = t.bi.next()) { in executeTest()
438 if (prevBP == bp) { in executeTest()
440 errln("Forward Iteration, no forward progress. Break Pos=" + bp + in executeTest()
441 " File line,col=" + t.srcLine[bp] + ", " + t.srcCol[bp]); in executeTest()
447 for (i=prevBP+1; i<bp; i++) { in executeTest()
455 if (t.expectedBreaks[bp] == 0) { in executeTest()
456 errln("Forward Iteration, break found, but not expected. Pos=" + bp + in executeTest()
457 " File line,col= " + t.srcLine[bp] + ", " + t.srcCol[bp]); in executeTest()
461 int expectedTagVal = t.expectedBreaks[bp]; in executeTest()
[all …]

12345678910>>...18