HomeSort by relevance Sort by last modified time
    Searched refs:strp (Results 1 - 18 of 18) sorted by null

  /external/chromium_org/third_party/yasm/source/patched-yasm/libyasm/
genmodule.c 52 char *strp; local
97 strp = &str[len-1];
98 while (len > 0 && isspace(*strp)) {
99 *strp-- = '\0';
104 strp = str;
107 while (isspace(*strp))
108 strp++;
111 if (*strp == '#')
119 if (isam && strncmp(strp, "include", 7) == 0 && isspace(strp[7]))
    [all...]
  /external/chromium_org/third_party/yasm/source/patched-yasm/tools/genmacro/
genmacro.c 40 char *strp; local
80 strp = str;
83 charp = strp;
100 while (*strp == ' ' || *strp == '\t')
101 strp++;
102 len = strlen(strp);
103 while (len > 0 && (strp[len-1] == ' ' || strp[len-1] == '\t' ||
104 strp[len-1] == '\n'))
    [all...]
  /external/chromium_org/third_party/yasm/source/patched-yasm/
genstring.c 40 char *strp; local
72 strp = str;
75 len = strlen(strp);
76 while (len > 0 && (strp[len-1] == ' ' || strp[len-1] == '\t' ||
77 strp[len-1] == '\n')) {
78 strp[len-1] = '\0';
84 while (*strp != '\0') {
85 if (*strp == '\\' || *strp == '"'
    [all...]
  /external/elfutils/libdw/
dwarf_macro_param2.c 59 dwarf_macro_param2 (Dwarf_Macro *macro, Dwarf_Word *paramp, const char **strp)
66 if (strp != NULL)
67 *strp = macro->param2.s;
libdw.h 626 const char **strp);
  /external/chromium_org/third_party/icu/source/tools/tzcode/
localtime.c 142 static const char * getzname(const char * strp);
143 static const char * getqzname(const char * strp, const int delim);
144 static const char * getnum(const char * strp, int * nump, int min,
146 static const char * getsecs(const char * strp, long * secsp);
147 static const char * getoffset(const char * strp, long * offsetp);
148 static const char * getrule(const char * strp, struct rule * rulep);
619 getzname(strp)
620 register const char * strp;
624 while ((c = *strp) != '\0' && !is_digit(c) && c != ',' && c != '-' &&
626 ++strp;
    [all...]
  /external/icu4c/tools/tzcode/
localtime.c 142 static const char * getzname(const char * strp);
143 static const char * getqzname(const char * strp, const int delim);
144 static const char * getnum(const char * strp, int * nump, int min,
146 static const char * getsecs(const char * strp, long * secsp);
147 static const char * getoffset(const char * strp, long * offsetp);
148 static const char * getrule(const char * strp, struct rule * rulep);
619 getzname(strp)
620 register const char * strp;
624 while ((c = *strp) != '\0' && !is_digit(c) && c != ',' && c != '-' &&
626 ++strp;
    [all...]
  /bionic/libc/tzcode/
localtime.c 153 static const char * getzname(const char * strp) ATTRIBUTE_PURE;
154 static const char * getqzname(const char * strp, const int delim)
156 static const char * getnum(const char * strp, int * nump, int min,
158 static const char * getsecs(const char * strp, int_fast32_t * secsp);
159 static const char * getoffset(const char * strp, int_fast32_t * offsetp);
160 static const char * getrule(const char * strp, struct rule * rulep);
656 getzname(register const char * strp)
660 while ((c = *strp) != '\0' && !is_digit(c) && c != ',' && c != '-' &&
662 ++strp;
663 return strp;
    [all...]
  /ndk/sources/android/support/src/
locale_support.c 51 int vasprintf_l(char** strp, locale_t l, const char* fmt, va_list args) {
53 return vasprintf(strp, fmt, args);
56 int asprintf_l(char** strp, locale_t locale, const char* fmt, ...) {
59 int result = vasprintf_l(strp, locale, fmt, args);
  /external/linux-tools-perf/util/
parse-events.c 446 const char **strp)
469 *strp += strlen(sys_name) + evt_length + 1; /* + 1 for the ':' */
526 parse_tracepoint_event(const struct option *opt, const char **strp,
537 evt_name = strchr(*strp, ':');
541 sys_length = evt_name - *strp;
545 strncpy(sys_name, *strp, sys_length);
565 *strp += strlen(sys_name) + evt_length + 1; /* 1 == the ':' */
570 evt_length, attr, strp);
575 parse_breakpoint_type(const char *type, const char **strp,
601 *strp = type + i
    [all...]
  /system/core/toolbox/
ps.c 16 static char *nexttoksep(char **strp, char *sep)
18 char *p = strsep(strp,sep);
21 static char *nexttok(char **strp)
23 return nexttoksep(strp, " ");
  /external/google-diff-match-patch/name/fraser/neil/plaintext/
diff_match_patch_test.java 683 String strp = "@@ -21,18 +22,17 @@\\n jump\\n-s\\n+ed\\n over \\n-the\\n+a\\n %0Alaz\\n"; local
690 String strp = "@@ -21,18 +22,17 @@\\n jump\\n-s\\n+ed\\n over \\n-the\\n+a\\n %0Alaz\\n"; local
709 String strp = "@@ -21,18 +22,17 @@\\n jump\\n-s\\n+ed\\n over \\n-the\\n+a\\n laz\\n"; local
    [all...]
  /external/compiler-rt/lib/msan/
msan_interceptors.cc 318 INTERCEPTOR(int, vasprintf, char **strp, const char *format, va_list ap) {
320 int res = REAL(vasprintf)(strp, format, ap);
322 __msan_unpoison(strp, sizeof(*strp));
323 __msan_unpoison(*strp, res + 1);
328 INTERCEPTOR(int, asprintf, char **strp, const char *format, ...) { // NOLINT
332 int res = vasprintf(strp, format, ap); // NOLINT
    [all...]
  /external/valgrind/main/coregrind/
m_redir.c 803 const HChar** strp; local
831 for (strp = sp->mandatory; *strp; strp++)
833 "%s%s\n", v, *strp);
    [all...]
  /external/qemu/audio/
audio.c 509 const char **strp = opt->valp; local
512 *strp ? *strp : "(not set)");
592 const char **strp = opt->valp; local
593 *strp = audio_get_conf_str (optname, *strp, &def);
    [all...]
  /external/mksh/src/
lex.c     [all...]
  /external/svox/pico/lib/
picopr.c 865 picokpr_VarStrPtr strp; local
890 strp = picokpr_getVarStrPtr(net, picokpr_getProdNameOfs(net, i));
892 while ((i < lprodarrlen) && !(pr_strEqual(prodNamePtr, strp))) {
895 strp = picokpr_getVarStrPtr(net, picokpr_getProdNameOfs(net, i));
2850 picoos_uchar * strp; local
    [all...]
  /external/javasqlite/src/main/native/
sqlite_jni.c 296 freep(char **strp)
298 if (strp && *strp) {
299 free(*strp);
300 *strp = 0;
    [all...]

Completed in 3279 milliseconds