HomeSort by relevance Sort by last modified time
    Searched refs:endp (Results 201 - 225 of 275) sorted by null

1 2 3 4 5 6 7 891011

  /external/syslinux/com32/libutil/
sha512crypt.c 356 char *endp; local
357 unsigned long int srounds = strtoul(num, &endp, 10);
358 if (*endp == '$') {
359 salt = endp + 1;
  /system/extras/simpleperf/
environment.cpp 96 char* endp; local
100 while ((cpu = static_cast<int>(strtol(p, &endp, 10))) != 0 || endp != p) {
109 p = endp;
  /toolchain/binutils/binutils-2.25/ld/testsuite/ld-ia64/
tlspic1.s 114 .endp fn1#
undefined.s 45 .endp function#
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/EdkIIGlueLib/Library/BaseLib/Ipf/
setjmp.s 109 .endp SetJump
  /external/bison/lib/
stdlib.in.h 803 /* Parse a double from STRING, updating ENDP if appropriate. */
808 _GL_FUNCDECL_RPL (strtod, double, (const char *str, char **endp)
810 _GL_CXXALIAS_RPL (strtod, double, (const char *str, char **endp));
813 _GL_FUNCDECL_SYS (strtod, double, (const char *str, char **endp)
816 _GL_CXXALIAS_SYS (strtod, double, (const char *str, char **endp));
  /external/tcpdump/
print-resp.c 457 resp_get_length(netdissect_options *ndo, register const u_char *bp, int len, const u_char **endp)
524 *endp = bp;
  /external/icu/icu4c/source/test/perf/collperf/
collperf.cpp 597 char *endp; local
598 int tmp = strtol(options[i].value, &endp, 0);
599 if (endp == options[i].value) {
649 char *endp; local
650 int tmp = strtol(options[l].value, &endp, 0);
651 if (endp == options[l].value) {
  /external/openssh/
misc.c 311 char *endp; local
321 secs = strtol(p, &endp, 10);
322 if (p == endp ||
327 switch (*endp++) {
329 endp--;
361 p = endp;
  /external/wpa_supplicant_8/wpa_supplicant/
ctrl_iface_unix.c 497 char *endp; local
561 gid = strtol(gid_str, &endp, 10);
562 if (*gid_str == '\0' || *endp != '\0') {
1219 char *endp; local
1229 gid = strtol(gid_str, &endp, 10);
1230 if (*gid_str == '\0' || *endp != '\0') {
    [all...]
  /prebuilts/tools/common/m2/repository/org/eclipse/jetty/jetty-websocket/8.1.14.v20131031/
jetty-websocket-8.1.14.v20131031.jar 
  /external/ppp/pppd/
sys-linux.c 1972 char *endp; local
    [all...]
  /device/linaro/bootloader/edk2/StdLib/LibC/Stdio/
vfwprintf.c 266 __ultoa(u_long val, CHAR_T *endp, int base, int octzero, const char *xdigs,
269 CHAR_T *cp = endp;
343 __ujtoa(uintmax_t val, CHAR_T *endp, int base, int octzero,
346 CHAR_T *cp = endp;
353 return (__ultoa((u_long)val, endp, base, octzero, xdigs,
    [all...]
  /external/elfutils/libdwfl/
core-file.c 95 char *endp; local
96 size = strtoll (h.ar_size, &endp, 10);
97 if (unlikely (endp == h.ar_size)
  /external/elfutils/src/
objdump.c 199 char *endp; local
200 newp->scnndx = strtoul (arg, &endp, 0);
201 if (*endp == 0)
  /external/icu/icu4c/source/test/perf/ubrkperf/
ubrkperfold.cpp 263 char *endp; local
264 i = strtol(argv[argNum], &endp, 0);
265 if (endp == argv[argNum]) {
  /external/mesa3d/src/gallium/drivers/radeonsi/
si_debug.c 71 char *endp; local
72 i = strtoul(p, &endp, 0);
74 p = endp;
  /system/core/liblog/
event_tag_map.cpp 354 const char* endp = cp + len; local
357 if (!len || (*(endp - 1) != '\n')) {
371 while (cp < endp) {
  /system/update_engine/
p2p_manager.cc 661 char* endp = nullptr; local
662 long long int val = strtoll(ea_value, &endp, 0); // NOLINT(runtime/int)
663 if (*endp != '\0') {
  /external/elfutils/lib/
md5.c 291 const md5_uint32 *endp = words + nwords; local
306 while (words < endp)
  /external/elfutils/libdw/
dwarf_begin_elf.c 206 result->fake_loc_cu->endp
  /external/elfutils/libelf/
elf_begin.c 875 char *endp; local
878 endp = (char *) memccpy (elf->state.ar.ar_name, ar_hdr->ar_name,
880 if (endp != NULL)
881 endp[-1] = '\0';
    [all...]
  /external/libunwind/src/ia64/
getcontext.S 173 .endp _Uia64_getcontext
  /external/syslinux/gnu-efi/gnu-efi-3.0/gnuefi/
reloc_ia64.S 221 .endp _relocate
  /external/toybox/toys/pending/
tar.c 500 char *endp, inp[len+1]; //1 for NUL termination local
504 val = strtol(inp, &endp, 8);
505 if (*endp && *endp != ' ') error_exit("invalid param");

Completed in 710 milliseconds

1 2 3 4 5 6 7 891011