Home
last modified time | relevance | path

Searched refs:strp (Results 1 – 18 of 18) sorted by relevance

/external/chromium_org/third_party/yasm/source/patched-yasm/libyasm/
Dgenmodule.c52 char *strp; in main() local
97 strp = &str[len-1]; in main()
98 while (len > 0 && isspace(*strp)) { in main()
99 *strp-- = '\0'; in main()
104 strp = str; in main()
107 while (isspace(*strp)) in main()
108 strp++; in main()
111 if (*strp == '#') in main()
119 if (isam && strncmp(strp, "include", 7) == 0 && isspace(strp[7])) { in main()
120 strp += 7; in main()
[all …]
/external/chromium_org/third_party/yasm/source/patched-yasm/tools/genmacro/
Dgenmacro.c40 char *strp; in main() local
80 strp = str; in main()
83 charp = strp; in main()
100 while (*strp == ' ' || *strp == '\t') in main()
101 strp++; in main()
102 len = strlen(strp); in main()
103 while (len > 0 && (strp[len-1] == ' ' || strp[len-1] == '\t' || in main()
104 strp[len-1] == '\n')) { in main()
105 strp[len-1] = '\0'; in main()
115 while (*strp != '\0') { in main()
[all …]
/external/chromium_org/third_party/yasm/source/patched-yasm/
Dgenstring.c40 char *strp; in main() local
72 strp = str; in main()
75 len = strlen(strp); in main()
76 while (len > 0 && (strp[len-1] == ' ' || strp[len-1] == '\t' || in main()
77 strp[len-1] == '\n')) { in main()
78 strp[len-1] = '\0'; in main()
84 while (*strp != '\0') { in main()
85 if (*strp == '\\' || *strp == '"') in main()
87 fputc(*strp, out); in main()
88 strp++; in main()
/external/icu/icu4c/source/tools/tzcode/
Dlocaltime.c142 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) in getzname() argument
620 register const char * strp; in getzname()
624 while ((c = *strp) != '\0' && !is_digit(c) && c != ',' && c != '-' &&
626 ++strp;
[all …]
/external/chromium_org/third_party/icu/source/tools/tzcode/
Dlocaltime.c142 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) in getzname() argument
620 register const char * strp; in getzname()
624 while ((c = *strp) != '\0' && !is_digit(c) && c != ',' && c != '-' &&
626 ++strp;
[all …]
/external/elfutils/0.153/libdw/
Ddwarf_macro_param2.c59 dwarf_macro_param2 (Dwarf_Macro *macro, Dwarf_Word *paramp, const char **strp) in dwarf_macro_param2() argument
66 if (strp != NULL) in dwarf_macro_param2()
67 *strp = macro->param2.s; in dwarf_macro_param2()
Dlibdw.h783 const char **strp);
/external/libcxx/include/support/ibm/
Dxlocale.h303 int vasprintf(char **strp, const char *fmt, va_list ap) in vasprintf() argument
307 if ((*strp = (char *)malloc(buff_size)) == NULL) in vasprintf()
311 if ((str_size = vsnprintf(*strp, buff_size, fmt, ap)) >= buff_size) in vasprintf()
313 if ((*strp = (char *)realloc(*strp, str_size + 1)) == NULL) in vasprintf()
317 str_size = vsnprintf(*strp, str_size + 1, fmt, ap); in vasprintf()
/external/google-diff-match-patch/name/fraser/neil/plaintext/
Ddiff_match_patch_test.java683 String strp = "@@ -21,18 +22,17 @@\n jump\n-s\n+ed\n over \n-the\n+a\n %0Alaz\n"; in testPatchObj() local
684 assertEquals("Patch: toString.", strp, p.toString()); in testPatchObj()
690 String strp = "@@ -21,18 +22,17 @@\n jump\n-s\n+ed\n over \n-the\n+a\n %0Alaz\n"; in testPatchFromText() local
691 assertEquals("patch_fromText: #1.", strp, dmp.patch_fromText(strp).get(0).toString()); in testPatchFromText()
709 String strp = "@@ -21,18 +22,17 @@\n jump\n-s\n+ed\n over \n-the\n+a\n laz\n"; in testPatchToText() local
711 patches = dmp.patch_fromText(strp); in testPatchToText()
712 assertEquals("patch_toText: Single", strp, dmp.patch_toText(patches)); in testPatchToText()
714 strp = "@@ -1,9 +1,9 @@\n-f\n+F\n oo+fooba\n@@ -7,9 +7,9 @@\n obar\n-,\n+.\n tes\n"; in testPatchToText()
715 patches = dmp.patch_fromText(strp); in testPatchToText()
716 assertEquals("patch_toText: Dual", strp, dmp.patch_toText(patches)); in testPatchToText()
/external/valgrind/main/coregrind/
Dm_redir.c803 const HChar** strp; in generate_and_add_actives() local
831 for (strp = sp->mandatory; *strp; strp++) in generate_and_add_actives()
833 "%s%s\n", v, *strp); in generate_and_add_actives()
/external/libselinux/src/
Dandroid.c1420 char *strp; in selinux_log_callback() local
1435 if (vasprintf(&strp, fmt, ap) != -1) { in selinux_log_callback()
1436 LOG_PRI(priority, "SELinux", "%s", strp); in selinux_log_callback()
1437 LOG_EVENT_STRING(AUDITD_LOG_TAG, strp); in selinux_log_callback()
1438 free(strp); in selinux_log_callback()
/external/qemu/audio/
Daudio.c509 const char **strp = opt->valp; in audio_print_options() local
512 *strp ? *strp : "(not set)"); in audio_print_options()
592 const char **strp = opt->valp; in audio_process_options() local
593 *strp = audio_get_conf_str (optname, *strp, &def); in audio_process_options()
/external/libedit/src/
Dreadline.c1603 const char *strp; in history_search() local
1611 if ((strp = strstr(ev.str, str)) != NULL) in history_search()
1612 return (int)(strp - ev.str); in history_search()
/external/elfutils/elfutils/
Dlibdw.h783 const char **strp);
/external/mksh/src/
Dlex.c1659 arraysub(char **strp) in arraysub() argument
1679 *strp = Xclose(ws, wp); in arraysub()
/external/svox/pico/lib/
Dpicopr.c865 picokpr_VarStrPtr strp; in pr_addContext() local
890 strp = picokpr_getVarStrPtr(net, picokpr_getProdNameOfs(net, i)); in pr_addContext()
892 while ((i < lprodarrlen) && !(pr_strEqual(prodNamePtr, strp))) { in pr_addContext()
895 strp = picokpr_getVarStrPtr(net, picokpr_getProdNameOfs(net, i)); in pr_addContext()
2850 picoos_uchar * strp; in pr_calcPathCost() local
2882 strp = picokpr_getVarStrPtr(path->rele[li].rnetwork, path->rele[li].rprodname); in pr_calcPathCost()
2884 picoos_strcat(str, strp); in pr_calcPathCost()
/external/compiler-rt/lib/sanitizer_common/
Dsanitizer_common_interceptors.inc881 #define VASPRINTF_INTERCEPTOR_IMPL(vname, strp, ...) \
883 VPRINTF_INTERCEPTOR_ENTER(vname, strp, __VA_ARGS__) \
884 COMMON_INTERCEPTOR_WRITE_RANGE(ctx, strp, sizeof(char *)); \
888 int res = REAL(vname)(strp, __VA_ARGS__); \
890 COMMON_INTERCEPTOR_WRITE_RANGE(ctx, *strp, res + 1); \
910 INTERCEPTOR(int, vasprintf, char **strp, const char *format, va_list ap)
911 VASPRINTF_INTERCEPTOR_IMPL(vasprintf, strp, format, ap)
944 INTERCEPTOR(int, asprintf, char **strp, const char *format, ...)
945 FORMAT_INTERCEPTOR_IMPL(asprintf, vasprintf, strp, format)
/external/javasqlite/src/main/native/
Dsqlite_jni.c296 freep(char **strp) in freep() argument
298 if (strp && *strp) { in freep()
299 free(*strp); in freep()
300 *strp = 0; in freep()