Searched refs:string (Results 1 - 25 of 8373) sorted by relevance

1234567891011>>

/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/tools/perf/util/include/linux/
H A Dstring.h1 #include <string.h>
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/libiconv-1.10/srclib/
H A Dxstrdup.c1 /* xstrdup.c -- copy a string with out of memory checking
25 #include <string.h>
30 xstrdup (const char *string) argument
32 return strcpy (xmalloc (strlen (string) + 1), string);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/libiconv-1.11/srclib/
H A Dxstrdup.c1 /* xstrdup.c -- copy a string with out of memory checking
25 #include <string.h>
30 xstrdup (const char *string) argument
32 return strcpy (xmalloc (strlen (string) + 1), string);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/libunistring-0.9.3/lib/unicase/
H A Dspecial-casing.c23 #include <string.h>
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/arm/mach-bcmring/include/csp/
H A Dstring.h23 #include <linux/string.h>
25 #include <string.h>
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/gettext-0.17/gettext-tools/libgettextpo/
H A Dostream.oo.c31 ostream_write_str (ostream_t stream, const char *string) argument
33 ostream_write_mem (stream, string, strlen (string));
H A Dstrnlen.c21 #include <string.h>
27 strnlen (const char *string, size_t maxlen) argument
29 const char *end = memchr (string, '\0', maxlen);
30 return end ? (size_t) (end - string) : maxlen;
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/gettext-0.17/gnulib-local/lib/
H A Dostream.oo.c31 ostream_write_str (ostream_t stream, const char *string) argument
33 ostream_write_mem (stream, string, strlen (string));
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/gettext-0.17/gettext-tools/gnulib-lib/
H A Dostream.oo.c31 ostream_write_str (ostream_t stream, const char *string) argument
33 ostream_write_mem (stream, string, strlen (string));
H A Dstrnlen.c21 #include <string.h>
27 strnlen (const char *string, size_t maxlen) argument
29 const char *end = memchr (string, '\0', maxlen);
30 return end ? (size_t) (end - string) : maxlen;
H A Dstrnlen1.c22 #include <string.h>
26 /* This is the same as strnlen (string, maxlen - 1) + 1. */
28 strnlen1 (const char *string, size_t maxlen) argument
30 const char *end = (const char *) memchr (string, '\0', maxlen);
32 return end - string + 1;
H A Dsh-quote.h24 /* Returns the number of bytes needed for the quoted string. */
25 extern size_t shell_quote_length (const char *string);
27 /* Copies the quoted string to p and returns the incremented p.
28 There must be room for shell_quote_length (string) + 1 bytes at p. */
29 extern char * shell_quote_copy (char *p, const char *string);
31 /* Returns the freshly allocated quoted string. */
32 extern char * shell_quote (const char *string);
34 /* Returns a freshly allocated string containing all argument strings, quoted,
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/gettext-0.17/gettext-runtime/gnulib-lib/
H A Dstrnlen.c21 #include <string.h>
27 strnlen (const char *string, size_t maxlen) argument
29 const char *end = memchr (string, '\0', maxlen);
30 return end ? (size_t) (end - string) : maxlen;
H A Dstrnlen1.c22 #include <string.h>
26 /* This is the same as strnlen (string, maxlen - 1) + 1. */
28 strnlen1 (const char *string, size_t maxlen) argument
30 const char *end = (const char *) memchr (string, '\0', maxlen);
32 return end - string + 1;
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/netatalk-2.2.5/libatalk/compat/
H A Dstrdup.c11 #include <string.h>
14 char *strdup(const char *string) argument
18 if (new = (char *) malloc(strlen(string) + 1))
19 strcpy(new, string);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/gperf-3.0.4/lib/
H A Dhash.h13 extern unsigned int hashpjw (const unsigned char *string, unsigned int len);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/libunistring-0.9.3/tests/
H A Dtest-environ.c23 #include <string.h>
34 char *string; local
36 for (; (string = *remaining_variables) != NULL; remaining_variables++)
38 if (strncmp (string, "PATH=", 5) == 0)
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/gettext-0.17/gettext-tools/gnulib-tests/
H A Dtest-string.c1 /* Test of <string.h> substitute.
21 #include <string.h>
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/confuse-2.7/examples/
H A Dwincfgtest.conf2 /* string = "another string" */
7 message("This is a string passed to the message() function")
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/libantlr3c-3.2/src/
H A Dantlr3string.c2 * Implementation of the ANTLR3 string and string factory classes
42 static pANTLR3_STRING newPtr8 (pANTLR3_STRING_FACTORY factory, pANTLR3_UINT8 string, ANTLR3_UINT32 size);
43 static pANTLR3_STRING newPtr16_8 (pANTLR3_STRING_FACTORY factory, pANTLR3_UINT8 string, ANTLR3_UINT32 size);
44 static pANTLR3_STRING newPtr16_16 (pANTLR3_STRING_FACTORY factory, pANTLR3_UINT8 string, ANTLR3_UINT32 size);
45 static pANTLR3_STRING newStr8 (pANTLR3_STRING_FACTORY factory, pANTLR3_UINT8 string);
46 static pANTLR3_STRING newStr16_8 (pANTLR3_STRING_FACTORY factory, pANTLR3_UINT8 string);
47 static pANTLR3_STRING newStr16_16 (pANTLR3_STRING_FACTORY factory, pANTLR3_UINT8 string);
48 static void destroy (pANTLR3_STRING_FACTORY factory, pANTLR3_STRING string);
49 static pANTLR3_STRING printable8 (pANTLR3_STRING_FACTORY factory, pANTLR3_STRING string);
182 pANTLR3_STRING string; local
211 pANTLR3_STRING string; local
233 stringFree(pANTLR3_STRING string) argument
254 stringInit8(pANTLR3_STRING string) argument
291 stringInit16(pANTLR3_STRING string) argument
329 stringInitUTF8(pANTLR3_STRING string) argument
343 toUTF8_8(pANTLR3_STRING string) argument
354 toUTF8_16(pANTLR3_STRING string) argument
417 pANTLR3_STRING string; local
445 pANTLR3_STRING string; local
472 pANTLR3_STRING string; local
505 pANTLR3_STRING string; local
553 pANTLR3_STRING string; local
626 destroy(pANTLR3_STRING_FACTORY factory, pANTLR3_STRING string) argument
673 pANTLR3_STRING string; local
720 pANTLR3_STRING string; local
789 append8(pANTLR3_STRING string, const char * newbit) argument
810 append16_8(pANTLR3_STRING string, const char * newbit) argument
837 append16_16(pANTLR3_STRING string, const char * newbit) argument
867 set8(pANTLR3_STRING string, const char * chars) argument
888 set16_8(pANTLR3_STRING string, const char * chars) argument
913 set16_16(pANTLR3_STRING string, const char * chars) argument
944 addc8(pANTLR3_STRING string, ANTLR3_UINT32 c) argument
959 addc16(pANTLR3_STRING string, ANTLR3_UINT32 c) argument
978 addi8(pANTLR3_STRING string, ANTLR3_INT32 i) argument
987 addi16(pANTLR3_STRING string, ANTLR3_INT32 i) argument
997 inserti8(pANTLR3_STRING string, ANTLR3_UINT32 point, ANTLR3_INT32 i) argument
1005 inserti16(pANTLR3_STRING string, ANTLR3_UINT32 point, ANTLR3_INT32 i) argument
1014 insert8(pANTLR3_STRING string, ANTLR3_UINT32 point, const char * newbit) argument
1050 insert16_8(pANTLR3_STRING string, ANTLR3_UINT32 point, const char * newbit) argument
1090 insert16_16(pANTLR3_STRING string, ANTLR3_UINT32 point, const char * newbit) argument
1135 setS(pANTLR3_STRING string, pANTLR3_STRING chars) argument
1140 appendS(pANTLR3_STRING string, pANTLR3_STRING newbit) argument
1154 insertS(pANTLR3_STRING string, ANTLR3_UINT32 point, pANTLR3_STRING newbit) argument
1163 compare8(pANTLR3_STRING string, const char * compStr) argument
1173 compare16_8(pANTLR3_STRING string, const char * compStr) argument
1202 compare16_16(pANTLR3_STRING string, const char * compStr8) argument
1232 compareS(pANTLR3_STRING string, pANTLR3_STRING compStr) argument
1242 charAt8(pANTLR3_STRING string, ANTLR3_UINT32 offset) argument
1258 charAt16(pANTLR3_STRING string, ANTLR3_UINT32 offset) argument
1274 subString8(pANTLR3_STRING string, ANTLR3_UINT32 startIndex, ANTLR3_UINT32 endIndex) argument
1291 subString16(pANTLR3_STRING string, ANTLR3_UINT32 startIndex, ANTLR3_UINT32 endIndex) argument
1307 toInt32_8(struct ANTLR3_STRING_struct * string) argument
1315 toInt32_16(struct ANTLR3_STRING_struct * string) argument
1349 to8_8(pANTLR3_STRING string) argument
1359 to8_16(pANTLR3_STRING string) argument
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/gettext-0.17/gnulib-local/lib/glib/
H A Dgstring.c43 #include <string.h>
88 * @v: a string key.
90 * Converts a string to a hash value.
175 const gchar *string)
179 return g_string_chunk_insert_len (chunk, string, -1);
184 const gchar *string)
193 lookup = (char*) g_hash_table_lookup (chunk->const_table, (gchar *)string);
197 lookup = g_string_chunk_insert (chunk, string);
207 * @string: bytes to insert
208 * @len: number of bytes of @string t
265 g_string_maybe_expand(GString* string, gsize len) argument
278 GString *string = g_slice_new (GString); local
293 GString *string; local
314 GString *string; local
330 g_string_free(GString *string, gboolean free_segment) argument
456 g_string_insert_len(GString *string, gssize pos, const gchar *val, gssize len) argument
527 g_string_append(GString *string, const gchar *val) argument
537 g_string_append_len(GString *string, const gchar *val, gssize len) argument
549 g_string_append_c(GString *string, gchar c) argument
568 g_string_append_unichar(GString *string, gunichar wc) argument
643 g_string_insert_c(GString *string, gssize pos, gchar c) argument
682 g_string_insert_unichar(GString *string, gssize pos, gunichar wc) argument
913 g_string_append_printf_internal(GString *string, const gchar *fmt, va_list args) argument
944 g_string_append_printf(GString *string, const gchar *fmt, ...) argument
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/gettext-0.17/gettext-tools/gnulib-lib/glib/
H A Dgstring.c43 #include <string.h>
88 * @v: a string key.
90 * Converts a string to a hash value.
175 const gchar *string)
179 return g_string_chunk_insert_len (chunk, string, -1);
184 const gchar *string)
193 lookup = (char*) g_hash_table_lookup (chunk->const_table, (gchar *)string);
197 lookup = g_string_chunk_insert (chunk, string);
207 * @string: bytes to insert
208 * @len: number of bytes of @string t
265 g_string_maybe_expand(GString* string, gsize len) argument
278 GString *string = g_slice_new (GString); local
293 GString *string; local
314 GString *string; local
330 g_string_free(GString *string, gboolean free_segment) argument
456 g_string_insert_len(GString *string, gssize pos, const gchar *val, gssize len) argument
527 g_string_append(GString *string, const gchar *val) argument
537 g_string_append_len(GString *string, const gchar *val, gssize len) argument
549 g_string_append_c(GString *string, gchar c) argument
568 g_string_append_unichar(GString *string, gunichar wc) argument
643 g_string_insert_c(GString *string, gssize pos, gchar c) argument
682 g_string_insert_unichar(GString *string, gssize pos, gunichar wc) argument
913 g_string_append_printf_internal(GString *string, const gchar *fmt, va_list args) argument
944 g_string_append_printf(GString *string, const gchar *fmt, ...) argument
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/libid3tag-0.15.0b/
H A Dgenre.c38 * DESCRIPTION: return an ID3v1 genre string indexed by number
49 id3_ucs4_t const *id3_genre_name(id3_ucs4_t const *string) argument
56 if (string == 0 || *string == 0)
59 if (string[0] == 'R' && string[1] == 'X' && string[2] == 0)
61 if (string[0] == 'C' && string[1] == 'R' && string[
122 id3_genre_number(id3_ucs4_t const *string) argument
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/packages/libid3tag-0.15.0b/
H A Dgenre.c38 * DESCRIPTION: return an ID3v1 genre string indexed by number
49 id3_ucs4_t const *id3_genre_name(id3_ucs4_t const *string) argument
56 if (string == 0 || *string == 0)
59 if (string[0] == 'R' && string[1] == 'X' && string[2] == 0)
61 if (string[0] == 'C' && string[1] == 'R' && string[
122 id3_genre_number(id3_ucs4_t const *string) argument
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/libunistring-0.9.3/lib/uniconv/
H A Du16-strconv-from-locale.c25 u16_strconv_from_locale (const char *string) argument
28 return u16_strconv_from_encoding (string, encoding, iconveh_question_mark);

Completed in 333 milliseconds

1234567891011>>