HomeSort by relevance Sort by last modified time
    Searched refs:inbuf (Results 51 - 75 of 132) sorted by null

1 23 4 5 6

  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/cjkcodecs/
_codecs_kr.c 123 if ((*inbuf)[2] != EUCKR_JAMO_FIRSTBYTE ||
124 (*inbuf)[4] != EUCKR_JAMO_FIRSTBYTE ||
125 (*inbuf)[6] != EUCKR_JAMO_FIRSTBYTE)
128 c = (*inbuf)[3];
134 c = (*inbuf)[5];
137 c = (*inbuf)[7];
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/cjkcodecs/
_codecs_kr.c 123 if ((*inbuf)[2] != EUCKR_JAMO_FIRSTBYTE ||
124 (*inbuf)[4] != EUCKR_JAMO_FIRSTBYTE ||
125 (*inbuf)[6] != EUCKR_JAMO_FIRSTBYTE)
128 c = (*inbuf)[3];
134 c = (*inbuf)[5];
137 c = (*inbuf)[7];
  /external/python/cpython2/Modules/cjkcodecs/
_codecs_kr.c 123 if ((*inbuf)[2] != EUCKR_JAMO_FIRSTBYTE ||
124 (*inbuf)[4] != EUCKR_JAMO_FIRSTBYTE ||
125 (*inbuf)[6] != EUCKR_JAMO_FIRSTBYTE)
128 c = (*inbuf)[3];
134 c = (*inbuf)[5];
137 c = (*inbuf)[7];
  /external/libopus/tests/
test_opus_encode.c 129 short *inbuf; local
218 inbuf=(short *)malloc(sizeof(short)*SAMPLES*2);
221 if(inbuf==NULL || outbuf==NULL || out2buf==NULL)test_failed();
223 generate_music(inbuf,SAMPLES);
227 fwrite(inbuf, 1, SAMPLES*2*2, foo);
280 len = opus_encode(enc, &inbuf[i<<1], frame_size, packet, MAX_PACKET);
357 len = opus_multistream_encode(MSenc, &inbuf[i<<1], frame_size, packet, MAX_PACKET);
409 len = opus_encode(enc, &inbuf[offset<<1], frame_size, packet, MAX_PACKET);
467 free(inbuf);
  /external/libjpeg-turbo/
bmp.c 319 unsigned char *inbuf; int row; local
321 if(bottomup) inbuf=&buf[(h-row-1)*w*srcps];
322 else inbuf=&buf[row*w*srcps];
323 pixelconvert(inbuf, srcpf, bottomup, dst->buffer[i], dstpf, 0, w,
turbojpeg.c 1078 int i, row, retval=0, alloc=1; JSAMPROW *inbuf[MAX_COMPONENTS]; local
1087 tmpbuf[i]=NULL; inbuf[i]=NULL;
1137 if((inbuf[i]=(JSAMPROW *)malloc(sizeof(JSAMPROW)*ph[i]))==NULL)
1142 inbuf[i][row]=ptr;
1540 JSAMPROW *tmpbuf[MAX_COMPONENTS], *inbuf[MAX_COMPONENTS]; local
    [all...]
  /external/zlib/src/examples/
gun.c 83 unsigned char *inbuf; member in struct:ind
96 next = me->inbuf;
161 unsigned char inbuf[SIZE]; /* input buffer */ variable
393 ind.inbuf = inbuf;
  /frameworks/av/media/libstagefright/codecs/aacenc/src/
aacenc.c 181 hAacEnc->inbuf = (short *)pInput->Buffer;
185 hAacEnc->encbuf = hAacEnc->inbuf;
193 hAacEnc->inbuf, length*sizeof(short));
198 hAacEnc->inbuf += length;
264 hAacEnc->encbuf = hAacEnc->inbuf;
  /external/toybox/toys/other/
