Searched refs:buffer (Results 276 - 300 of 2424) sorted by relevance

<<11121314151617181920>>

/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/gettext-0.17/gettext-tools/src/
H A Dx-php.c536 static char *buffer; variable
552 buffer = xrealloc (buffer, bufmax);
554 buffer[buflen++] = c;
562 && (buffer[buflen - 1] == ' ' || buffer[buflen - 1] == '\t'))
567 buffer = xrealloc (buffer, bufmax);
569 buffer[buflen] = '\0';
570 savable_comment_add (buffer);
782 static char *buffer; local
[all...]
H A Drecode-sr-latin.c193 char *buffer; member in struct:linebuffer
202 lb->buffer = NULL;
215 char *p = lb->buffer;
216 char *end = lb->buffer + lb->size;
223 if (p == lb->buffer || ferror (stream))
229 size_t oldsize = lb->size; /* = p - lb->buffer */
231 lb->buffer = (char *) xrealloc (lb->buffer, newsize);
233 p = lb->buffer + oldsize;
234 end = lb->buffer
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/acpi/executer/
H A Dexmisc.c186 length0 = ACPI_PTR_DIFF(end_tag, operand0->buffer.pointer);
195 length1 = ACPI_PTR_DIFF(end_tag, operand1->buffer.pointer);
201 /* Create a new buffer object for the result (with one end_tag) */
209 * Copy the templates to the new buffer, 0 first, then 1 follows. One
212 new_buf = return_desc->buffer.pointer;
213 ACPI_MEMCPY(new_buf, operand0->buffer.pointer, length0);
214 ACPI_MEMCPY(new_buf + length0, operand1->buffer.pointer, length1);
304 /* Need enough buffer space for two integers */
314 new_buf = (char *)return_desc->buffer.pointer;
356 (operand0->buffer
[all...]
H A Dexconvrt.c95 /* Note: Takes advantage of common buffer/string fields */
97 pointer = obj_desc->buffer.pointer;
98 count = obj_desc->buffer.length;
106 * Convert the buffer/string to an integer. Note that both buffers and
112 * 2) The end of the buffer or string has been reached
135 /* Check for zero-length buffer */
148 * Convert buffer to an integer - we simply grab enough raw data
149 * from the buffer to fill an integer
154 * Little endian is used, meaning that the first byte of the buffer
190 * result_desc - Where the new buffer objec
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/samba-3.0.13/source/rpc_parse/
H A Dparse_misc.c357 void init_str_hdr(STRHDR *hdr, int max_len, int len, uint32 buffer) argument
361 hdr->buffer = buffer;
382 if(!prs_uint32("buffer ", ps, depth, &hdr->buffer))
396 hdr->buffer = (str2->uni_str_len != 0) ? 1 : 0;
418 if(!prs_uint32("buffer ", ps, depth, &hdr->buffer))
516 hdr->buffer = (str2->uni_str_len > 0) ? 1 : 0;
536 if(!prs_uint32("buffer", p
737 smb_io_buffer2(const char *desc, BUFFER2 *buf2, uint32 buffer, prs_struct *ps, int depth) argument
850 smb_io_string2(const char *desc, STRING2 *str2, uint32 buffer, prs_struct *ps, int depth) argument
1043 smb_io_unistr2(const char *desc, UNISTR2 *uni2, uint32 buffer, prs_struct *ps, int depth) argument
1127 smb_io_account_lockout_str(const char *desc, LOCKOUT_STRING *account_lockout, uint32 buffer, prs_struct *ps, int depth) argument
1754 smb_io_buffer4(const char *desc, BUFFER4 *buf4, uint32 buffer, prs_struct *ps, int depth) argument
1792 make_bufhdr2(BUFHDR2 *hdr, uint32 info_level, uint32 length, uint32 buffer) argument
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/media/video/cx25840/
H A Dcx25840-firmware.c96 u8 buffer[4], *ptr; local
106 buffer[0] = 0x08;
107 buffer[1] = 0x02;
108 buffer[2] = fw->data[0];
109 buffer[3] = fw->data[1];
110 retval = fw_write(client, buffer, 4);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/acpi/
H A Dsystem.c50 static int param_get_acpica_version(char *buffer, struct kernel_param *kp) { argument
53 result = sprintf(buffer, "%x", ACPI_CA_VERSION);
94 char __user * buffer, size_t count, loff_t * ppos)
105 res = simple_read_from_buffer(buffer, count, ppos,
120 char __user * buffer, size_t count, loff_t * ppos)
131 res = simple_read_from_buffer(buffer, count, ppos,
93 acpi_system_read_dsdt(struct file *file, char __user * buffer, size_t count, loff_t * ppos) argument
119 acpi_system_read_fadt(struct file *file, char __user * buffer, size_t count, loff_t * ppos) argument
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/frv/kernel/
H A Dsysctl.c51 void __user *buffer, size_t *lenp, loff_t *ppos)
64 if (copy_from_user(buff, buffer, len) != 0)
110 if (copy_to_user(buffer, buff, len) != 0)
125 void __user *buffer, size_t *lenp, loff_t *ppos)
138 if (copy_from_user(buff, buffer, len) != 0)
163 if (copy_to_user(buffer, buff, len) != 0)
50 procctl_frv_cachemode(ctl_table *table, int write, struct file *filp, void __user *buffer, size_t *lenp, loff_t *ppos) argument
124 procctl_frv_pin_cxnr(ctl_table *table, int write, struct file *filp, void __user *buffer, size_t *lenp, loff_t *ppos) argument
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/parport/
H A Dprocfs.c38 char buffer[256]; local
52 len += sprintf(buffer, "%s\n", dev->name);
57 len += sprintf(buffer, "%s\n", "none");
67 return copy_to_user(result, buffer, len) ? -EFAULT : 0;
76 char buffer[256]; local
88 len += sprintf (buffer + len, "CLASS:%s;\n", str);
91 len += sprintf (buffer + len, "MODEL:%s;\n", str);
94 len += sprintf (buffer + len, "MANUFACTURER:%s;\n", str);
97 len += sprintf (buffer + len, "DESCRIPTION:%s;\n", str);
100 len += sprintf (buffer
118 char buffer[20]; local
146 char buffer[20]; local
174 char buffer[20]; local
202 char buffer[40]; local
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/router/busybox-1.x/libbb/
H A Dread.c24 * Read all of the supplied buffer from a file.
51 // Die with an error message if we can't read the entire buffer.
70 char *reads(int fd, char *buffer, size_t size) argument
76 size = full_read(fd, buffer, size-1);
80 buffer[size] = '\0';
81 p = strchr(buffer, '\n');
86 offset = (off_t)(p-buffer) - (off_t)size;
91 return buffer;
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/minidlna/jpeg-7/
H A Djdatasrc.c29 JOCTET * buffer; /* start of buffer */ member in struct:__anon964
49 * but we don't clear the input buffer.
57 * Fill the input buffer --- called whenever buffer is emptied.
59 * In typical applications, this should read fresh data into the buffer
61 * reset the pointer & count to the start of the buffer, and return TRUE
62 * indicating that the buffer has been reloaded. It is not necessary to
63 * fill the buffer entirely, only to obtain at least one more byte.
67 * the buffer
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/avahi-0.6.25/avahi-compat-howl/include/corby/
H A Dchannel.h35 #include <corby/buffer.h>
95 struct _sw_corby_buffer ** buffer,
104 struct _sw_corby_buffer ** buffer,
112 struct _sw_corby_buffer * buffer,
126 struct _sw_corby_buffer ** buffer,
141 struct _sw_corby_buffer * buffer);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/net/sunrpc/
H A Dsysctl.c53 void __user *buffer, size_t *lenp, loff_t *ppos)
68 if (!access_ok(VERIFY_READ, buffer, left))
70 p = buffer;
94 if (!access_ok(VERIFY_WRITE, buffer, left))
99 if (__copy_to_user(buffer, tmpbuf, len))
102 if (put_user('\n', (char __user *)buffer + len))
52 proc_dodebug(ctl_table *table, int write, struct file *file, void __user *buffer, size_t *lenp, loff_t *ppos) argument
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/router/shared/
H A Dwl_linux.c49 char buffer[100]; local
72 snprintf(buffer, sizeof(buffer), "%s: WLC_%s_VAR(%s)", name,
75 snprintf(buffer, sizeof(buffer), "%s: cmd=%d", name, cmd);
77 perror(buffer);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/s390/block/
H A Ddasd_proc.c34 char *buffer; local
36 buffer = kmalloc(user_len + 1, GFP_KERNEL);
37 if (buffer == NULL)
39 if (copy_from_user(buffer, user_buf, user_len) != 0) {
40 kfree(buffer);
44 if (buffer[user_len - 1] == '\n')
45 buffer[user_len - 1] = 0;
47 buffer[user_len] = 0;
48 return buffer;
248 char *buffer, *st local
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/include/linux/
H A Dmoduleparam.h34 typedef int (*param_get_fn)(char *buffer, struct kernel_param *kp);
108 extern int param_get_byte(char *buffer, struct kernel_param *kp);
112 extern int param_get_short(char *buffer, struct kernel_param *kp);
116 extern int param_get_ushort(char *buffer, struct kernel_param *kp);
120 extern int param_get_int(char *buffer, struct kernel_param *kp);
124 extern int param_get_uint(char *buffer, struct kernel_param *kp);
128 extern int param_get_long(char *buffer, struct kernel_param *kp);
132 extern int param_get_ulong(char *buffer, struct kernel_param *kp);
136 extern int param_get_charp(char *buffer, struct kernel_param *kp);
140 extern int param_get_bool(char *buffer, struc
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/minidlna/flac-1.2.1/src/test_libFLAC/
H A Dbitwriter.c44 bwword *buffer; member in struct:FLAC__BitWriter
45 bwword accum; /* accumulator; when full, accum is appended to buffer */
46 unsigned capacity; /* of buffer in words */
47 unsigned words; /* # of complete words in buffer */
194 if(memcmp(bw->buffer, test_pattern1, sizeof(bwword)*words) != 0) {
195 printf("FAILED pattern match (buffer)\n");
227 if(memcmp(bw->buffer, test_pattern1, sizeof(bwword)*words) != 0) {
228 printf("FAILED pattern match (buffer)\n");
304 ok = TOTAL_BITS(bw) == 32 && bw->buffer[0] == 0xF0908080;
306 ok = TOTAL_BITS(bw) == 32 && bw->buffer[
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/samba-3.0.13/source/nsswitch/
H A Dwinbind_client.h12 int write_sock(void *buffer, int count);
/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 DTupleBase.java15 * over the allocation of the output buffer.
19 * instance. This object has a byte array buffer that is resized when it is
20 * full. The reallocation of this buffer can be a performance factor for
23 * buffer, and the {@link #getTupleOutput} method may be overridden by
31 * Initializes the initial output buffer size to zero.
42 * Sets the initial byte size of the output buffer that is allocated by the
48 * @param byteSize the initial byte size of the output buffer, or zero to
56 * Returns the initial byte size of the output buffer.
58 * @return the initial byte size of the output buffer.
71 * with an initial buffer siz
159 newOutput(byte[] buffer) argument
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/curl-7.23.1/source/docs/examples/
H A Dftpget.c38 static size_t my_fwrite(void *buffer, size_t size, size_t nmemb, void *stream) argument
47 return fwrite(buffer, size, nmemb, out->stream);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/curl-7.23.1/source/include/curl/
H A Deasy.h84 CURL_EXTERN CURLcode curl_easy_recv(CURL *curl, void *buffer, size_t buflen,
95 CURL_EXTERN CURLcode curl_easy_send(CURL *curl, const void *buffer,
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/curl-7.23.1/source/tmp.bak/include/curl/
H A Deasy.h84 CURL_EXTERN CURLcode curl_easy_recv(CURL *curl, void *buffer, size_t buflen,
95 CURL_EXTERN CURLcode curl_easy_send(CURL *curl, const void *buffer,
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/minidlna/ffmpeg-0.5.1/libavformat/
H A Daviobuf.c33 unsigned char *buffer,
41 s->buffer = buffer;
43 s->buf_ptr = buffer;
58 s->buf_end = s->buffer + buffer_size;
66 unsigned char *buffer,
75 init_put_byte(s, buffer, buffer_size, write_flag, opaque,
82 if (s->buf_ptr > s->buffer) {
84 int ret= s->write_packet(s->opaque, s->buffer, s->buf_ptr - s->buffer);
32 init_put_byte(ByteIOContext *s, unsigned char *buffer, int buffer_size, int write_flag, void *opaque, int (*read_packet)(void *opaque, uint8_t *buf, int buf_size), int (*write_packet)(void *opaque, uint8_t *buf, int buf_size), int64_t (*seek)(void *opaque, int64_t offset, int whence)) argument
65 av_alloc_put_byte( unsigned char *buffer, int buffer_size, int write_flag, void *opaque, int (*read_packet)(void *opaque, uint8_t *buf, int buf_size), int (*write_packet)(void *opaque, uint8_t *buf, int buf_size), int64_t (*seek)(void *opaque, int64_t offset, int whence)) argument
531 uint8_t *buffer; local
569 uint8_t *buffer; local
719 uint8_t *buffer; member in struct:DynBuffer
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/minidlna/ffmpeg-0.5.1/libavutil/
H A Dfifo.h21 * a very simple circular buffer FIFO implementation
32 uint8_t *buffer; member in struct:AVFifoBuffer
128 ptr -= f->end - f->buffer;
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/minidlna/flac-1.2.1/src/libFLAC/include/private/
H A Dogg_decoder_aspect.h75 typedef FLAC__OggDecoderAspectReadStatus (*FLAC__OggDecoderAspectReadCallbackProxy)(const void *decoder, FLAC__byte buffer[], size_t *bytes, void *client_data);
77 FLAC__OggDecoderAspectReadStatus FLAC__ogg_decoder_aspect_read_callback_wrapper(FLAC__OggDecoderAspect *aspect, FLAC__byte buffer[], size_t *bytes, FLAC__OggDecoderAspectReadCallbackProxy read_callback, const FLAC__StreamDecoder *decoder, void *client_data);

Completed in 481 milliseconds

<<11121314151617181920>>