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
97 n = strtol(argv[3], &nptr, 0);
98 m = strtol(nptr + 1, NULL, 0);
99 is_range = (*nptr == '-');
100 if (!n || !m || (*nptr != '-' && *nptr != '/'))
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/examples/
decode_with_drops.c 85 char *nptr = NULL; local
99 n = strtol(argv[3], &nptr, 0);
100 m = strtol(nptr + 1, NULL, 0);
101 is_range = (*nptr == '-');
102 if (!n || !m || (*nptr != '-' && *nptr != '/'))
decode_with_partial_drops.c 215 char *nptr; local
219 n = strtol(argv[arg_num], &nptr, 0);
220 mode = (*nptr == '\0' || *nptr == ',') ? 2 : (*nptr == '-') ? 1 : 0;
222 m = strtol(nptr+1, NULL, 0);
223 if((!n && !m) || (*nptr != '-' && *nptr != '/' &&
224 *nptr != '\0' && *nptr != ',')
    [all...]
  /toolchain/binutils/binutils-2.25/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/vulkan-validation-layers/loader/
cJSON.c 1272 cJSON *newitem, *cptr, *nptr = 0, *newchild; local
    [all...]
  /ndk/sources/host-tools/make-3.81/
variable.c 389 char *nptr;
393 nptr = nvalue;
399 *nptr++ = '$';
400 *nptr++ = '$';
404 *nptr++ = *sptr;
409 *nptr = '\0';
385 char *nptr; local
    [all...]
  /external/pcre/dist/
pcre_dfa_exec.c 1430 const pcre_uchar *nptr = ptr + clen; local
1691 const pcre_uchar *nptr = ptr + clen; local
1963 const pcre_uchar *nptr = ptr + clen; local
2165 const pcre_uchar *nptr = ptr + clen; local
    [all...]

Completed in 813 milliseconds