Searched refs:rb (Results 1 – 8 of 8) sorted by relevance
/openssl/crypto/bn/ |
H A D | bn_shift.c | 107 unsigned int lb, rb; in bn_lshift_fixed_top() local 122 rb = BN_BITS2 - lb; in bn_lshift_fixed_top() 123 rb %= BN_BITS2; /* say no to undefined behaviour */ in bn_lshift_fixed_top() 124 rmask = (BN_ULONG)0 - rb; /* rmask = 0 - (rb != 0) */ in bn_lshift_fixed_top() 129 t[a->top] = (l >> rb) & rmask; in bn_lshift_fixed_top() 133 t[i] = (m | ((l >> rb) & rmask)) & BN_MASK2; in bn_lshift_fixed_top() 179 unsigned int lb, rb; in bn_rshift_fixed_top() local 192 rb = (unsigned int)n % BN_BITS2; in bn_rshift_fixed_top() 193 lb = BN_BITS2 - rb; in bn_rshift_fixed_top() 206 t[i] = (l >> rb) | ((m << lb) & mask); in bn_rshift_fixed_top() [all …]
|
/openssl/crypto/perlasm/ |
H A D | ppc-xlate.pl | 279 my ($f, $vrt, $ra, $rb, $op) = @_; 280 " .long ".sprintf "0x%X",(31<<26)|($vrt<<21)|($ra<<16)|($rb<<11)|($op*2+1); 370 my ($f, $rt, $ra, $rb) = @_; 371 " .long ".sprintf "0x%X",(31<<26)|($rt<<21)|($ra<<16)|($rb<<11)|(2<<6)|30; 383 my ($f, $rt, $ra, $rb, $cy) = @_; # only cy==0 is specified in 3.0B 384 " .long ".sprintf "0x%X",(31<<26)|($rt<<21)|($ra<<16)|($rb<<11)|($cy<<9)|(170<<1);
|
/openssl/crypto/ocsp/ |
H A D | ocsp_prn.c | 145 OCSP_RESPBYTES *rb = o->responseBytes; in OCSP_RESPONSE_print() local 153 if (rb == NULL) in OCSP_RESPONSE_print() 157 if (i2a_ASN1_OBJECT(bp, rb->responseType) <= 0) in OCSP_RESPONSE_print() 159 if (OBJ_obj2nid(rb->responseType) != NID_id_pkix_OCSP_basic) { in OCSP_RESPONSE_print()
|
H A D | ocsp_cl.c | 127 OCSP_RESPBYTES *rb = resp->responseBytes; in OCSP_response_get1_basic() local 129 if (rb == NULL) { in OCSP_response_get1_basic() 133 if (OBJ_obj2nid(rb->responseType) != NID_id_pkix_OCSP_basic) { in OCSP_response_get1_basic() 138 return ASN1_item_unpack(rb->response, ASN1_ITEM_rptr(OCSP_BASICRESP)); in OCSP_response_get1_basic()
|
/openssl/ssl/record/methods/ |
H A D | tls_common.c | 308 TLS_BUFFER *rb; in tls_default_read_n() local 313 rb = &rl->rbuf; in tls_default_read_n() 314 left = rb->left; in tls_default_read_n() 325 rl->packet = rb->buf + rb->offset; in tls_default_read_n() 337 pkt = rb->buf + align; in tls_default_read_n() 369 rb->offset += n; in tls_default_read_n() 376 if (n > rb->len - rb->offset) { in tls_default_read_n() 389 if (max > rb->len - rb->offset) in tls_default_read_n() 390 max = rb->len - rb->offset; in tls_default_read_n() 451 rb->offset += n; in tls_default_read_n() [all …]
|
/openssl/doc/man3/ |
H A D | PKCS12_newpass.pod | 64 if ((fp = fopen(argv[1], "rb")) == NULL) {
|
H A D | BIO_f_md.pod | 103 bio = BIO_new_file(file, "rb");
|
/openssl/Configurations/ |
H A D | unix-Makefile.tmpl | 1185 mdl -s $(SRCDIR)/util/markdownlint.rb .
|
Completed in 35 milliseconds