Searched refs:chars (Results 1 - 25 of 70) sorted by relevance

123

/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/db-4.7.25.NC/java/src/com/sleepycat/util/
H A DUtfOps.java48 * @param chars the characters that would be converted.
52 public static int getByteLength(char[] chars) { argument
54 return getByteLength(chars, 0, chars.length);
61 * @param chars the characters that would be converted.
69 public static int getByteLength(char[] chars, int offset, int length) { argument
74 int c = chars[i];
152 * @param chars the destination array
154 * @param charOffset the offset into chars at which to begin the copy
156 * @param len the amount of information to copy into chars
167 bytesToChars(byte[] bytes, int byteOffset, char[] chars, int charOffset, int len, boolean isByteLen) argument
218 charsToBytes(char[] chars, int charOffset, byte[] bytes, int byteOffset, int charLength) argument
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/include/linux/
H A Dtty_flip.h5 extern int tty_insert_flip_string(struct tty_struct *tty, const unsigned char *chars, size_t size);
6 extern int tty_insert_flip_string_flags(struct tty_struct *tty, const unsigned char *chars, const char *flags, size_t size);
7 extern int tty_prepare_flip_string(struct tty_struct *tty, unsigned char **chars, size_t size);
8 extern int tty_prepare_flip_string_flags(struct tty_struct *tty, unsigned char **chars, char **flags, size_t size);
H A Dlp.h111 #define LP_CHAR(minor) lp_table[(minor)].chars /* busy timeout */
125 unsigned long chars; member in struct:lp_stats
137 unsigned int chars; member in struct:lp_struct
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/libxml2-2.7.2/doc/examples/
H A Dparse4.c46 char chars[4]; local
54 res = readPacket(chars, 4);
68 chars, res, filename);
79 while ((res = readPacket(chars, 4)) > 0) {
80 xmlParseChunk(ctxt, chars, res, 0);
86 xmlParseChunk(ctxt, chars, 0, 1);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/db-4.7.25.NC/java/src/com/sleepycat/bind/tuple/
H A DTupleOutput.java355 * @param chars is the array of values to be written.
359 * @throws NullPointerException if the chars parameter is null.
361 public final TupleOutput writeBytes(char[] chars) { argument
363 for (int i = 0; i < chars.length; i++) {
364 writeFast((byte) chars[i]);
374 * @param chars is the array of characters to be written.
378 * @throws NullPointerException if the chars parameter is null.
380 public final TupleOutput writeChars(char[] chars) { argument
382 for (int i = 0; i < chars.length; i++) {
383 writeFast((byte) (chars[
402 writeString(char[] chars) argument
[all...]
H A DTupleInput.java496 * @param chars is the array to receive the data and whose length is used
502 public final void readBytes(char[] chars) argument
505 for (int i = 0; i < chars.length; i++) {
510 chars[i] = (char) c;
519 * @param chars is the array to receive the data and whose length is used
525 public final void readChars(char[] chars) argument
528 for (int i = 0; i < chars.length; i++) {
529 chars[i] = readChar();
551 char[] chars = new char[length];
552 readString(chars);
570 readString(char[] chars) argument
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/gettext-0.17/gettext-tools/src/
H A Dx-librep.c175 char *chars; /* the token's constituents */ member in struct:token
183 tp->chars = XNMALLOC (tp->allocated, char);
191 free (tp->chars);
201 tp->chars = (char *) xrealloc (tp->chars, tp->allocated * sizeof (char));
247 tp->chars[tp->charcount++] = c;
258 tp->chars[tp->charcount++] = c;
396 tp->chars[tp->charcount++] = c;
506 memcpy (str, op->token->chars, n);
820 op->token->chars[o
[all...]
H A Dx-scheme.c199 char *chars; /* the token's constituents */ member in struct:token
207 tp->chars = XNMALLOC (tp->allocated, char);
215 free (tp->chars);
225 tp->chars = (char *) xrealloc (tp->chars, tp->allocated * sizeof (char));
237 tp->chars[tp->charcount++] = first;
252 tp->chars[tp->charcount++] = c;
500 const char *str = tp->chars;
671 memcpy (str, op->token->chars, n);
902 && (token.chars[
[all...]
H A Dx-sh.c237 char *chars; /* the token's constituents */ member in struct:token
245 tp->chars = XNMALLOC (tp->allocated, char);
253 free (tp->chars);
263 tp->chars = (char *) xrealloc (tp->chars, tp->allocated * sizeof (char));
276 memcpy (str, tp->chars, n);
467 memcpy (str, wp->token->chars, n);
1039 wp->token->chars[wp->token->charcount++] =
1068 string.chars[string.charcount++] = (unsigned char) c;
1165 wp->token->chars[w
[all...]
H A Dx-elisp.c173 char *chars; /* the token's constituents */ member in struct:token
181 tp->chars = XNMALLOC (tp->allocated, char);
189 free (tp->chars);
199 tp->chars = (char *) xrealloc (tp->chars, tp->allocated * sizeof (char));
309 tp->chars[tp->charcount++] = c;
319 tp->chars[tp->charcount] = '\0';
321 if (is_integer (tp->chars) || is_float (tp->chars))
426 memcpy (str, op->token->chars,
[all...]
H A Dx-tcl.c328 char *chars; /* the token's constituents */ member in struct:token
336 tp->chars = XNMALLOC (tp->allocated, char);
344 free (tp->chars);
354 tp->chars = (char *) xrealloc (tp->chars, tp->allocated * sizeof (char));
455 memcpy (str, wp->token->chars, n);
671 wp->token->chars[wp->token->charcount++] = '$';
697 wp->token->chars[wp->token->charcount++] = utf8buf[i];
705 wp->token->chars[wp->token->charcount++] = (unsigned char) c;
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/curl-7.23.1/source/docs/examples/
H A Dhtmltitle.cc177 const xmlChar *chars,
181 context->title.append((char *)chars, length);
189 const xmlChar *chars,
194 handleCharacters(context, chars, length);
202 const xmlChar *chars,
207 handleCharacters(context, chars, length);
176 handleCharacters(Context *context, const xmlChar *chars, int length) argument
188 Characters(void *voidContext, const xmlChar *chars, int length) argument
201 cdata(void *voidContext, const xmlChar *chars, int length) argument
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/minidlna/flac-1.2.1/src/share/utf8/
H A Dutf8.c193 int chars, err; local
205 chars = WideCharToMultiByte(GetConsoleCP(), WC_COMPOSITECHECK, unicode,
208 if(chars < 0) /* underflow check */
211 if(chars == 0)
218 *to = safe_calloc_((size_t)chars + 1, sizeof(unsigned char));
227 -1, *to, chars, NULL, NULL);
228 if(err != chars)
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/fs/
H A Dpipe.c248 size_t chars = buf->len; local
251 if (chars > total_len)
252 chars = total_len;
261 atomic = !iov_fault_in_pages_write(iov, chars);
264 error = pipe_iov_copy_to_user(iov, addr + buf->offset, chars, atomic);
278 ret += chars;
279 buf->offset += chars;
280 buf->len -= chars;
289 total_len -= chars;
344 ssize_t chars; local
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/pnp/pnpbios/
H A Dpnpbios.h23 char chars[0x21]; /* To calculate the checksum */ member in union:pnp_bios_install_struct
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/db-4.7.25.NC/test/
H A Dtest014.tcl43 # chars: number of empty spaces that will be padded with null
56 proc test014_body { method flagp chars increase {nentries 10000} args } {
61 if { [is_fixed_length $method] == 1 && $chars != $increase } {
63 $chars chars with string $increase times larger."
69 gap $chars."
71 puts "Test014: Replace $chars chars with string \
152 # chars is the amount of padding in between
154 set len [expr $offset + $chars
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/libxml2-2.7.2/
H A DtestSAX.c649 * receiving some chars from the parser.
1022 char chars[10]; local
1025 ret = fread(chars, 1, 4, f);
1028 chars, ret, filename);
1029 while ((ret = fread(chars, 1, 3, f)) > 0) {
1030 xmlParseChunk(ctxt, chars, ret, 0);
1032 xmlParseChunk(ctxt, chars, 0, 1);
1051 char chars[10]; local
1054 ret = fread(chars, 1, 4, f);
1058 chars, re
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/samba-3.0.13/source/torture/
H A Dmangle_test.c110 const char *chars = "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz._-$~... "; local
111 unsigned max_idx = strlen(chars);
122 p[i] = chars[random() % max_idx];
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/minidlna/flac-1.2.1/src/plugin_common/
H A Dtags.c114 size_t chars = 0; local
121 for (s=(const unsigned char *)src, end=s+length; s<end; chars++) {
131 out = (FLAC__uint16*)safe_malloc_mul_2op_(chars, /*times*/sizeof(FLAC__uint16));
141 for ( ; chars; chars--)
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/usb/serial/
H A Dgeneric.c253 int chars = 0; local
259 chars = port->write_urb->transfer_buffer_length;
262 dbg("%s - returns %d", __FUNCTION__, chars);
263 return (chars);
H A Dempeg.c305 int chars = 0; local
314 chars += URB_TRANSFER_BUFFER_SIZE;
320 dbg("%s - returns %d", __FUNCTION__, chars);
322 return (chars);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/router/udev/
H A Dudev_rules.c592 dbg("truncate to %i chars, subtitution string becomes '%s'", len, head);
765 dbg("removed %zi trailing whitespace chars from '%s'", strlen(val)-len, val);
813 dbg("removed %zi trailing whitespace chars from '%s'", strlen(val)-len, val);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/fs/ocfs2/
H A Docfs2_fs.h712 int chars; local
720 chars = snprintf(buf, len,
723 chars = snprintf(buf, len,
727 return chars;
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/gettext-0.17/gettext-tools/libgrep/
H A Ddfa.h253 wchar_t *chars; /* Normal characters. */ member in struct:mb_char_classes
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/samba-3.0.13/examples/tridge/
H A Dsmb.conf17 valid chars = �:� �:� �:�

Completed in 341 milliseconds

123