HomeSort by: relevance | last modified time | path
    Searched defs:str_len (Results 1 - 25 of 100) sorted by relevancy

1 2 3 4

  /src/lib/libc/rpc/
svc_auth_unix.c 79 size_t str_len, gid_len, i; local
93 str_len = (size_t)IXDR_GET_U_INT32(buf);
94 if (str_len > MAX_MACHINE_NAME) {
98 memmove(aup->aup_machname, buf, str_len);
99 aup->aup_machname[str_len] = 0;
100 str_len = RNDUP(str_len);
101 buf += str_len / sizeof (int32_t);
118 if ((5 + gid_len) * BYTES_PER_XDR_UNIT + str_len > auth_len) {
120 (long)gid_len, (long)str_len, auth_len)
    [all...]
svc_auth_unix.c 79 size_t str_len, gid_len, i; local
93 str_len = (size_t)IXDR_GET_U_INT32(buf);
94 if (str_len > MAX_MACHINE_NAME) {
98 memmove(aup->aup_machname, buf, str_len);
99 aup->aup_machname[str_len] = 0;
100 str_len = RNDUP(str_len);
101 buf += str_len / sizeof (int32_t);
118 if ((5 + gid_len) * BYTES_PER_XDR_UNIT + str_len > auth_len) {
120 (long)gid_len, (long)str_len, auth_len)
    [all...]
  /src/external/bsd/unbound/dist/testcode/
readzone.c 63 size_t str_len = sizeof(str); local
129 rr, rr_len, str, str_len);
132 rr, rr_len, str, str_len);
134 if (written > str_len) {
135 while (written > str_len)
136 str_len *= 2;
138 if (!(str = malloc(str_len))) {
146 rr, rr_len, str, str_len);
149 rr, rr_len, str, str_len);
readzone.c 63 size_t str_len = sizeof(str); local
129 rr, rr_len, str, str_len);
132 rr, rr_len, str, str_len);
134 if (written > str_len) {
135 while (written > str_len)
136 str_len *= 2;
138 if (!(str = malloc(str_len))) {
146 rr, rr_len, str, str_len);
149 rr, rr_len, str, str_len);
  /src/external/cddl/osnet/dist/lib/libdtrace/common/
dt_strtab.h 42 size_t str_len; /* length in bytes of this string */ member in struct:dt_strhash
dt_strtab.h 42 size_t str_len; /* length in bytes of this string */ member in struct:dt_strhash
  /src/external/cddl/osnet/dist/tools/ctf/cvt/
strtab.h 42 size_t str_len; /* length in bytes of this string */ member in struct:strhash
strtab.h 42 size_t str_len; /* length in bytes of this string */ member in struct:strhash
  /src/external/lgpl3/mpc/dist/tests/
tstrtoc.c 39 size_t str_len = 255; local
57 str = (char *) malloc (str_len);
89 str_len = read_string (fp, &str, str_len, "number string");
tstrtoc.c 39 size_t str_len = 255; local
57 str = (char *) malloc (str_len);
89 str_len = read_string (fp, &str, str_len, "number string");
  /src/sys/external/bsd/acpica/dist/os_specific/service_layers/
osunixdir.c 140 int str_len; local
154 str_len = strlen (dir_entry->d_name) +
157 temp_str = calloc (str_len, 1);
osunixdir.c 140 int str_len; local
154 str_len = strlen (dir_entry->d_name) +
157 temp_str = calloc (str_len, 1);
  /src/crypto/external/apache2/openssl/dist/test/
cmactest.c 155 size_t str_len = strlen((char *)test[case_idx].data); local
156 size_t fill_len = test[case_idx].data_len - str_len;
157 size_t fill_idx = str_len;
159 if (fill_len > str_len) {
160 memcpy(&test[case_idx].data[fill_idx], test[case_idx].data, str_len);
161 fill_len -= str_len;
162 fill_idx += str_len;
cmactest.c 155 size_t str_len = strlen((char *)test[case_idx].data); local
156 size_t fill_len = test[case_idx].data_len - str_len;
157 size_t fill_idx = str_len;
159 if (fill_len > str_len) {
160 memcpy(&test[case_idx].data[fill_idx], test[case_idx].data, str_len);
161 fill_len -= str_len;
162 fill_idx += str_len;
  /src/lib/libpam/modules/pam_login_access/
login_access.c 208 size_t str_len; local
224 if ((str_len = strlen(string)) > (tok_len = strlen(tok))
225 && strcasecmp(tok, string + str_len - tok_len) == 0)
login_access.c 208 size_t str_len; local
224 if ((str_len = strlen(string)) > (tok_len = strlen(tok))
225 && strcasecmp(tok, string + str_len - tok_len) == 0)
  /src/usr.bin/make/
str.c 123 size_t str_len; local
137 str_len = strlen(str);
138 words_buf = bmake_malloc(str_len + 1);
140 words_cap = str_len / 5 > 50 ? str_len / 5 : 50;
str.c 123 size_t str_len; local
137 str_len = strlen(str);
138 words_buf = bmake_malloc(str_len + 1);
140 words_cap = str_len / 5 > 50 ? str_len / 5 : 50;
  /src/crypto/external/cpl/trousers/dist/src/tspi/daa/big_integer/
bi.c 64 int str_len = strlen( strings); local
70 *len = ( str_len >> 1);
73 printf("[retrieve_byte_array] strlen=%d len=%d\n", str_len, *len);
80 if( (str_len & 1) ==1) {
91 while( index_str < str_len) {
bi.c 64 int str_len = strlen( strings); local
70 *len = ( str_len >> 1);
73 printf("[retrieve_byte_array] strlen=%d len=%d\n", str_len, *len);
80 if( (str_len & 1) ==1) {
91 while( index_str < str_len) {
  /src/external/mit/libuv/dist/src/win/
fs-event.c 400 size_t str_len; local
405 str_len = wcslen(str);
411 if (str_len != (file_name_len / sizeof(WCHAR)))
414 return _wcsnicmp(str, file_name, str_len);
fs-event.c 400 size_t str_len; local
405 str_len = wcslen(str);
411 if (str_len != (file_name_len / sizeof(WCHAR)))
414 return _wcsnicmp(str, file_name, str_len);
  /src/external/gpl3/gcc/dist/libsanitizer/sanitizer_common/
sanitizer_printf.cpp 342 uptr str_len = internal_strlen(str); local
343 buffer_.resize(prev_len + str_len + 1);
344 internal_memcpy(buffer_.data() + prev_len, str, str_len + 1);
sanitizer_printf.cpp 342 uptr str_len = internal_strlen(str); local
343 buffer_.resize(prev_len + str_len + 1);
344 internal_memcpy(buffer_.data() + prev_len, str, str_len + 1);
  /src/external/gpl3/gcc.old/dist/include/
btf.h 49 uint32_t str_len; /* Length of string section, in bytes. */ member in struct:btf_header

Completed in 39 milliseconds

1 2 3 4