bzcat.c 85 char *inbuf; member in struct:bunzip_data
120 if (0 >= (bd->inbufCount = read(bd->in_fd, bd->inbuf, IOBUF_SIZE)))
134 bd->inbufBits = (bd->inbufBits<<8) | bd->inbuf[bd->inbufPos++];
603 // filehandle to read from. Else inbuf contains data.
604 static int start_bunzip(struct bunzip_data **bdp, int src_fd, char *inbuf,
617 bd->inbuf = inbuf;
621 bd->inbuf = (char *)(bd+1);
  /external/wpa_supplicant_8/src/eap_peer/
eap_pwd.c 33 struct wpabuf *inbuf; member in struct:eap_pwd_data
138 data->inbuf = data->outbuf = NULL;
172 wpabuf_free(data->inbuf);
888 if (data->inbuf) {
894 data->inbuf = wpabuf_alloc(tot_len);
895 if (data->inbuf == NULL) {
909 if (data->in_frag_pos > wpabuf_size(data->inbuf)) {
913 (int) wpabuf_len(data->inbuf));
914 wpabuf_free(data->inbuf);
915 data->inbuf = NULL
    [all...]
  /external/libevent/
buffer.c 868 evbuffer_add_buffer(struct evbuffer *outbuf, struct evbuffer *inbuf)
874 EVBUFFER_LOCK2(inbuf, outbuf);
875 in_total_len = inbuf->total_len;
878 if (in_total_len == 0 || outbuf == inbuf)
881 if (outbuf->freeze_end || inbuf->freeze_start) {
886 if (PRESERVE_PINNED(inbuf, &pinned, &last) < 0) {
895 COPY_CHAIN(outbuf, inbuf);
897 APPEND_CHAIN(outbuf, inbuf);
900 RESTORE_PINNED(inbuf, pinned, last);
902 inbuf->n_del_for_cb += in_total_len
    [all...]
  /external/pdfium/core/fxcodec/codec/
fx_codec_jpx_opj.cpp 518 unsigned char *inbuf, *outbuf, *in, *out; local
521 in = inbuf = FX_Alloc(unsigned char, nr_samples);
531 cmsDoTransform(transform, inbuf, outbuf, (cmsUInt32Number)max);
540 FX_Free(inbuf);
543 unsigned short *inbuf, *outbuf, *in, *out; local
546 in = inbuf = FX_Alloc(unsigned short, nr_samples);
556 cmsDoTransform(transform, inbuf, outbuf, (cmsUInt32Number)max);
565 FX_Free(inbuf);
569 unsigned char *in, *inbuf, *out, *outbuf; local
573 in = inbuf = FX_Alloc(unsigned char, nr_samples)
    [all...]
  /external/wpa_supplicant_8/src/eap_server/
eap_server_pwd.c 33 struct wpabuf *inbuf; member in struct:eap_pwd_data
129 data->inbuf = data->outbuf = NULL;
158 wpabuf_free(data->inbuf);
962 if (data->inbuf) {
967 data->inbuf = wpabuf_alloc(tot_len);
968 if (data->inbuf == NULL) {
981 if ((data->in_frag_pos + len) > wpabuf_size(data->inbuf)) {
985 (int) wpabuf_size(data->inbuf));
989 wpabuf_put_data(data->inbuf, pos, len);
1002 pos = wpabuf_head_u8(data->inbuf);
    [all...]
eap_server_tnc.c 360 static void tncs_process(struct eap_tnc_data *data, struct wpabuf *inbuf)
364 res = tncs_process_if_tnccs(data->tncs, wpabuf_head(inbuf),
365 wpabuf_len(inbuf));
  /external/curl/lib/
http2.c 125 Curl_safefree(c->inbuf);
1035 conn->proto.httpc.inbuf = malloc(H2_BUFSIZE);
1036 if(conn->proto.httpc.inbuf == NULL)
1158 char *inbuf; local
1466 char *inbuf; local
    [all...]
http.h 208 char *inbuf; /* buffer to receive data from underlying socket */ member in struct:http_conn
209 size_t inbuflen; /* number of bytes filled in inbuf */
210 size_t nread_inbuf; /* number of bytes read from in inbuf */
  /external/vboot_reference/firmware/stub/
vboot_api_stub.c 82 VbError_t VbExDecompress(void *inbuf, uint32_t in_size,
  /external/mesa3d/src/gallium/auxiliary/util/
u_upload_mgr.c 265 struct pipe_resource *inbuf,
273 inbuf,
  /external/vboot_reference/host/lib/
host_signature.c 161 * an argument, contents of [inbuf] passed redirected to stdin,
166 const uint8_t* inbuf,
196 if (write(p_to_c[STDOUT_FILENO], inbuf, size) != size) {
  /external/e2fsprogs/lib/ext2fs/
ext_attr.c 109 errcode_t ext2fs_write_ext_attr3(ext2_filsys fs, blk64_t block, void *inbuf,
119 ext2fs_swap_ext_attr(write_buf, inbuf, fs->blocksize, 1);
121 write_buf = (char *) inbuf;
138 errcode_t ext2fs_write_ext_attr2(ext2_filsys fs, blk64_t block, void *inbuf)
140 return ext2fs_write_ext_attr3(fs, block, inbuf, 0);
143 errcode_t ext2fs_write_ext_attr(ext2_filsys fs, blk_t block, void *inbuf)
145 return ext2fs_write_ext_attr2(fs, block, inbuf);
  /external/webrtc/webrtc/modules/audio_coding/codecs/isac/main/source/
pitch_estimator.c 477 double inbuf[PITCH_FRAME_LEN + QLOOKAHEAD]; local
614 memcpy(inbuf, State->inbuf, sizeof(double) * QLOOKAHEAD);
615 memcpy(inbuf+QLOOKAHEAD, in, sizeof(double) * PITCH_FRAME_LEN);
618 WebRtcIsac_PitchfilterPre_la(inbuf, out, &(State->PFstr), lags, gains);
622 State->inbuf[k] = inbuf[k + PITCH_FRAME_LEN];
intialize.c 164 State->inbuf[k] = 0.0;
  /external/webrtc/webrtc/modules/audio_coding/codecs/isac/fix/source/
initialize.c 139 State->inbuf[k] = 0;
  /external/e2fsprogs/intl/
dcigettext.c 885 const unsigned char *inbuf; local
894 inbuf = (const unsigned char *) result;
909 &inbuf, inbuf + resultlen,
923 inbuf = result;
926 const char *inptr = (const char *) inbuf;
    [all...]
  /frameworks/av/media/libstagefright/
MediaCodecSource.cpp 714 sp<MediaCodecBuffer> inbuf; local
715 status_t err = mEncoder->getInputBuffer(bufferIndex, &inbuf);
717 if (err != OK || inbuf == NULL || inbuf->data() == NULL
726 memcpy(inbuf->data(), mbuf->data(), size);
731 inbuf->setMediaBufferBase(mbuf);
    [all...]

Completed in 1341 milliseconds

1 23 4 5 6