| /f-stack/freebsd/contrib/openzfs/module/os/freebsd/spl/ |
| H A D | spl_sunddi.c | 41 ddi_strtol(const char *str, char **nptr, int base, long *result) in ddi_strtol() argument 44 *result = strtol(str, nptr, base); in ddi_strtol() 49 ddi_strtoul(const char *str, char **nptr, int base, unsigned long *result) in ddi_strtoul() argument 57 *result = strtoul(str, nptr, base); in ddi_strtoul() 62 ddi_strtoull(const char *str, char **nptr, int base, unsigned long long *result) in ddi_strtoull() argument 65 *result = (unsigned long long)strtouq(str, nptr, base); in ddi_strtoull() 70 ddi_strtoll(const char *str, char **nptr, int base, long long *result) in ddi_strtoll() argument 73 *result = (long long)strtoq(str, nptr, base); in ddi_strtoll()
|
| /f-stack/tools/compat/ |
| H A D | reallocf.c | 33 void *nptr; in reallocf() local 35 nptr = realloc(ptr, size); in reallocf() 43 if (!nptr && ptr && size != 0) in reallocf() 45 return (nptr); in reallocf()
|
| /f-stack/app/redis-5.0.5/deps/lua/src/ |
| H A D | fpconv.c | 106 double fpconv_strtod(const char *nptr, char **endptr) in fpconv_strtod() argument 115 return strtod(nptr, endptr); in fpconv_strtod() 117 buflen = strtod_buffer_size(nptr); in fpconv_strtod() 120 *endptr = (char *)nptr; in fpconv_strtod() 136 memcpy(buf, nptr, buflen); in fpconv_strtod() 145 *endptr = (char *)&nptr[endbuf - buf]; in fpconv_strtod()
|
| /f-stack/freebsd/libkern/ |
| H A D | strtoul.c | 52 strtoul(const char *nptr, char **endptr, int base) in strtoul() argument 54 const char *s = nptr; in strtoul() 105 *endptr = __DECONST(char *, any ? s - 1 : nptr); in strtoul()
|
| H A D | strtouq.c | 50 strtouq(const char *nptr, char **endptr, int base) in strtouq() argument 52 const char *s = nptr; in strtouq() 107 *endptr = __DECONST(char *, any ? s - 1 : nptr); in strtouq()
|
| H A D | strtol.c | 52 strtol(const char *nptr, char **endptr, int base) in strtol() argument 54 const char *s = nptr; in strtol() 126 *endptr = __DECONST(char *, any ? s - 1 : nptr); in strtol()
|
| H A D | strtoq.c | 50 strtoq(const char *nptr, char **endptr, int base) in strtoq() argument 63 s = nptr; in strtoq() 130 *endptr = __DECONST(char *, any ? s - 1 : nptr); in strtoq()
|
| /f-stack/freebsd/contrib/dev/ath/ath_hal/ar9300/ |
| H A D | eeprom.diff | 218 nptr = -1; 223 AH9300(ah)->try_dram && nptr < 0) 228 nptr = ar9300_eeprom_restore_from_dram(ah, mptr, mdata_size); 236 AH9300(ah)->try_eeprom && nptr < 0) 253 AH9300(ah)->try_flash && nptr < 0) 265 AH9300(ah)->try_otp && nptr < 0)
|
| H A D | ar9300_eeprom.c | 172 int nptr; in ar9300_eeprom_restore_something() local 174 nptr = -1; in ar9300_eeprom_restore_something() 179 if (nptr < 0) { in ar9300_eeprom_restore_something() 186 nptr = 0; in ar9300_eeprom_restore_something() 193 if (nptr < 0) { in ar9300_eeprom_restore_something() 200 nptr = 0; in ar9300_eeprom_restore_something() 207 if (nptr < 0) { in ar9300_eeprom_restore_something() 219 return nptr; in ar9300_eeprom_restore_something() 4205 int nptr; in ar9300_eeprom_restore_internal() local 4207 nptr = -1; in ar9300_eeprom_restore_internal() [all …]
|
| /f-stack/freebsd/netinet6/ |
| H A D | ip6_mroute.c | 994 struct mf6c **nptr; in del_m6fc() local 1007 nptr = &mf6ctable[hash]; in del_m6fc() 1008 while ((rt = *nptr) != NULL) { in del_m6fc() 1016 nptr = &rt->mf6c_next; in del_m6fc() 1023 *nptr = rt->mf6c_next; in del_m6fc() 1314 struct mf6c *mfc, **nptr; in expire_upcalls() local 1321 nptr = &mf6ctable[i]; in expire_upcalls() 1322 while ((mfc = *nptr) != NULL) { in expire_upcalls() 1348 *nptr = mfc->mf6c_next; in expire_upcalls() 1351 nptr = &mfc->mf6c_next; in expire_upcalls()
|
| /f-stack/app/redis-5.0.5/deps/jemalloc/include/jemalloc/internal/ |
| H A D | malloc_io.h | 44 uintmax_t malloc_strtoumax(const char *restrict nptr, char **restrict endptr,
|
| /f-stack/app/redis-5.0.5/deps/jemalloc/src/ |
| H A D | malloc_io.c | 114 malloc_strtoumax(const char *restrict nptr, char **restrict endptr, int base) { in malloc_strtoumax() argument 120 p = nptr; in malloc_strtoumax() 226 *endptr = (char *)nptr; in malloc_strtoumax()
|
| /f-stack/freebsd/contrib/openzfs/include/sys/ |
| H A D | zfs_context.h | 691 extern int ddi_strtoul(const char *str, char **nptr, int base, 694 extern int ddi_strtoull(const char *str, char **nptr, int base,
|
| H A D | spa.h | 1124 extern uint64_t zfs_strtonum(const char *str, char **nptr);
|
| /f-stack/freebsd/contrib/openzfs/lib/libzpool/ |
| H A D | kernel.c | 778 ddi_strtoul(const char *hw_serial, char **nptr, int base, unsigned long *result) in ddi_strtoul() argument 789 ddi_strtoull(const char *str, char **nptr, int base, u_longlong_t *result) in ddi_strtoull() argument
|
| /f-stack/freebsd/contrib/openzfs/module/zfs/ |
| H A D | spa_misc.c | 1579 zfs_strtonum(const char *str, char **nptr) in zfs_strtonum() argument 1599 if (nptr) in zfs_strtonum() 1600 *nptr = (char *)str; in zfs_strtonum()
|