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

1 2

  /src/external/bsd/ntp/dist/sntp/libopts/
putshell.c 46 string_size(char const * scan, size_t nl_len) function
111 size_t out_sz = string_size(text, nl_len);
  /src/external/gpl3/binutils/dist/include/som/
lst.h 44 unsigned char string_size[4]; member in struct:som_external_lst_header
internal.h 200 unsigned int string_size; member in struct:som_lst_header
  /src/external/gpl3/binutils.old/dist/include/som/
lst.h 44 unsigned char string_size[4]; member in struct:som_external_lst_header
internal.h 200 unsigned int string_size; member in struct:som_lst_header
  /src/external/gpl3/gdb/dist/include/som/
lst.h 44 unsigned char string_size[4]; member in struct:som_external_lst_header
internal.h 200 unsigned int string_size; member in struct:som_lst_header
  /src/external/gpl3/gdb.old/dist/include/som/
lst.h 44 unsigned char string_size[4]; member in struct:som_external_lst_header
internal.h 200 unsigned int string_size; member in struct:som_lst_header
  /src/usr.bin/gencat/
gencat.c 656 int string_size; /* total size of string pool */ local
672 string_size = 0;
679 string_size += strlen(msg->str) + 1;
686 printf("string pool size: %d\n", string_size);
694 + string_size;
  /src/external/bsd/tcpdump/dist/
util-print.c 544 size_t space_left = sizeof(buf), string_size; local
552 string_size = strlcpy(bufp, sepstr, space_left);
553 if (string_size >= space_left)
555 bufp += string_size;
556 space_left -= string_size;
559 string_size = strlcpy(bufp, lp->s, space_left);
560 if (string_size >= space_left)
562 bufp += string_size;
563 space_left -= string_size;
  /src/common/lib/libppath/
ppath.c 884 const size_t string_size = prop_string_size(v); local
887 char *cp = ppath_alloc(string_size + 1);
889 (void)prop_string_copy_value(v, cp, string_size + 1);
  /src/external/gpl3/gdb/dist/readline/readline/
text.c 719 int string_size; local
829 string_size = count * incoming_length;
830 string = (char *)xmalloc (1 + string_size);
833 while (i < string_size)
867 string_size = incoming_length * TEXT_COUNT_MAX;
868 string = (char *)xmalloc (1 + string_size);
871 while (i < string_size)
  /src/external/gpl3/gdb.old/dist/readline/readline/
text.c 713 int string_size; local
802 string_size = count * incoming_length;
803 string = (char *)xmalloc (1 + string_size);
806 while (i < string_size)
836 string_size = incoming_length * TEXT_COUNT_MAX;
837 string = (char *)xmalloc (1 + string_size);
840 while (i < string_size)
  /src/external/gpl3/binutils/dist/bfd/
archive.c 993 size_t amt, string_size;
1025 string_size = parsed_size - amt;
1042 if (nameoff >= string_size)
989 size_t amt, string_size; local
  /src/external/gpl3/binutils/dist/include/coff/
xcoff.h 440 size_t string_size; member in struct:xcoff_loader_info
  /src/external/gpl3/binutils.old/dist/bfd/
archive.c 996 size_t amt, string_size;
1028 string_size = parsed_size - amt;
1045 if (nameoff >= string_size)
992 size_t amt, string_size; local
  /src/external/gpl3/binutils.old/dist/include/coff/
xcoff.h 440 size_t string_size; member in struct:xcoff_loader_info
  /src/external/gpl3/gcc.old/dist/gcc/
lto-streamer.h 404 int32_t string_size; member in struct:lto_simple_header_with_strings
  /src/external/gpl3/gcc/dist/gcc/
lto-streamer.h 406 int32_t string_size; member in struct:lto_simple_header_with_strings
  /src/external/gpl3/gdb/dist/bfd/
archive.c 998 size_t amt, string_size;
1030 string_size = parsed_size - amt;
1047 if (nameoff >= string_size)
994 size_t amt, string_size; local
  /src/external/gpl3/gdb/dist/include/coff/
xcoff.h 440 size_t string_size; member in struct:xcoff_loader_info
  /src/external/gpl3/gdb.old/dist/bfd/
archive.c 1005 size_t amt, string_size;
1037 string_size = parsed_size - amt;
1054 if (nameoff >= string_size)
1001 size_t amt, string_size; local
  /src/external/gpl3/gdb.old/dist/include/coff/
xcoff.h 440 size_t string_size; member in struct:xcoff_loader_info
  /src/external/mpl/bind/dist/bin/dig/
dig.c 1173 size_t string_size = 0, max_string_bytes = 0; local
1177 string_size = port_len + 1;
1178 max_string_bytes = string_size > sizeof(buf) ? sizeof(buf)
1179 : string_size;
1194 size_t string_size = 0, max_string_bytes = 0; local
1199 string_size = addr_len + 1;
1200 max_string_bytes = string_size > sizeof(buf) ? sizeof(buf)
1201 : string_size;

Completed in 73 milliseconds

1 2