HomeSort by: relevance | last modified time | path
    Searched defs:list_len (Results 1 - 11 of 11) sorted by relevancy

  /src/crypto/external/apache2/openssl/dist/crypto/ct/
ct_oct.c 257 size_t list_len, sct_len; local
264 n2s(*pp, list_len);
265 if (list_len != len - 2) {
283 while (list_len > 0) {
286 if (list_len < 2) {
291 list_len -= 2;
293 if (sct_len == 0 || sct_len > list_len) {
297 list_len -= sct_len;
  /src/crypto/external/bsd/openssl/dist/crypto/ct/
ct_oct.c 261 size_t list_len, sct_len; local
268 n2s(*pp, list_len);
269 if (list_len != len - 2) {
287 while (list_len > 0) {
290 if (list_len < 2) {
295 list_len -= 2;
297 if (sct_len == 0 || sct_len > list_len) {
301 list_len -= sct_len;
  /src/crypto/external/bsd/openssl.old/dist/crypto/ct/
ct_oct.c 261 size_t list_len, sct_len; local
268 n2s(*pp, list_len);
269 if (list_len != len - 2) {
287 while (list_len > 0) {
290 if (list_len < 2) {
295 list_len -= 2;
297 if (sct_len == 0 || sct_len > list_len) {
301 list_len -= sct_len;
  /src/crypto/external/apache2/openssl/dist/include/internal/
hashtable.h 43 size_t list_len; member in struct:ht_value_list_st
  /src/external/bsd/wpa/dist/src/tls/
tlsv1_client_read.c 358 size_t left, len, list_len, cert_len, idx; local
434 list_len = WPA_GET_BE24(pos);
437 if ((size_t) (end - pos) != list_len) {
440 (unsigned long) list_len,
tlsv1_server_read.c 400 size_t left, len, list_len, cert_len, idx; local
477 list_len = WPA_GET_BE24(pos);
480 if ((size_t) (end - pos) != list_len) {
482 (unsigned long) list_len,
  /src/external/bsd/wpa/dist/src/eap_common/
eap_sim_common.c 499 size_t alen, plen, i, list_len; local
641 list_len = apos[0] * 256 + apos[1];
643 if (list_len < 2 || list_len > alen - 2) {
645 "AT_VERSION_LIST (list_len=%lu "
647 (unsigned long) list_len,
652 attr->version_list_len = list_len;
  /src/external/mpl/dhcp/dist/common/
tree.c 4190 int list_len = 0; local
4195 list_len = MRns_name_uncompress_list(list1->data,
4198 if (list_len < 0) {
4204 uncomp_len = list_len;
4205 uncomp += list_len;
4216 list_len = MRns_name_uncompress_list(list2->data, list2->len,
4219 if (list_len < 0) {
4225 uncomp_len += list_len;
4226 uncomp += list_len;
4262 list_len = MRns_name_compress_list(uncompbuf, uncomp_len
    [all...]
  /src/bin/sh/
var.c 879 static int list_len; local
883 list_len = 32;
884 list = ckmalloc(list_len * sizeof *list);
893 if (count >= list_len) {
895 (list_len << 1) * sizeof *list);
896 list_len <<= 1;
  /src/sys/arch/hp300/stand/common/
scsireg.h 292 u_short list_len; member in struct:scsi_sense::__anon1367::scsi_format_parms
306 u_short list_len; /* length in bytes of defects only */ member in struct:scsi_sense::__anon1367::scsi_reassign_parms
  /src/external/bsd/openldap/dist/servers/slapd/overlays/
syncprov.c 152 int ndel, list_len; member in struct:syncprov_accesslog_deletes
2001 if ( uuid_progress->ndel >= uuid_progress->list_len ) {
2004 assert( uuid_progress->ndel == uuid_progress->list_len );
2385 * Allocate memory for list_len uuids for use by the callback, populate
2397 uuid_progress.list_len = SLAP_SYNCUUID_SET_SIZE;
2398 uuid_progress.uuid_list = fop.o_tmpalloc( (uuid_progress.list_len) * sizeof(struct berval), fop.o_tmpmemctx );
2399 uuid_progress.uuid_buf = fop.o_tmpalloc( (uuid_progress.list_len) * UUID_LEN, fop.o_tmpmemctx );

Completed in 43 milliseconds