HomeSort by relevance Sort by last modified time
    Searched refs:max_out (Results 1 - 24 of 24) sorted by null

  /external/mesa3d/src/mesa/drivers/dri/nouveau/
nouveau_render_t.c 158 unsigned max_out; local
163 max_out = MAX_OUT_I32;
167 max_out = MAX_OUT_I16;
171 max_out = MAX_OUT_I16;
176 max_out = 0;
180 max_out = MAX_OUT_L;
183 return MAX2(0, n - 7) * max_out * MAX_PACKET / (1 + MAX_PACKET);
  /external/boringssl/src/ssl/
ssl_aead_ctx.c 143 size_t max_out, uint8_t type, uint16_t wire_version,
148 if (in_len > max_out) {
193 return EVP_AEAD_CTX_open(&aead->ctx, out, out_len, max_out, nonce, nonce_len,
198 size_t max_out, uint8_t type, uint16_t wire_version,
203 if (in_len > max_out) {
237 if (max_out < aead->variable_nonce_len) {
248 max_out -= aead->variable_nonce_len;
251 if (!EVP_AEAD_CTX_seal(&aead->ctx, out, out_len, max_out, nonce, nonce_len,
d1_pkt.c 717 * writes it to |out|. At most |max_out| bytes will be written. It returns one
721 size_t max_out, uint8_t type, const uint8_t *in,
723 if (max_out < DTLS1_RT_HEADER_LENGTH) {
753 max_out - DTLS1_RT_HEADER_LENGTH, type, wire_version,
806 size_t max_out = wb->len - wb->offset; local
809 if (!dtls1_seal_record(s, out, &ciphertext_len, max_out, type, buf, len,
s3_pkt.c 479 * writes it to |out|. At most |max_out| bytes will be written. It returns one
483 size_t max_out, uint8_t type, const uint8_t *in,
485 if (max_out < SSL3_RT_HEADER_LENGTH) {
503 &ciphertext_len, max_out - SSL3_RT_HEADER_LENGTH,
574 size_t max_out = wb->len - wb->offset; local
583 if (!ssl3_seal_record(s, out, &fragment_len, max_out, type, buf, 1)) {
587 max_out -= fragment_len;
595 if (!ssl3_seal_record(s, out, &ciphertext_len, max_out, type, buf, len)) {
    [all...]
s3_lib.c 346 size_t SSL_get_tls_channel_id(SSL *ssl, uint8_t *out, size_t max_out) {
350 memcpy(out, ssl->s3->tlsext_channel_id, (max_out < 64) ? max_out : 64);
internal.h 338 size_t max_out, uint8_t type, uint16_t wire_version,
348 size_t max_out, uint8_t type, uint16_t wire_version,
    [all...]
ssl_lib.c     [all...]
  /external/icu/icu4c/source/test/intltest/
punyref.c 133 punycode_uint n, delta, h, b, out, max_out, bias, j, m, q, k, t; local
139 max_out = *output_length;
146 if (max_out - out < 2) return punycode_big_output;
191 if (out >= max_out) return punycode_big_output;
222 punycode_uint n, out, i, max_out, bias, local
229 max_out = *output_length;
237 if (b > max_out) return punycode_big_output;
284 if (out >= max_out) return punycode_big_output;
  /external/boringssl/src/include/openssl/
rsa.h 114 * and writes, at most, |max_out| bytes of encrypted data to |out|. The
115 * |max_out| argument must be, at least, |RSA_size| in order to ensure success.
123 size_t max_out, const uint8_t *in, size_t in_len,
127 * |rsa| and writes, at most, |max_out| bytes of plaintext to |out|. The
128 * |max_out| argument must be, at least, |RSA_size| in order to ensure success.
136 size_t max_out, const uint8_t *in, size_t in_len,
194 * and writes, at most, |max_out| bytes of signature data to |out|. The
195 * |max_out| argument must be, at least, |RSA_size| in order to ensure success.
202 size_t max_out, const uint8_t *in,
220 * public key from |rsa| and writes, at most, |max_out| bytes of plaintext t
    [all...]
base64.h 120 * |*out_len| bytes to |out|. |max_out| is the size of the output
124 size_t max_out, const uint8_t *in,
ssl.h 500 /* SSL_get_tls_unique writes at most |max_out| bytes of the tls-unique value
502 * returns one on success or zero on error. In general |max_out| should be at
518 size_t *out_len, size_t max_out);
    [all...]
  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/stringprep/
PunycodeReference.java 140 int delta, h, b, out, max_out, bias, j, q, k, t; local
146 max_out = output_length[0];
153 if (max_out - out < 2) return punycode_big_output;
198 if (out >= max_out) return punycode_big_output;
300 int n, out, i, max_out, bias, local
307 max_out = output_length[0];
319 if (b > max_out) return punycode_big_output;
366 if (out >= max_out) return punycode_big_output;
  /external/mesa3d/src/gallium/drivers/nv50/
nv50_program.h 67 ubyte max_out; /* REG_ALLOC_RESULT or FP_RESULT_COUNT */ member in struct:nv50_program
nv50_program.c 117 prog->max_out = n;
219 prog->max_out = MAX2(prog->max_out, prog->out[i].hw + 4);
223 info->out[info->io.sampleMask].slot[0] = prog->max_out++;
226 info->out[info->io.fragDepth].slot[2] = prog->max_out++;
228 if (!prog->max_out)
229 prog->max_out = 4;
nv50_shader_state.c 160 PUSH_DATA (push, vp->max_out);
180 PUSH_DATA (push, fp->max_out);
199 PUSH_DATA (push, gp->max_out);
nv50_surface.c 472 blit->vp.max_out = 5;
583 blit->fp.max_out = 4;
  /external/boringssl/src/crypto/rsa/
rsa.c 165 int RSA_encrypt(RSA *rsa, size_t *out_len, uint8_t *out, size_t max_out,
168 return rsa->meth->encrypt(rsa, out_len, out, max_out, in, in_len, padding);
171 return RSA_default_method.encrypt(rsa, out_len, out, max_out, in, in_len,
186 int RSA_sign_raw(RSA *rsa, size_t *out_len, uint8_t *out, size_t max_out,
189 return rsa->meth->sign_raw(rsa, out_len, out, max_out, in, in_len, padding);
192 return RSA_default_method.sign_raw(rsa, out_len, out, max_out, in, in_len,
207 int RSA_decrypt(RSA *rsa, size_t *out_len, uint8_t *out, size_t max_out,
210 return rsa->meth->decrypt(rsa, out_len, out, max_out, in, in_len, padding);
213 return RSA_default_method.decrypt(rsa, out_len, out, max_out, in, in_len,
228 int RSA_verify_raw(RSA *rsa, size_t *out_len, uint8_t *out, size_t max_out,
    [all...]
rsa_impl.c 88 static int encrypt(RSA *rsa, size_t *out_len, uint8_t *out, size_t max_out,
101 if (max_out < rsa_size) {
305 static int sign_raw(RSA *rsa, size_t *out_len, uint8_t *out, size_t max_out,
311 if (max_out < rsa_size) {
354 static int decrypt(RSA *rsa, size_t *out_len, uint8_t *out, size_t max_out,
361 if (max_out < rsa_size) {
414 static int verify_raw(RSA *rsa, size_t *out_len, uint8_t *out, size_t max_out,
433 if (max_out < rsa_size) {
  /external/libopus/tests/
test_opus_api.c 1436 #define max_out macro
    [all...]
  /external/boringssl/src/crypto/base64/
base64.c 217 int EVP_DecodeBase64(uint8_t *out, size_t *out_len, size_t max_out,
223 if (!EVP_DecodedLength(&max_len, in_len) || max_out < max_len) {
  /external/boringssl/src/ssl/test/
bssl_shim.cc 510 static int DoRead(SSL *ssl, uint8_t *out, size_t max_out) {
514 ret = SSL_read(ssl, out, max_out);
  /external/v8/src/
parser.h 234 bool ParseIntervalQuantifier(int* min_out, int* max_out);
    [all...]
parser.cc     [all...]
  /external/conscrypt/src/main/native/
org_conscrypt_NativeCrypto.cpp     [all...]

Completed in 1054 milliseconds