Searched defs:string (Results 1 - 25 of 1253) sorted by last modified time

1234567891011>>

/external/zlib/src/contrib/untgz/
H A Duntgz.c11 #include <string.h>
188 /* convert time_t to string */
290 int ExprMatch (char *string,char *expr) argument
298 if (*string != '\\' && *string != '/')
300 string ++; expr++;
306 while (*++string != *expr)
307 if (*string == 0)
313 if (*string != *expr)
317 string
[all...]
/external/vixl/src/a64/
H A Ddisasm-a64.cc1267 void Disassembler::Substitute(Instruction* instr, const char* string) { argument
1268 char chr = *string++;
1271 string += SubstituteField(instr, string);
1275 chr = *string++;
/external/valgrind/main/coregrind/m_debuginfo/
H A Dreadstabs.c148 HChar *string; local
157 /* handle continued string stabs */
167 string = stabstr + qstringidx;
168 qlen = VG_(strlen)(string);
170 while (string
172 && (qcontinuing || string[qlen-1] == '\\')) {
178 qcontinuing = string[qlen-1] == '\\';
181 while (string[qlen-1] == '\\' && qlen > 0)
184 TRACE_SYMTAB("cont: found extension string: \"%s\" "
186 string, qle
[all...]
/external/valgrind/main/coregrind/m_demangle/
H A Dcplus-dem.c54 #include <string.h>
93 one set at compile time, we maintain a string containing all the
95 is in that string. CPLUS_MARKER is usually '$' on systems where the
123 typedef struct string /* Beware: these aren't required to be */ struct
125 char *b; /* pointer to start of string */
128 } string; typedef in typeref:struct:string
155 string* previous_argument; /* The last function argument demangled. */
349 static char *mop_up (struct work_stuff *, string *, int);
357 demangle_method_args (struct work_stuff *, const char **, string *);
365 const char **, string *);
[all...]
H A Ddemangle.h95 /* Define string names for the various demangling styles. */
156 return a string allocated by malloc on success, NULL on error. */
205 tree representation into a demangled string. Here we define an
208 demangled string. This can be used to canonicalize user input into
219 /* A name, with a length and a pointer to a string. */
330 NULL, or a string (represented as DEMANGLE_COMPONENT_NAME), or an
381 to the mangled string, but since negative numbers are mangled
383 number which involves neither modifying the mangled string nor
502 /* Standard substitution string. */
503 const char* string; member in struct:demangle_component::__anon32526::__anon32534
[all...]
/external/valgrind/main/coregrind/
H A Dm_errormgr.c142 const HChar* string; // Used frequently member in struct:_Error
164 return err->string;
214 Bool name_is_simple_str; /* True if name is a string without
242 HChar* string; // String -- use is optional. NULL by default. member in struct:_Supp
253 return su->string;
267 void VG_(set_supp_string) ( Supp* su, HChar* string )
269 su->string = string;
657 err->string = s;
1174 p->name is allocated and set to the string
[all...]
/external/valgrind/main/coregrind/m_gdbserver/
H A Dsignals.c41 const char *string; member in struct:__anon32546
215 with the string, so no need to be verbose (very old comment). */
H A Dutils.c29 void sr_perror (SysRes sr, const char *string,...) argument
36 va_start (args, string);
37 VG_(vmessage) ( Vg_UserMsg, string, args );
42 STRING is the error message, used as a fprintf string,
45 void error (const char *string,...) argument
48 va_start (args, string);
49 VG_(vmessage) ( Vg_UserMsg, string, args );
59 void fatal (const char *string,...) argument
62 va_start (args, string);
63 VG_(vmessage) ( Vg_UserMsg, string, arg
69 warning(const char *string,...) argument
[all...]
/external/valgrind/main/memcheck/tests/vbit-test/
H A Dutil.c19 panic(const char *string) argument
21 fprintf(stderr, "*** OOPS: %s\n", string);
/external/valgrind/main/mpi/
H A Dlibmpiwrap.c95 #include <string.h> /* strstr */
2230 int WRAPPER_FOR(PMPI_Error_string)( int errorcode, char* string, argument
2238 check_mem_is_addressable_untyped(string, MPI_MAX_ERROR_STRING);
2240 CALL_FN_W_WWW(err, fn, errorcode,string,resultlen);
/external/tcpdump/
H A Dprint-radius.c56 #include <string.h>
441 /* Print an attribute string */
732 char string[26]; local
743 strlcpy(string, ctime(&attr_time), sizeof(string));
745 string[24] = '\0';
746 printf("%.24s", string);
H A Dprint-zephyr.c35 #include <string.h>
120 str_to_lower(char *string) argument
122 strncpy(z_buf, string, sizeof(z_buf));
125 string = z_buf;
126 while (*string) {
127 *string = tolower((unsigned char)(*string));
128 string++;
/external/tinyalsa/
H A Dmixer.c31 #include <string.h>
473 int mixer_ctl_set_enum_by_string(struct mixer_ctl *ctl, const char *string) argument
484 if (!strcmp(string, ctl->ename[i])) {
H A Dpcm.c33 #include <string.h>
54 /* Logs information into a string; follows snprintf() in that
56 * into string, characters are still counted into offset. */
57 #define STRLOG(string, offset, size, ...) \
59 temp = snprintf(string + clipoffset, size - clipoffset, __VA_ARGS__); \
748 static int pcm_mask_to_string(struct pcm_mask *m, char *string, unsigned int size, argument
758 STRLOG(string, offset, size, "%12s:\t%#08x\n", mask_name, m->bits[0]);
761 STRLOG(string, offset, size, "%9s[%d]:\t%#08x\n",
767 STRLOG(string, offset, size, "%12s \t%s\n", "", bit_array_name[i]);
773 int pcm_params_to_string(struct pcm_params *params, char *string, unsigne argument
[all...]
H A Dtinymix.c33 #include <string.h>
108 const char *string; local
113 string = mixer_ctl_get_enum_string(ctl, i);
116 string);
118 printf(" %-s", string);
/external/srtp/test/
H A Dgetopt_s.c56 getopt_check_character(char c, const char *string) { argument
59 while (*string != 0) {
63 if (*string++ == c) {
64 if (*string == ':') {
81 char *string; local
83 /* move 'string' on to next argument */
85 string = argv[optind_s];
87 if (string == NULL)
88 return '?'; /* NULL argument string */
90 if (string[
[all...]
H A Drtpw.c62 #include <string.h> /* for strncpy() */
339 * read key from hexadecimal on command line into an octet string
343 /* check that hex string is the right length */
494 usage(char *string) { argument
506 string, string);
/external/stlport/stlport/stl/
H A D_string_fwd.h40 typedef basic_string<char, char_traits<char>, allocator<char> > string; typedef
48 //This function limits header dependency between exception and string
50 const char* _STLP_CALL __get_c_string(const string& __str);
H A Dmsl_string.h22 # define string __msl_string macro
33 # include_next <string>
35 # include _STLP_NATIVE_HEADER(string)
43 # undef string macro
/external/stlport/test/unit/
H A Dcopy_test.cpp42 char string[23] = "A string to be copied."; local
44 copy(string, string + 23, result);
45 CPPUNIT_ASSERT(!strncmp(string, result, 23));
/external/strace/
H A Dvsprintf.c251 FORMAT_TYPE_NONE, /* Just a string part */
317 /* generate full string in tmp[], in reverse order */
403 char *string(char *buf, char *end, const char *s, struct printf_spec spec) function
466 * @fmt: the format string
509 /* Return the current non-format string */
632 * vsnprintf - Format a string and place it in a buffer
635 * @fmt: The format string to use
636 * @args: Arguments for the format string
644 * string is truncated.
708 str = string(st
[all...]
/external/svox/pico/lib/
H A Dpicoos.c1152 /* read a given string 'str' from file. If no match was found, the read position is advanced until and including the first
2254 /* 'stringlen' is the part of input string to be considered,
2258 void picoos_get_sep_part_str(picoos_char string[], argument
2272 while ((((*ind) < stringlen) && (string[(*ind)] != sepCh)) && (string[((*ind))] != (picoos_char)NULLC)) {
2274 part[(j)] = string[(*ind)];
2283 if ((string[(*ind)] == sepCh)) {
2285 } else if (string[(*ind)] == (picoos_char)NULLC) {
H A Dpicopr.c454 /* string operations */
501 static void pr_getTermPartStr (picoos_uchar string[], picoos_int32 * ind, picoos_uchar termCh, picoos_uchar str[], picoos_bool * done) argument
508 while ((*ind < PR_MAX_DATA_LEN) && (string[*ind] != termCh) && (string[*ind] != 0)) {
510 str[j] = string[*ind];
520 *done = ((*ind < PR_MAX_DATA_LEN) && (string[*ind] == termCh));
1406 PICODBG_WARN(("cannot map phonetic string '%s'; synthesizeing text instead", lf->data));
1407 picoos_emRaiseWarning(this->common->em, PICO_ERR_OTHER,(picoos_char*)"", (picoos_char*)"cannot map phonetic string '%s'; synthesizing text instead", lf->data);
/external/srec/portable/src/
H A DLCHAR.c202 ESR_ReturnCode lstrlwr(LCHAR* string) argument
204 if (string)
206 while (*string)
208 if (LISALPHA(*string))
209 *string = (LCHAR) LTOLOWER(*string);
210 ++string;
219 ESR_ReturnCode lstrupr(LCHAR* string) argument
221 if (string)
223 while (*string)
314 litostr(int value, LCHAR *string, size_t *len, int radix) argument
343 lultostr(unsigned long value, LCHAR *string, size_t *len, int radix) argument
[all...]
H A DPANSIFileImpl.c387 ESR_ReturnCode PANSIFileFgetsImpl(PFile* self, LCHAR* string, int n, LCHAR** result) argument
394 temp = fgets(string, n, impl->value);

Completed in 1708 milliseconds

1234567891011>>