HomeSort by relevance Sort by last modified time
    Searched refs:ibuf (Results 1 - 25 of 32) sorted by null

1 2

  /external/qemu/audio/
rate_template.h 27 * Processed signed long samples from ibuf to obuf.
30 void NAME (void *opaque, struct st_sample *ibuf, struct st_sample *obuf,
45 istart = ibuf;
46 iend = ibuf + *isamp;
54 OP (obuf[i].l, ibuf[i].l);
55 OP (obuf[i].r, ibuf[i].r);
65 if (ibuf >= iend) {
72 ilast = *ibuf++;
75 if (ibuf >= iend) {
80 icur = *ibuf;
    [all...]
mixeng.h 44 void st_rate_flow (void *opaque, struct st_sample *ibuf, struct st_sample *obuf,
46 void st_rate_flow_mix (void *opaque, struct st_sample *ibuf, struct st_sample *obuf,
  /sdk/emulator/opengl/tests/ut_renderer/
RendererSurface.cpp 41 int ibuf; local
42 if (eglGetConfigAttrib(eglDisplay, eglConfig, EGL_BUFFER_SIZE, &ibuf)) {
43 fprintf(stderr, "EGL COLOR Buffer size: %d\n", ibuf);
47 if (eglGetConfigAttrib(eglDisplay, eglConfig, EGL_DEPTH_SIZE, &ibuf)) {
48 fprintf(stderr, "EGL DEPTH Buffer size: %d\n", ibuf);
  /hardware/broadcom/wlan/bcmdhd/bcmdhd_net_iface/
bcmdhd_net_iface.c 28 char ibuf[INTERFACE_MAX_BUFFER_SIZE]; member in struct:net_if_snd_cmd_state
65 strncpy(state.ibuf, state.cmd, INTERFACE_MAX_BUFFER_SIZE);
67 priv_cmd.buf = state.ibuf;
78 *rbuf = state.ibuf;
  /external/openssl/crypto/bio/
bf_buff.c 99 ctx->ibuf=(char *)OPENSSL_malloc(DEFAULT_BUFFER_SIZE);
100 if (ctx->ibuf == NULL) { OPENSSL_free(ctx); return(0); }
102 if (ctx->obuf == NULL) { OPENSSL_free(ctx->ibuf); OPENSSL_free(ctx); return(0); }
122 if (b->ibuf != NULL) OPENSSL_free(b->ibuf);
149 memcpy(out,&(ctx->ibuf[ctx->ibuf_off]),i);
183 i=BIO_read(b->next_bio,ctx->ibuf,ctx->ibuf_size);
296 p1=ctx->ibuf;
323 if (ctx->ibuf != NULL) OPENSSL_free(ctx->ibuf);
    [all...]
  /external/opencv/cv/src/
cvmatchcontours.cpp 230 int lpt1, lpt2, lpt, flag, flag_n, i, j, ibuf, ibuf1; local
305 ibuf = 0;
356 ibuf1 = ibuf + 1;
360 ptr12[ibuf] = ptr11[j]->next_v1;
365 ptr12[ibuf] = NULL;
370 ptr22[ibuf] = ptr21[j]->next_v1;
375 ptr22[ibuf] = NULL;
378 ibuf += 2;
381 i = ibuf;
  /external/wpa_supplicant_6/wpa_supplicant/src/eap_common/
eap_gpsk_common.c 53 u8 ibuf[2], hash[16]; local
59 addr[0] = ibuf;
60 vlen[0] = sizeof(ibuf);
68 WPA_PUT_BE16(ibuf, i);
88 u8 ibuf[2], hash[SHA256_MAC_LEN]; local
94 addr[0] = ibuf;
95 vlen[0] = sizeof(ibuf);
103 WPA_PUT_BE16(ibuf, i);
  /external/wpa_supplicant_8/src/eap_common/
eap_gpsk_common.c 44 u8 ibuf[2], hash[16]; local
50 addr[0] = ibuf;
51 vlen[0] = sizeof(ibuf);
59 WPA_PUT_BE16(ibuf, i);
79 u8 ibuf[2], hash[SHA256_MAC_LEN]; local
85 addr[0] = ibuf;
86 vlen[0] = sizeof(ibuf);
94 WPA_PUT_BE16(ibuf, i);
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/linux/
ppp-comp.h 103 int (*decompress) (void *state, unsigned char *ibuf, int isize,
107 void (*incomp) (void *state, unsigned char *ibuf, int icnt);
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/linux/
ppp-comp.h 103 int (*decompress) (void *state, unsigned char *ibuf, int isize,
107 void (*incomp) (void *state, unsigned char *ibuf, int icnt);
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/linux/
ppp-comp.h 103 int (*decompress) (void *state, unsigned char *ibuf, int isize,
107 void (*incomp) (void *state, unsigned char *ibuf, int icnt);
  /ndk/sources/host-tools/make-3.81/
vmsjobs.c 48 vms_redirect (struct dsc$descriptor_s *desc, char *fname, char *ibuf)
52 ibuf++;
53 while (isspace ((unsigned char)*ibuf))
54 ibuf++;
55 fptr = ibuf;
56 while (*ibuf && !isspace ((unsigned char)*ibuf))
57 ibuf++;
58 *ibuf = 0;
72 return ibuf;
    [all...]
  /external/openssl/crypto/comp/
c_zlib.c 430 unsigned char *ibuf; /* Input buffer */ member in struct:__anon11269
488 ctx->ibuf = NULL;
517 if(ctx->ibuf)
521 OPENSSL_free(ctx->ibuf);
545 if(!ctx->ibuf)
547 ctx->ibuf = OPENSSL_malloc(ctx->ibufsize);
548 if(!ctx->ibuf)
554 zin->next_in = ctx->ibuf;
583 ret = BIO_read(b->next_bio, ctx->ibuf, ctx->ibufsize);
593 zin->next_in = ctx->ibuf;
    [all...]
  /frameworks/av/libvideoeditor/vss/stagefrightshells/src/
VideoEditorBuffer.c 175 M4OSA_UInt32 i, ibuf; local
180 ibuf = 0;
187 ibuf = i;
201 *pNXPBuffer = &(ppool->pNXPBuffer[ibuf]);
203 ALOGV("VIDEOEDITOR_BUFFER_getBuffer: idx = %d", ibuf);
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/io/
FilterInputStreamTest.java 40 byte[] ibuf = new byte[4096]; field in class:FilterInputStreamTest
FilterOutputStreamTest.java 36 byte[] ibuf = new byte[4096]; field in class:FilterOutputStreamTest
FileInputStreamTest.java 39 byte[] ibuf = new byte[4096]; field in class:FileInputStreamTest
FileOutputStreamTest.java 39 byte[] ibuf = new byte[4096]; field in class:FileOutputStreamTest
  /libcore/luni/src/test/java/libcore/java/io/
OldFilterOutputStreamTest.java 34 byte[] ibuf = new byte[4096]; field in class:OldFilterOutputStreamTest
OldFilterInputStreamTest.java 39 byte[] ibuf = new byte[4096]; field in class:OldFilterInputStreamTest
  /external/jmonkeyengine/engine/src/core/com/jme3/scene/
VertexBuffer.java 646 IntBuffer ibuf = (IntBuffer) data; local
647 ibuf.limit(total);
649 inewBuf.put(ibuf);
    [all...]
  /sdk/ddms/libs/ddmlib/src/com/android/ddmlib/
MonitorThread.java 407 ByteBuffer ibuf = buf.slice(); local
408 ByteBuffer roBuf = ibuf.asReadOnlyBuffer(); // enforce R/O
  /hardware/broadcom/wlan/bcm4329/dhdutil/
dhdu.c 2479 char ibuf[DHD_IOCTL_SMLEN]; local
2498 char ibuf[DHD_IOCTL_SMLEN]; local
    [all...]
  /hardware/broadcom/wlan/bcmdhd/dhdutil/
dhdu.c 2612 char ibuf[DHD_IOCTL_SMLEN]; local
2631 char ibuf[DHD_IOCTL_SMLEN]; local
    [all...]
  /external/skia/src/gpu/gl/
GrGpuGL.cpp 2344 GrGLIndexBuffer* ibuf; local
    [all...]

Completed in 1683 milliseconds

1 2