HomeSort by relevance Sort by last modified time
    Searched refs:endp (Results 51 - 75 of 203) sorted by null

1 23 4 5 6 7 8 9

  /external/elfutils/tests/
addrscopes.c 169 char *endp; local
170 uintmax_t addr = strtoumax (buf, &endp, 0);
171 if (endp != buf)
183 char *endp; local
184 uintmax_t addr = strtoumax (argv[remaining], &endp, 0);
185 if (endp != argv[remaining])
addrcfi.c 206 char *endp; local
207 uintmax_t addr = strtoumax (buf, &endp, 0);
208 if (endp != buf)
220 char *endp; local
221 uintmax_t addr = strtoumax (argv[remaining], &endp, 0);
222 if (endp != argv[remaining])
  /external/libunwind/src/ia64/
setjmp.S 47 .endp _setjmp
  /toolchain/binutils/binutils-2.25/ld/testsuite/ld-ia64/
local1.s 21 .endp hidden#
error1.s 30 .endp _start#
  /toolchain/binutils/binutils-2.25/ld/testsuite/ld-tic6x/
unwind-1.s 13 .endp
  /external/curl/src/
tool_urlglob.c 198 char *endp; local
201 lstep = strtoul(&pattern[4], &endp, 10);
202 if(errno || (*endp != ']'))
205 pattern = endp+1;
236 char *endp; local
252 min_n = strtoul(pattern, &endp, 10);
253 if(errno || (endp == pattern))
254 endp=NULL;
256 if(*endp != '-')
257 endp = NULL
    [all...]
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/ia64/
pound.s 16 .endp psym
38 .endp esym#
unwind-ok.s 5 .endp personality
82 .endp full1
131 .endp full2
170 .endp full3
179 .endp fframe
208 .endp vframe
237 .endp vframesp
266 .endp psp
272 .endp simple
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/tic6x/
unwind-bad-1.l 12 [^:]*:59: Error: missing \.endp before \.cfi_startproc
  /external/elfutils/libdw/
dwarf_getmacros.c 147 const unsigned char *const endp,
153 if (readp + 3 > endp)
174 if (readp > endp)
220 if (readp >= endp)
222 get_uleb128 (e.nforms, readp, endp);
227 if (readp > endp)
270 const unsigned char *const endp,
280 ? get_table_for_offset (dbg, macoff, startp, endp, cudie)
317 const unsigned char *const endp = d->d_buf + d->d_size; local
320 startp, endp, cudie)
    [all...]
dwarf_getlocation_implicit_pointer.c 39 .endp = &empty_exprloc + 1 };
dwarf_getsrclines.c 293 uint8_t *endp = memchr (dirp, '\0', lineendp - dirp); local
294 if (endp == NULL)
297 dirp = endp + 1;
315 uint8_t *endp = memchr (linep, '\0', lineendp - linep); local
316 assert (endp != NULL);
317 dirarray[n].len = endp - linep;
318 linep = endp + 1;
348 uint8_t *endp = memchr (fname, '\0', lineendp - linep); local
349 if (endp == NULL)
351 size_t fnamelen = endp - (uint8_t *) fname
521 uint8_t *endp = memchr (linep, '\\0', lineendp - linep); local
    [all...]
dwarf_getpubnames.c 52 unsigned char *endp = readp + dbg->sectiondata[IDX_debug_pubnames]->d_size; local
54 while (readp + 14 < endp)
188 unsigned char *endp local
201 if (readp + dbg->pubnames_sets[cnt].address_len > endp)
216 readp = (unsigned char *) memchr (gl.name, '\0', endp - readp);
  /external/wpa_supplicant_8/src/fst/
