/external/bison/darwin-lib/ |
unistd.h | [all...] |
/external/bison/lib/ |
unistd.in.h | [all...] |
quotearg.c | 703 size_t bufsize = quotearg_buffer_restyled (0, 0, arg, argsize, p->style, local 707 char *buf = xcharalloc (bufsize); 708 quotearg_buffer_restyled (buf, bufsize, arg, argsize, p->style, flags, 713 *size = bufsize - 1;
|
/external/bison/linux-lib/ |
unistd.h | [all...] |
/external/libpcap/ |
pcap-nit.c | 117 cc = read(p->fd, (char *)p->buffer, p->bufsize); 307 p->bufsize = BUFSPACE; 308 p->buffer = (u_char *)malloc(p->bufsize);
|
pcap-snit.c | 134 cc = read(p->fd, (char *)p->buffer, p->bufsize); 385 p->bufsize = BUFSPACE; 386 p->buffer = (u_char *)malloc(p->bufsize);
|
pcap-snoop.c | 91 cc = read(p->fd, (char *)p->buffer, p->bufsize); 377 p->bufsize = 4096; /* XXX */ 378 p->buffer = (u_char *)malloc(p->bufsize);
|
pcap-pf.c | 120 cc = read(pc->fd, (char *)pc->buffer + pc->offset, pc->bufsize); 125 lseek(pc->fd, 0L, SEEK_CUR) + pc->bufsize < 0) { 483 p->bufsize = BUFSPACE; 484 p->buffer = (u_char*)malloc(p->bufsize + p->offset);
|
/frameworks/av/media/libstagefright/ |
MidiExtractor.cpp | 206 int bufsize = sizeof(EAS_PCM) local 208 ALOGV("using %d byte buffer", bufsize); 209 mGroup->add_buffer(new MediaBuffer(bufsize));
|
/external/libnl/lib/route/sch/ |
tbf.c | 71 int bufsize; local 79 bufsize = rtnl_tc_calc_bufsize(nl_ticks2us(opts.buffer), 81 tbf->qt_rate_bucket = bufsize; 85 bufsize = rtnl_tc_calc_bufsize(nl_ticks2us(opts.mtu), 87 tbf->qt_peakrate_bucket = bufsize;
|
/external/libnl/lib/route/ |
tc.c | 363 * @arg bufsize Size of buffer to be transmited in bytes. 370 * txtime=\frac{bufsize}{rate}10^6 375 int rtnl_tc_calc_txtime(int bufsize, int rate) 379 tx_time_secs = (double) bufsize / (double) rate; 393 * bufsize=\frac{{txtime} \times {rate}}{10^6} 400 double bufsize; local 402 bufsize = (double) txtime * (double) rate; 404 return bufsize / 1000000.;
|
/external/vboot_reference/host/arch/arm/lib/ |
crossystem_arch.c | 290 static int ExecuteMosys(char * const argv[], char *buf, size_t bufsize) { 323 if (bufsize) { 324 bufsize--; /* Reserve 1 byte for '\0' */ 325 while ((n = read(mosys_to_crossystem[0], buf, bufsize)) > 0) { 327 bufsize -= n;
|
/hardware/ti/omap4-aah/camera/ |
Encoder_libjpeg.cpp | 66 int bufsize; member in struct:Ti::Camera::libjpeg_destination_mgr 74 dest->free_in_buffer = dest->bufsize; 82 dest->free_in_buffer = dest->bufsize; 88 dest->jpegsize = dest->bufsize - dest->free_in_buffer; 97 this->bufsize = size;
|
/hardware/ti/omap4xxx/camera/ |
Encoder_libjpeg.cpp | 66 int bufsize; member in struct:android::libjpeg_destination_mgr 74 dest->free_in_buffer = dest->bufsize; 82 dest->free_in_buffer = dest->bufsize; 88 dest->jpegsize = dest->bufsize - dest->free_in_buffer; 97 this->bufsize = size;
|
/external/e2fsprogs/lib/ext2fs/ |
swapfs.c | 173 void ext2fs_swap_ext_attr(char *to, char *from, int bufsize, int has_header) 180 char *from_end = (char *)from_header + bufsize; 183 memcpy(to_header, from_header, bufsize); 204 int bufsize) 282 if (bufsize < (int) (sizeof(struct ext2_inode) + sizeof(__u16))) 312 if (bufsize < (int) i) 331 bufsize - sizeof(struct ext2_inode) -
|
/frameworks/native/opengl/tools/glgen/specs/gles11/ |
GLES20.spec | 56 void glGetActiveAttrib ( GLuint program, GLuint index, GLsizei bufsize, GLsizei *length, GLint *size, GLenum *type, char *name ) 57 void glGetActiveUniform ( GLuint program, GLuint index, GLsizei bufsize, GLsizei *length, GLint *size, GLenum *type, char *name ) 67 void glGetProgramInfoLog ( GLuint program, GLsizei bufsize, GLsizei *length, char *infolog ) 70 void glGetShaderInfoLog ( GLuint shader, GLsizei bufsize, GLsizei *length, char *infolog ) 72 void glGetShaderSource ( GLuint shader, GLsizei bufsize, GLsizei *length, char *source )
|
/ndk/sources/host-tools/make-3.81/w32/subproc/ |
sub_proc.c | 608 DWORD bufsize = 1024; local 611 pproc->outp = malloc(bufsize); 624 if (pproc->outcnt + nread > bufsize) { 625 bufsize += nread + 512; 626 pproc->outp = realloc(pproc->outp, bufsize); 640 DWORD bufsize = 1024; local 643 pproc->errp = malloc(bufsize); 655 if (pproc->errcnt + nread > bufsize) { 656 bufsize += nread + 512; 657 pproc->errp = realloc(pproc->errp, bufsize); [all...] |
/external/opencv/cv/src/ |
cvderiv.cpp | 151 ( CvSize roi, int* bufsize ); 154 ( CvSize roi, int masksize, int* bufsize ); 294 int bufsize = 0, masksize = aperture_size == 3 ? 33 : 55; local 304 ipp_sobel_getbufsize_func( size, masksize, &bufsize ) : 305 ipp_scharr_getbufsize_func( size, &bufsize ); 309 if( bufsize <= CV_MAX_LOCAL_SIZE ) 311 buffer = cvStackAlloc( bufsize ); 315 CV_CALL( buffer = cvAlloc( bufsize )); 835 int bufsize = 0, masksize = aperture_size == 3 ? 33 : 55; local [all...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ |
tempfile.py | 430 def NamedTemporaryFile(mode='w+b', bufsize=-1, suffix="", 436 'bufsize' -- the buffer size argument to os.fdopen (default -1). 459 file = _os.fdopen(fd, mode, bufsize) 468 def TemporaryFile(mode='w+b', bufsize=-1, suffix="", 474 'bufsize' -- the buffer size argument to os.fdopen (default -1). 492 return _os.fdopen(fd, mode, bufsize) 504 def __init__(self, max_size=0, mode='w+b', bufsize=-1, 509 self._TemporaryFileArgs = (mode, bufsize, suffix, prefix, dir)
|
filecmp.py | 19 BUFSIZE=8*1024 65 bufsize = BUFSIZE 68 b1 = fp1.read(bufsize) 69 b2 = fp2.read(bufsize)
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/ |
tempfile.py | 430 def NamedTemporaryFile(mode='w+b', bufsize=-1, suffix="", 436 'bufsize' -- the buffer size argument to os.fdopen (default -1). 459 file = _os.fdopen(fd, mode, bufsize) 468 def TemporaryFile(mode='w+b', bufsize=-1, suffix="", 474 'bufsize' -- the buffer size argument to os.fdopen (default -1). 492 return _os.fdopen(fd, mode, bufsize) 504 def __init__(self, max_size=0, mode='w+b', bufsize=-1, 509 self._TemporaryFileArgs = (mode, bufsize, suffix, prefix, dir)
|
filecmp.py | 19 BUFSIZE=8*1024 65 bufsize = BUFSIZE 68 b1 = fp1.read(bufsize) 69 b2 = fp2.read(bufsize)
|
/external/libvncserver/x11vnc/misc/ |
connect_switch | 255 my $bufsize = 8192; 260 $bufsize = $ENV{CONNECT_SWITCH_BUFSIZE}; 657 my $len = sysread($in, $buf, $bufsize);
|
/cts/hostsidetests/theme/ |
android_device.py | 34 adbProcess = subprocess.Popen(adbCmd.split(" "), bufsize = -1, stdout = subprocess.PIPE)
|
/hardware/qcom/audio/legacy/alsa_sound/ |
AudioUsbALSA.cpp | 387 unsigned avail, bufsize; local 429 bufsize = musbRecordingHandle->period_size; 432 frames = (musbRecordingHandle->flags & PCM_MONO) ? (bufsize / 2) : (bufsize / 4); 433 x.frames = (musbRecordingHandle->flags & PCM_MONO) ? (bufsize / 2) : (bufsize / 4); 530 memset(dstProxy_addr, 0x0, bufsize); 534 memcpy(dstProxy_addr, srcUsb_addr, bufsize ); 776 unsigned avail, xfer, bufsize; local [all...] |