HomeSort by relevance Sort by last modified time
    Searched defs:nptr (Results 1 - 10 of 10) sorted by null

  /bionic/libc/upstream-netbsd/lib/libc/stdlib/
reallocarr.c 61 void *nptr; local
67 nptr = NULL;
68 memcpy(ptr, &nptr, sizeof(ptr));
85 nptr = realloc(optr, number * size);
86 if (__predict_false(nptr == NULL)) {
90 memcpy(ptr, &nptr, sizeof(ptr));
  /external/libvpx/libvpx/examples/
decode_with_drops.c 83 char *nptr = NULL; local
95 n = (int)strtol(argv[3], &nptr, 0);
96 m = (int)strtol(nptr + 1, NULL, 0);
97 is_range = (*nptr == '-');
98 if (!n || !m || (*nptr != '-' && *nptr != '/'))
  /toolchain/binutils/binutils-2.27/libiberty/testsuite/
test-strtol.c 75 const char *nptr; member in struct:test_data_t
135 res = (unsigned long) strtol (test_data[i].nptr,
139 res = strtoul (test_data[i].nptr, 0, test_data[i].base);
143 res = strtoll (test_data[i].nptr, 0, test_data[i].base);
146 res = strtoull (test_data[i].nptr, 0, test_data[i].base);
  /external/libedit/src/
filecomplete.c 157 char *nptr; local
159 nptr = el_realloc(filename, (strlen(temp) + 1) *
160 sizeof(*nptr));
161 if (nptr == NULL) {
166 filename = nptr;
170 nptr = el_realloc(dirname, (len + 1) *
171 sizeof(*nptr));
172 if (nptr == NULL) {
177 dirname = nptr;
history.c 766 char *nptr; local
768 nptr = h_realloc(ptr, max_size * sizeof(*ptr));
769 if (nptr == NULL) {
773 ptr = nptr;
822 char *nptr; local
824 nptr = h_realloc(ptr, max_size * sizeof(*ptr));
825 if (nptr == NULL) {
829 ptr = nptr;
  /external/syslinux/core/lwip/src/include/lwip/
snmp_structs.h 141 struct mib_node* const *nptr; member in struct:mib_array_node
159 struct mib_node **nptr; member in struct:mib_ram_array_node
167 struct mib_node *nptr; member in struct:mib_list_node
  /external/syslinux/core/lwip/src/core/
dns.c 571 char *query, *nptr; local
598 nptr = query;
605 *nptr = n;
  /external/vulkan-validation-layers/libs/cjson/
cJSON.c 1137 cJSON *newitem, *cptr, *nptr = 0, *newchild; local
    [all...]
  /external/pcre/dist2/src/
pcre2_dfa_match.c 1375 PCRE2_SPTR nptr = ptr + clen; local
1636 PCRE2_SPTR nptr = ptr + clen; local
1908 PCRE2_SPTR nptr = ptr + clen; local
2103 PCRE2_SPTR nptr = ptr + clen; local
    [all...]
pcre2test.c 5310 uint8_t *nptr; local
    [all...]

Completed in 250 milliseconds