fst_ctrl_iface.c 559 char *endp; local
566 if (fst_read_next_text_param(params, ifname, sizeof(ifname), &endp) ||
570 while (isspace(*endp))
571 endp++;
572 if (fst_read_peer_addr(endp, peer_addr))
821 int fst_read_next_int_param(const char *params, Boolean *valid, char **endp)
827 *endp = (char *) params;
830 ret = (int) strtol(curp, endp, 0);
831 if (!**endp || isspace(**endp))
889 char *endp; local
927 char *endp; local
    [all...]
  /external/jetty/src/java/org/eclipse/jetty/websocket/
WebSocketGeneratorD06.java 45 public WebSocketGeneratorD06(WebSocketBuffers buffers, EndPoint endp)
48 _endp=endp;
52 public WebSocketGeneratorD06(WebSocketBuffers buffers, EndPoint endp, MaskGen maskGen)
55 _endp=endp;
  /external/libunwind/tests/
ia64-test-readonly-asm.S 50 .endp test_func
ia64-dyn-asm.S 9 .endp func_add1
48 .endp func_add3
97 .endp func_vframe
  /external/elfutils/src/
ldlex.l 172 {HEX}|{OCT}|{DEC} { char *endp;
173 ldlval.num = strtoumax (yytext, &endp, 0);
174 if (*endp != '\0')
176 if (tolower (*endp) == 'k')
180 assert (tolower (*endp) == 'm');
  /external/llvm/lib/Support/
regengine.inc 77 const char *endp; /* end of string -- virtual NUL here */
135 const char *endp;
175 m->endp = stop;
185 endp = fast(m, start, stop, gf, gl);
186 if (endp == NULL) { /* a miss */
199 endp = slow(m, m->coldp, stop, gf, gl);
200 if (endp != NULL)
202 assert(m->coldp < m->endp);
220 dp = dissect(m, m->coldp, endp, gf, gl);
231 dp = backref(m, m->coldp, endp, gf, gl, (sopno)0, 0)
    [all...]
  /bionic/libc/upstream-netbsd/lib/libc/regex/
engine.c 113 const char *endp; /* end of string -- virtual NUL here */ member in struct:match
183 const char *endp; local
229 m->endp = stop;
239 endp = fast(m, start, stop, gf, gl);
240 if (endp == NULL) { /* a miss */
251 endp = slow(m, m->coldp, stop, gf, gl);
252 if (endp != NULL)
254 assert(m->coldp < m->endp);
272 dp = dissect(m, m->coldp, endp, gf, gl);
282 dp = backref(m, m->coldp, endp, gf, gl, (sopno)0)
    [all...]
  /ndk/sources/host-tools/ndk-stack/regex/
engine.c 77 char *endp; /* end of string -- virtual NUL here */ member in struct:match
131 char *endp; local
171 m->endp = (char*)stop;
181 endp = fast(m, start, stop, gf, gl);
182 if (endp == NULL) { /* a miss */
195 endp = slow(m, m->coldp, stop, gf, gl);
196 if (endp != NULL)
198 assert(m->coldp < m->endp);
216 dp = dissect(m, m->coldp, endp, gf, gl);
227 dp = backref(m, m->coldp, endp, gf, gl, (sopno)0, 0)
    [all...]
  /external/libxml2/
triostr.h 55 TRIO_STRING_PUBLIC double trio_to_double TRIO_PROTO((const char *source, char **endp));
56 TRIO_STRING_PUBLIC long trio_to_long TRIO_PROTO((const char *source, char **endp, int base));
57 TRIO_STRING_PUBLIC trio_long_double_t trio_to_long_double TRIO_PROTO((const char *source, char **endp));
80 TRIO_STRING_PUBLIC float trio_to_float TRIO_PROTO((const char *source, char **endp));
82 TRIO_STRING_PUBLIC unsigned long trio_to_unsigned_long TRIO_PROTO((const char *source, char **endp, int base));
triostr.c 948 @param endp Pointer to end of the converted string.
968 TRIO_ARGS2((source, endp),
970 char **endp)
973 return strtold(source, endp);
1085 if (endp)
1086 *endp = (char *)source;
1096 @param endp Pointer to end of the converted string.
1103 TRIO_ARGS2((source, endp),
1105 char **endp)
1108 return strtod(source, endp);
    [all...]
  /build/tools/zipalign/
ZipAlign.cpp 233 char* endp; local
281 alignment = strtol(argv[0], &endp, 10);
282 if (*endp != '\0' || alignment <= 0) {

Completed in 333 milliseconds

1 23 4 5 6 7 8 9