Searched refs:input (Results 1 - 25 of 859) sorted by relevance

1234567891011>>

/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/gettext-0.17/gettext-tools/gnulib-tests/
H A Dtest-mbsstr3.c47 const char input[] = "\312\276\300\375 \312\276\300\375 \312\276\300\375"; /* "������ ������ ������" */ local
48 const char *result = mbsstr (input, " ");
49 ASSERT (result == input + 4);
53 const char input[] = "\312\276\300\375"; /* "������" */ local
54 const char *result = mbsstr (input, " ");
60 const char input[] = "\272\305123\324\313\320\320\241\243"; /* "���123���������" */ local
61 const char *result = mbsstr (input, "2");
62 ASSERT (result == input + 3);
68 const char input[] = "\313\320\320\320"; /* "������" */ local
69 const char *result = mbsstr (input, "\32
74 const char input[] = "\\203\\062\\332\\066123\\324\\313\\320\\320\\241\\243"; /* "���123���������" */ local
80 const char input[] = "\\312\\276\\300\\375 \\312\\276\\300\\375 \\312\\276\\300\\375"; /* "������ ������ ������" */ local
86 const char input[] = "\\312\\276\\300\\375 \\312\\276\\300\\375 \\312\\276\\300\\375"; /* "������ ������ ������" */ local
[all...]
H A Dtest-striconv.c59 static const char input[] = "\304rger mit b\366sen B\374bchen ohne Augenma\337"; local
63 int retval = mem_cd_iconv (input, strlen (input), cd_88591_to_utf8,
73 static const char input[] = "\303\204rger mit b\303\266sen B\303\274bchen ohne Augenma\303\237"; local
77 int retval = mem_cd_iconv (input, strlen (input), cd_utf8_to_88591,
87 static const char input[] = "\342\202\254"; /* EURO SIGN */ local
90 int retval = mem_cd_iconv (input, strlen (input), cd_utf8_to_88591,
98 static const char input[] local
113 static const char input[] = "\\304rger mit b\\366sen B\\374bchen ohne Augenma\\337"; local
123 static const char input[] = "\\303\\204rger mit b\\303\\266sen B\\303\\274bchen ohne Augenma\\303\\237"; local
133 static const char input[] = "Costs: 27 \\342\\202\\254"; /* EURO SIGN */ local
140 static const char input[] = "\\342"; local
154 static const char input[] = "\\304rger mit b\\366sen B\\374bchen ohne Augenma\\337"; local
164 static const char input[] = "\\303\\204rger mit b\\303\\266sen B\\303\\274bchen ohne Augenma\\303\\237"; local
174 static const char input[] = "Costs: 27 \\342\\202\\254"; /* EURO SIGN */ local
181 static const char input[] = "\\342"; local
[all...]
H A Dtest-mbsstr2.c46 const char input[] = "f\303\266\303\266"; local
47 const char *result = mbsstr (input, "");
48 ASSERT (result == input);
52 const char input[] = "f\303\266\303\266"; local
53 const char *result = mbsstr (input, "\303\266");
54 ASSERT (result == input + 1);
58 const char input[] = "f\303\266\303\266"; local
59 const char *result = mbsstr (input, "\266\303");
64 const char input[] = "\303\204BC \303\204BCD\303\204B \303\204BCD\303\204BCD\303\204BDE"; /* "��BC ��BCD��B ��BCD��BCD��BDE" */ local
65 const char *result = mbsstr (input, "\30
70 const char input[] = "\\303\\204BC \\303\\204BCD\\303\\204B \\303\\204BCD\\303\\204BCD\\303\\204BDE"; /* "��BC ��BCD��B ��BCD��BCD��BDE" */ local
[all...]
H A Dtest-c-strcasestr.c42 const char input[] = "foo"; local
43 const char *result = c_strcasestr (input, "");
44 ASSERT (result == input);
48 const char input[] = "foo"; local
49 const char *result = c_strcasestr (input, "O");
50 ASSERT (result == input + 1);
54 const char input[] = "ABC ABCDAB ABCDABCDABDE"; local
55 const char *result = c_strcasestr (input, "ABCDaBD");
56 ASSERT (result == input + 15);
60 const char input[] local
[all...]
H A Dtest-c-strstr.c42 const char input[] = "foo"; local
43 const char *result = c_strstr (input, "");
44 ASSERT (result == input);
48 const char input[] = "foo"; local
49 const char *result = c_strstr (input, "o");
50 ASSERT (result == input + 1);
54 const char input[] = "ABC ABCDAB ABCDABCDABDE"; local
55 const char *result = c_strstr (input, "ABCDABD");
56 ASSERT (result == input + 15);
60 const char input[] local
[all...]
H A Dtest-mbsstr1.c43 const char input[] = "foo"; local
44 const char *result = mbsstr (input, "");
45 ASSERT (result == input);
49 const char input[] = "foo"; local
50 const char *result = mbsstr (input, "o");
51 ASSERT (result == input + 1);
55 const char input[] = "ABC ABCDAB ABCDABCDABDE"; local
56 const char *result = mbsstr (input, "ABCDABD");
57 ASSERT (result == input + 15);
61 const char input[] local
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/db-4.7.25.NC/java/src/com/sleepycat/persist/impl/
H A DKeyLocation.java12 * Holder for the input and format of a key. Used when copying secondary keys.
19 RecordInput input; field in class:KeyLocation
22 KeyLocation(RecordInput input, Format format) { argument
23 this.input = input;
H A DReader.java26 Object newInstance(EntityInput input, boolean rawAccess); argument
28 void readPriKey(Object o, EntityInput input, boolean rawAccess); argument
30 Object readObject(Object o, EntityInput input, boolean rawAccess); argument
H A DPrimitiveArrayFormat.java67 public Object newInstance(EntityInput input, boolean rawAccess) { argument
68 int len = input.readArrayLength();
72 return componentFormat.newPrimitiveArray(len, input);
77 public Object readObject(Object o, EntityInput input, boolean rawAccess) { argument
81 a[i] = componentFormat.newInstance(input, true);
82 componentFormat.readObject(a[i], input, true);
107 RawArrayInput input = new RawArrayInput
109 Object a = newInstance(input, rawAccess);
111 return readObject(a, input, rawAccess);
115 void skipContents(RecordInput input) { argument
121 copySecMultiKey(RecordInput input, Format keyFormat, Set results) argument
[all...]
H A DSimpleFormat.java67 public Object readObject(Object o, EntityInput input, boolean rawAccess) { argument
80 Object newPrimitiveArray(int len, EntityInput input) { argument
92 void readPrimitiveField(Object o, EntityInput input, Field field) argument
106 void skipPrimitiveArray(int len, RecordInput input) { argument
107 input.skipFast(len * getPrimitiveLength());
111 RecordInput input,
116 (input.getBufferBytes(), input.getBufferOffset(), primLen);
118 input.skipFast(primLen);
136 public Object newInstance(EntityInput input, boolea argument
110 copySecMultiKeyPrimitiveArray(int len, RecordInput input, Set results) argument
146 skipContents(RecordInput input) argument
151 copySecKey(RecordInput input, RecordOutput output) argument
156 newPrimitiveArray(int len, EntityInput input) argument
180 readPrimitiveField(Object o, EntityInput input, Field field) argument
208 newInstance(EntityInput input, boolean rawAccess) argument
218 skipContents(RecordInput input) argument
223 copySecKey(RecordInput input, RecordOutput output) argument
228 newPrimitiveArray(int len, EntityInput input) argument
252 readPrimitiveField(Object o, EntityInput input, Field field) argument
285 newInstance(EntityInput input, boolean rawAccess) argument
295 skipContents(RecordInput input) argument
300 copySecKey(RecordInput input, RecordOutput output) argument
306 newPrimitiveArray(int len, EntityInput input) argument
330 readPrimitiveField(Object o, EntityInput input, Field field) argument
363 newInstance(EntityInput input, boolean rawAccess) argument
373 skipContents(RecordInput input) argument
378 copySecKey(RecordInput input, RecordOutput output) argument
386 newPrimitiveArray(int len, EntityInput input) argument
410 readPrimitiveField(Object o, EntityInput input, Field field) argument
443 newInstance(EntityInput input, boolean rawAccess) argument
453 skipContents(RecordInput input) argument
458 copySecKey(RecordInput input, RecordOutput output) argument
465 newPrimitiveArray(int len, EntityInput input) argument
489 readPrimitiveField(Object o, EntityInput input, Field field) argument
522 newInstance(EntityInput input, boolean rawAccess) argument
532 skipContents(RecordInput input) argument
537 copySecKey(RecordInput input, RecordOutput output) argument
545 newPrimitiveArray(int len, EntityInput input) argument
569 readPrimitiveField(Object o, EntityInput input, Field field) argument
597 newInstance(EntityInput input, boolean rawAccess) argument
607 skipContents(RecordInput input) argument
612 copySecKey(RecordInput input, RecordOutput output) argument
619 newPrimitiveArray(int len, EntityInput input) argument
643 readPrimitiveField(Object o, EntityInput input, Field field) argument
671 newInstance(EntityInput input, boolean rawAccess) argument
681 skipContents(RecordInput input) argument
686 copySecKey(RecordInput input, RecordOutput output) argument
692 newPrimitiveArray(int len, EntityInput input) argument
716 readPrimitiveField(Object o, EntityInput input, Field field) argument
744 newInstance(EntityInput input, boolean rawAccess) argument
754 skipContents(RecordInput input) argument
759 copySecKey(RecordInput input, RecordOutput output) argument
781 newInstance(EntityInput input, boolean rawAccess) argument
791 skipContents(RecordInput input) argument
796 copySecKey(RecordInput input, RecordOutput output) argument
818 newInstance(EntityInput input, boolean rawAccess) argument
828 skipContents(RecordInput input) argument
833 copySecKey(RecordInput input, RecordOutput output) argument
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/curl-7.23.1/source/lib/
H A Dcurl_md4.h30 void Curl_md4it(unsigned char *output, const unsigned char *input, size_t len);
H A Dcurl_md5.h31 const unsigned char *input);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/ppp-2.4.4/pppd/plugins/radius/
H A Dmd5.c6 void rc_md5_calc (unsigned char *output, unsigned char *input, unsigned int inlen) argument
11 MD5_Update (&context, input, inlen);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/net/rfkill/
H A DMakefile6 obj-$(CONFIG_RFKILL_INPUT) += rfkill-input.o
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/db-4.7.25.NC/examples_c/csv/
H A Dquery.c54 char *p, input[256]; local
59 if (fgets(input, sizeof(input), stdin) == NULL) {
68 if ((p = strchr(input, '\n')) == NULL) {
69 dbenv->errx(dbenv, "input buffer too small");
73 if (query(input, &done) != 0)
115 query_by_field(char *input) argument
126 while (isspace(*input))
127 ++input;
132 if ((len = strcspn(field = input, "<>!
204 query_fieldlist(char *input) argument
220 query_help(char *input) argument
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/gettext-0.17/gettext-tools/examples/hello-c++-kde/admin/
H A Dylwrap27 # * INPUT is the input file
34 # The input.
35 input="$1"
37 case "$input" in
43 input="`pwd`/$input"
47 # The directory holding the input.
48 input_dir=`echo "$input" | sed -e 's,\([\\/]\)[^\\/]*$,\1,'`
82 $prog ${1+"$@"} "$input"
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/minidlna/flac-1.2.1/test/flac-to-flac-metadata-test-files/
H A DMakefile.am36 input-SCPAP.flac \
37 input-SCVA.flac \
38 input-SCVAUP.flac \
39 input-SCVPAP.flac \
40 input-SVAUP.flac \
41 input-VA.flac \
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/curl-7.23.1/source/src/
H A Dtool_formparse.h27 const char *input,
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/minidlna/flac-1.2.1/src/plugin_xmms/
H A Dtag.c1 /* libxmms-flac - XMMS FLAC input plugin
102 TitleInput *input = NULL; local
117 XMMS_NEW_TITLEINPUT(input);
119 input->performer = local__getstr(performer);
120 if(!input->performer)
121 input->performer = local__getstr(artist);
122 input->album_name = local__getstr(album);
123 input->track_name = local__getstr(title);
124 input->track_number = local__getnum(tracknumber);
125 input
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/mtools-4.0.10/
H A Dexpand.c64 const char *expand(const char *input, char *ans) argument
73 if (input == NULL)
75 if (*input == '\0')
78 if (!strpbrk(input, "$*(){}[]\\?`~")) {
79 strncpy(ans, input, EXPAND_BUF-1);
84 snprintf(buf, 255, "echo %s", input);
86 sprintf(buf, "echo %s", input);
98 strncpy(ans, input, EXPAND_BUF-1);
101 strncpy(ans, input, EXPAND_BUF-1);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/input/
H A Dinput-polldev.c2 * Generic implementation of a polled input device
13 #include <linux/input-polldev.h>
16 MODULE_DESCRIPTION("Generic implementation of a polled input device");
35 printk(KERN_ERR "input-polldev: failed to create "
69 static int input_open_polled_device(struct input_dev *input) argument
71 struct input_polled_dev *dev = input->private;
87 static void input_close_polled_device(struct input_dev *input) argument
89 struct input_polled_dev *dev = input->private;
99 * for an input device associated with this polled device.
109 dev->input
147 struct input_dev *input = dev->input; local
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/net/ibm_emac/
H A Dibm_emac_zmii.h43 void __zmii_fini(struct ocp_device *ocpdev, int input);
44 static inline void zmii_fini(struct ocp_device *ocpdev, int input) argument
47 __zmii_fini(ocpdev, input);
50 void __zmii_enable_mdio(struct ocp_device *ocpdev, int input);
51 static inline void zmii_enable_mdio(struct ocp_device *ocpdev, int input) argument
54 __zmii_enable_mdio(ocpdev, input);
57 void __zmii_set_speed(struct ocp_device *ocpdev, int input, int speed);
58 static inline void zmii_set_speed(struct ocp_device *ocpdev, int input, argument
62 __zmii_set_speed(ocpdev, input, speed);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/db-4.7.25.NC/test/scr024/src/com/sleepycat/persist/test/
H A DEnhanced3.java76 public void bdbReadPriKeyField(EntityInput input, Format format) { argument
82 public void bdbReadSecKeyFields(EntityInput input, argument
111 public void bdbReadNonKeyFields(EntityInput input, argument
115 z = input.readBoolean();
116 c = input.readChar();
117 b = input.readByte();
118 s = input.readShort();
119 i = input.readInt();
120 l = input.readLong();
121 f = input
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/input/keyboard/
H A Dgpio_keys.c24 #include <linux/input.h>
35 struct input_dev *input = platform_get_drvdata(pdev); local
45 input_event(input, type, button->code, !!state);
46 input_sync(input);
56 struct input_dev *input; local
59 input = input_allocate_device();
60 if (!input)
63 platform_set_drvdata(pdev, input);
65 input->evbit[0] = BIT(EV_KEY);
67 input
114 struct input_dev *input = platform_get_drvdata(pdev); local
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/gettext-0.17/gettext-tools/src/
H A Dfilters.h23 /* Convert a string INPUT of INPUT_LEN bytes containing Serbian input
29 extern void serbian_to_latin (const char *input, size_t input_len,

Completed in 125 milliseconds

1234567891011>>