HomeSort by relevance Sort by last modified time
    Searched defs:bufsize (Results 51 - 75 of 127) sorted by null

1 23 4 5 6

  /external/lldb/tools/debugserver/source/MacOSX/
MachThreadList.cpp 260 size_t bufsize = sizeof(processInfo); local
262 if (sysctl(mib, (unsigned)(sizeof(mib)/sizeof(int)), &processInfo, &bufsize, NULL, 0) == 0 && bufsize > 0)
  /external/opencv/cv/src/
cvpyramids.cpp 439 int channels, int *bufSize )
443 if( !bufSize )
445 *bufSize = 0;
459 *bufSize = bufStep * PU_SZ;
466 int channels, int *bufSize )
470 if( !bufSize )
472 *bufSize = 0;
486 *bufSize = bufStep * (PD_SZ + 1);
1195 int bufsize = 0; local
    [all...]
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...]
  /external/qemu/audio/
dsoundaudio.c 580 int bufsize; local
588 bufsize = hw->samples << hwshift;
606 cur_blat = audio_ring_dist (wpos, ppos, bufsize);
611 old_pos %= bufsize;
631 ds->played += audio_ring_dist (ds->old_pos, ppos, hw->bufsize);
640 if ((old_pos > ppos) && ((old_pos + len) > (ppos + bufsize))) {
641 len = bufsize - old_pos + ppos;
645 if (audio_bug (AUDIO_FUNC, len < 0 || len > bufsize)) {
646 dolog ("len=%d bufsize=%d old_pos=%ld ppos=%ld\n",
647 len, bufsize, old_pos, ppos)
    [all...]
fmodaudio.c 49 int bufsize; member in struct:__anon32955
577 if (conf.bufsize) {
578 status = FSOUND_SetBufferSize (conf.bufsize);
580 fmod_logerr ("FSOUND_SetBufferSize (%d) failed\n", conf.bufsize);
653 .name = "BUFSIZE",
655 .valp = &conf.bufsize,
ossaudio.c 430 int bufsize; local
432 bufsize = hw->samples << hw->info.shift;
444 bytes = audio_ring_dist (cntinfo.ptr, pos, bufsize);
454 if (abinfo.bytes > bufsize) {
456 dolog ("warning: Invalid available size, size=%d bufsize=%d\n"
458 abinfo.bytes, bufsize);
460 abinfo.bytes = bufsize;
465 dolog ("warning: Invalid available size, size=%d bufsize=%d\n",
466 abinfo.bytes, bufsize);
  /hardware/qcom/audio/legacy/libalsa-intf/
aplay.c 170 unsigned bufsize; local
274 bufsize = pcm->period_size;
276 fprintf(stderr, "Aplay:bufsize = %d\n", bufsize);
281 frames = (pcm->flags & PCM_MONO) ? (bufsize / 2) : (bufsize / 4);
336 memset(dst_addr, 0x0, bufsize);
339 if (remainingData < bufsize) {
340 bufsize = remainingData;
345 err = read(fd, dst_addr , bufsize);
    [all...]
arec.c 180 unsigned xfer, bufsize; local
250 bufsize = pcm->period_size;
252 fprintf(stderr, "Arec:bufsize = %d\n", bufsize);
269 frames = bufsize / 2;
271 frames = bufsize / 8;
273 frames = bufsize / 12;
275 frames = bufsize / 4;
320 if (write(fd, dst_addr, bufsize) != bufsize) {
    [all...]
  /ndk/sources/host-tools/nawk-20071023/
lib.c 109 int bufsize = *pbufsize, savebufsize = bufsize; local
144 c = readrec(&buf, &bufsize, infile);
159 *pbufsize = bufsize;
186 int bufsize = *pbufsize; local
200 if (rr-buf+1 > bufsize)
201 if (!adjbuf(&buf, &bufsize, 1+rr-buf, recsize, &rr, "readrec 1"))
209 if (!adjbuf(&buf, &bufsize, 2+rr-buf, recsize, &rr, "readrec 2"))
214 if (!adjbuf(&buf, &bufsize, 1+rr-buf, recsize, &rr, "readrec 3"))
219 *pbufsize = bufsize;
    [all...]
  /ndk/sources/host-tools/sed-4.2.1/lib/
quotearg.c 613 size_t bufsize = quotearg_buffer_restyled (0, 0, arg, argsize, p->style, local
615 char *buf = xcharalloc (bufsize);
616 quotearg_buffer_restyled (buf, bufsize, arg, argsize, p->style, flags,
620 *size = bufsize - 1;
  /packages/apps/UnifiedEmail/src/org/apache/james/mime4j/field/address/parser/
SimpleCharStream.java 27 int bufsize; field in class:SimpleCharStream
53 char[] newbuffer = new char[bufsize + 2048];
54 int newbufline[] = new int[bufsize + 2048];
55 int newbufcolumn[] = new int[bufsize + 2048];
61 System.arraycopy(buffer, tokenBegin, newbuffer, 0, bufsize - tokenBegin);
63 bufsize - tokenBegin, bufpos);
66 System.arraycopy(bufline, tokenBegin, newbufline, 0, bufsize - tokenBegin);
67 System.arraycopy(bufline, 0, newbufline, bufsize - tokenBegin, bufpos);
70 System.arraycopy(bufcolumn, tokenBegin, newbufcolumn, 0, bufsize - tokenBegin);
71 System.arraycopy(bufcolumn, 0, newbufcolumn, bufsize - tokenBegin, bufpos)
    [all...]
  /packages/apps/UnifiedEmail/src/org/apache/james/mime4j/field/contenttype/parser/
SimpleCharStream.java 27 int bufsize; field in class:SimpleCharStream
53 char[] newbuffer = new char[bufsize + 2048];
54 int newbufline[] = new int[bufsize + 2048];
55 int newbufcolumn[] = new int[bufsize + 2048];
61 System.arraycopy(buffer, tokenBegin, newbuffer, 0, bufsize - tokenBegin);
63 bufsize - tokenBegin, bufpos);
66 System.arraycopy(bufline, tokenBegin, newbufline, 0, bufsize - tokenBegin);
67 System.arraycopy(bufline, 0, newbufline, bufsize - tokenBegin, bufpos);
70 System.arraycopy(bufcolumn, tokenBegin, newbufcolumn, 0, bufsize - tokenBegin);
71 System.arraycopy(bufcolumn, 0, newbufcolumn, bufsize - tokenBegin, bufpos)
    [all...]
  /packages/apps/UnifiedEmail/src/org/apache/james/mime4j/field/datetime/parser/
SimpleCharStream.java 27 int bufsize; field in class:SimpleCharStream
53 char[] newbuffer = new char[bufsize + 2048];
54 int newbufline[] = new int[bufsize + 2048];
55 int newbufcolumn[] = new int[bufsize + 2048];
61 System.arraycopy(buffer, tokenBegin, newbuffer, 0, bufsize - tokenBegin);
63 bufsize - tokenBegin, bufpos);
66 System.arraycopy(bufline, tokenBegin, newbufline, 0, bufsize - tokenBegin);
67 System.arraycopy(bufline, 0, newbufline, bufsize - tokenBegin, bufpos);
70 System.arraycopy(bufcolumn, tokenBegin, newbufcolumn, 0, bufsize - tokenBegin);
71 System.arraycopy(bufcolumn, 0, newbufcolumn, bufsize - tokenBegin, bufpos)
    [all...]
  /system/core/libsysutils/src/
NetlinkEvent.cpp 437 int bufsize = kTagLength + numaddrs * (INET6_ADDRSTRLEN + 1); local
438 char *buf = (char *) malloc(bufsize);
451 inet_ntop(AF_INET6, addrs + i, buf + pos, bufsize - pos);
  /bionic/libc/dns/
gethnamaddr.c 1058 size_t bufsize; local
1061 bufsize = strlen(p->h_name) + 2 +
1065 bufsize += strlen(*cp) + 1;
1067 if ((tmpbuf = malloc(bufsize)) == NULL) {
    [all...]
  /bionic/libc/kernel/uapi/linux/
scc.h 129 unsigned int bufsize; member in struct:scc_stat
161 unsigned int bufsize; member in struct:scc_mem_config
  /development/ndk/platforms/android-L/include/linux/
scc.h 129 unsigned int bufsize; member in struct:scc_stat
161 unsigned int bufsize; member in struct:scc_mem_config
  /external/bison/lib/
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/elfutils/0.153/libcpu/
i386_data.h 121 if (*d->bufcntp + 4 > d->bufsize)
122 return *d->bufcntp + 4 - d->bufsize;
164 size_t bufsize = d->bufsize; local
201 if (*bufcntp + n + 1 > bufsize)
202 return *bufcntp + n + 1 - bufsize;
275 if (*bufcntp + n + 1 > bufsize)
276 return *bufcntp + n + 1 - bufsize;
373 if (*bufcntp + (cp - tmpbuf) > bufsize)
374 return *bufcntp + (cp - tmpbuf) - bufsize;
506 size_t bufsize = d->bufsize; local
533 size_t bufsize = d->bufsize; local
    [all...]
  /external/kernel-headers/original/uapi/linux/
scc.h 129 unsigned int bufsize; /* used buffersize */ member in struct:scc_stat
164 unsigned int bufsize; member in struct:scc_mem_config
  /external/libpcap/
pcap-int.h 143 int bufsize; member in struct:pcap
  /external/lldb/source/Host/macosx/
Symbols.cpp 690 long bufsize; local
691 if ((bufsize = sysconf(_SC_GETPW_R_SIZE_MAX)) != -1)
693 char buffer[bufsize];
697 if (getpwnam_r ("rc", &pwd, buffer, bufsize, &tilde_rc) == 0
    [all...]
  /frameworks/base/libs/androidfw/
BackupHelpers.cpp 220 const int bufsize = 4*1024; local
227 char* buf = (char*)malloc(bufsize);
257 while ((amt = read(fd, buf, bufsize)) != 0 && bytesLeft > 0) {
272 memset(buf, 0, bufsize);
274 amt = bytesLeft < bufsize ? bytesLeft : bufsize;
315 const int bufsize = 4*1024; local
318 char* buf = (char*)malloc(bufsize);
323 while ((amt = read(fd, buf, bufsize)) != 0) {
548 const size_t BUFSIZE = 32 * 1024
    [all...]
  /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...]
  /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...]

Completed in 1577 milliseconds

1 23 4 5 6