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

1 2 3

  /external/elfutils/0.153/libasm/
asm_adduleb128.c 55 char tmpbuf[(sizeof (num) * 8 + 6) / 7]; local
56 char *dest = tmpbuf;
74 size_t nbytes = dest - tmpbuf;
82 memcpy (&asmscn->content->data[asmscn->content->len], tmpbuf, nbytes);
asm_addsleb128.c 55 char tmpbuf[(sizeof (num) * 8 + 6) / 7]; local
56 char *dest = tmpbuf;
78 size_t nbytes = dest - tmpbuf;
86 memcpy (&asmscn->content->data[asmscn->content->len], tmpbuf, nbytes);
  /external/speex/libspeex/
kiss_fftr.c 25 kiss_fft_cpx * tmpbuf; member in struct:kiss_fftr_state
58 st->tmpbuf = (kiss_fft_cpx *) (((char *) st->substate) + subsize);
59 st->super_twiddles = st->tmpbuf + nfft;
94 kiss_fft( st->substate , (const kiss_fft_cpx*)timedata, st->tmpbuf );
95 /* The real part of the DC element of the frequency spectrum in st->tmpbuf
105 tdc.r = st->tmpbuf[0].r;
106 tdc.i = st->tmpbuf[0].i;
119 fpk = st->tmpbuf[k];
120 fpnk.r = st->tmpbuf[ncfft-k].r;
121 fpnk.i = - st->tmpbuf[ncfft-k].i
    [all...]
  /external/openssl/crypto/des/
enc_read.c 102 static unsigned char *tmpbuf=NULL;
107 if (tmpbuf == NULL)
109 tmpbuf=OPENSSL_malloc(BSIZE);
110 if (tmpbuf == NULL) return(-1);
217 DES_pcbc_encrypt(net,tmpbuf,num,sched,iv,
220 DES_cbc_encrypt(net,tmpbuf,num,sched,iv,
225 memcpy(buf,tmpbuf,num);
  /external/elfutils/0.153/src/
arlib.c 68 char tmpbuf[sizeof (ar_hdr.ar_date) + 1]; local
69 memcpy (ar_hdr.ar_date, tmpbuf,
70 snprintf (tmpbuf, sizeof (tmpbuf), "%-*lld",
117 char tmpbuf[sizeof (((struct ar_hdr *) NULL)->ar_size) + 1]; local
131 memcpy (&((struct ar_hdr *) symtab.longnames)->ar_size, tmpbuf,
132 snprintf (tmpbuf, sizeof (tmpbuf), "%-*zu",
178 memcpy (&((struct ar_hdr *) symtab.symsoff)->ar_size, tmpbuf,
179 snprintf (tmpbuf, sizeof (tmpbuf), "%-*zu"
    [all...]
ar.c 867 char tmpbuf[sizeof (arhdr.ar_name) + 1]; local
876 snprintf (tmpbuf, sizeof (tmpbuf), "/%-*ld",
878 changed_header = memcmp (arhdr.ar_name, tmpbuf,
900 memcpy (arhdr.ar_name, tmpbuf, sizeof (arhdr.ar_name));
1098 char tmpbuf[bufsize + 1]; local
1099 snprintf (tmpbuf, sizeof (tmpbuf), ofmt ? "%-*lo" : "%-*ld", bufsize, val);
1100 memcpy (buf, tmpbuf, bufsize);
1469 char tmpbuf[sizeof (arhdr.ar_name) + 1]; local
    [all...]
  /bionic/libc/upstream-netbsd/lib/libc/inet/
nsap_addr.c 100 char *tmpbuf = inet_nsap_ntoa_tmpbuf; local
108 ascii = tmpbuf;
109 start = tmpbuf;
  /external/elfutils/0.153/libcpu/
i386_data.h 182 char tmpbuf[sizeof ("-0x1234(%rr,%rr)")]; local
185 n = snprintf (tmpbuf, sizeof (tmpbuf), "0x%" PRIx16, disp);
190 n = snprintf (tmpbuf, sizeof (tmpbuf), "%s0x%" PRIx16,
194 n += snprintf (tmpbuf + n, sizeof (tmpbuf) - n, "(%%b%c,%%%ci)",
197 n += snprintf (tmpbuf + n, sizeof (tmpbuf) - n, "(%%%s)",
204 memcpy (&bufp[*bufcntp], tmpbuf, n + 1)
224 char tmpbuf[sizeof ("-0x12345678(%rrrr)")]; local
298 char tmpbuf[sizeof ("-0x12345678(%rrrr,%rrrr,N)")]; local
    [all...]
  /external/openssl/crypto/rand/
rand_unix.c 242 unsigned char tmpbuf[ENTROPY_NEEDED]; local
347 r = read(fd,(unsigned char *)tmpbuf+n, ENTROPY_NEEDED-n);
383 r = RAND_query_egd_bytes(*egdsocket, (unsigned char *)tmpbuf+n,
393 RAND_add(tmpbuf,sizeof tmpbuf,(double)n);
394 OPENSSL_cleanse(tmpbuf,n);
  /external/e2fsprogs/lib/quota/
quotaio_tree.c 135 dqbuf_t tmpbuf = getdqbuf(); local
141 if (!tmpbuf)
145 read_blk(h, nextblk, tmpbuf);
146 ((struct qt_disk_dqdbheader *)tmpbuf)->dqdh_prev_free =
148 write_blk(h, nextblk, tmpbuf);
151 read_blk(h, prevblk, tmpbuf);
152 ((struct qt_disk_dqdbheader *)tmpbuf)->dqdh_next_free =
154 write_blk(h, prevblk, tmpbuf);
159 freedqbuf(tmpbuf);
168 dqbuf_t tmpbuf = getdqbuf() local
    [all...]
  /system/core/logwrapper/
logwrap.c 312 char tmpbuf[256]; local
436 snprintf(tmpbuf, sizeof(tmpbuf),
438 do_log_line(&log_info, tmpbuf);
442 snprintf(tmpbuf, sizeof(tmpbuf),
444 do_log_line(&log_info, tmpbuf);
446 snprintf(tmpbuf, sizeof(tmpbuf),
448 do_log_line(&log_info, tmpbuf);
    [all...]
  /external/libedit/src/
search.c 458 Char tmpbuf[EL_BUFSIZ]; local
462 tmpbuf[0] = '.';
463 tmpbuf[1] = '*';
469 tmplen = c_gets(el, &tmpbuf[LEN],
475 ch = tmpbuf[tmplen];
476 tmpbuf[tmplen] = '\0';
489 (void) Strncpy(tmpbuf, el->el_search.patbuf,
490 sizeof(tmpbuf) / sizeof(*tmpbuf) - 1);
493 (void) Strncpy(&el->el_search.patbuf[2], tmpbuf,
    [all...]
  /external/openssl/apps/
asn1pars.c 96 unsigned char *tmpbuf; local
307 tmpbuf=(unsigned char *)str;
319 tmpbuf+=j;
322 ctmpbuf = tmpbuf;
341 tmpbuf=at->value.asn1_string->data;
344 str=(char *)tmpbuf;
  /external/elfutils/0.153/libelf/
elf_getarsym.c 176 char tmpbuf[17]; local
177 memcpy (tmpbuf, index_hdr->ar_size, 10);
178 tmpbuf[10] = '\0';
179 size_t index_size = atol (tmpbuf);
  /external/wpa_supplicant_8/src/eap_server/
eap_tls_common.h 52 struct wpabuf tmpbuf; member in struct:eap_ssl_data
eap_server_ikev2.c 353 struct wpabuf tmpbuf; local
427 wpabuf_set(&tmpbuf, pos, end - pos);
428 data->in_buf = &tmpbuf;
432 if (data->in_buf == &tmpbuf)
457 if (data->in_buf != &tmpbuf)
  /external/chromium_org/third_party/libvpx/source/libvpx/vp9/encoder/
vp9_resize.c 455 uint8_t *tmpbuf = NULL; local
458 if (!tmpbuf) {
459 tmpbuf = (uint8_t *)malloc(sizeof(uint8_t) * length);
460 otmp = tmpbuf;
481 if (tmpbuf)
482 free(tmpbuf);
516 uint8_t *tmpbuf = (uint8_t *)malloc(sizeof(uint8_t) * local
521 intbuf + width2 * i, width2, tmpbuf);
524 resize_multistep(arrbuf, height, arrbuf + height, height2, tmpbuf);
528 free(tmpbuf);
    [all...]
  /external/libvpx/libvpx/vp9/encoder/
vp9_resize.c 455 uint8_t *tmpbuf = NULL; local
458 if (!tmpbuf) {
459 tmpbuf = (uint8_t *)malloc(sizeof(uint8_t) * length);
460 otmp = tmpbuf;
481 if (tmpbuf)
482 free(tmpbuf);
516 uint8_t *tmpbuf = (uint8_t *)malloc(sizeof(uint8_t) * local
521 intbuf + width2 * i, width2, tmpbuf);
524 resize_multistep(arrbuf, height, arrbuf + height, height2, tmpbuf);
528 free(tmpbuf);
    [all...]
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/encoder/
vp9_resize.c 455 uint8_t *tmpbuf = NULL; local
458 if (!tmpbuf) {
459 tmpbuf = (uint8_t *)malloc(sizeof(uint8_t) * length);
460 otmp = tmpbuf;
481 if (tmpbuf)
482 free(tmpbuf);
516 uint8_t *tmpbuf = (uint8_t *)malloc(sizeof(uint8_t) * local
521 intbuf + width2 * i, width2, tmpbuf);
524 resize_multistep(arrbuf, height, arrbuf + height, height2, tmpbuf);
528 free(tmpbuf);
    [all...]
  /external/chromium_org/third_party/libjpeg_turbo/
turbojpeg.c 678 JSAMPROW *tmpbuf[MAX_COMPONENTS], *tmpbuf2[MAX_COMPONENTS]; local
692 tmpbuf[i]=NULL; _tmpbuf[i]=NULL;
765 tmpbuf[i]=(JSAMPROW *)malloc(sizeof(JSAMPROW)*cinfo->max_v_samp_factor);
766 if(!tmpbuf[i]) _throw("tjEncodeYUV2(): Memory allocation failure");
771 tmpbuf[i][row]=&_tmpbuf_aligned[
802 (*cinfo->cconvert->color_convert)(cinfo, &row_pointer[row], tmpbuf, 0,
804 (cinfo->downsample->downsample)(cinfo, tmpbuf, 0, tmpbuf2, 0);
821 if(tmpbuf[i]!=NULL) free(tmpbuf[i]);
1059 JSAMPLE *_tmpbuf=NULL, *ptr=dstBuf; JSAMPROW *tmpbuf[MAX_COMPONENTS] local
    [all...]
  /external/wpa_supplicant_8/src/eap_peer/
eap_ikev2.c 331 struct wpabuf tmpbuf; local
402 wpabuf_set(&tmpbuf, pos, end - pos);
403 data->in_buf = &tmpbuf;
407 if (data->in_buf == &tmpbuf)
413 if (data->in_buf != &tmpbuf)
eap_tnc.c 211 struct wpabuf tmpbuf; local
284 wpabuf_set(&tmpbuf, pos, end - pos);
285 data->in_buf = &tmpbuf;
339 if (data->in_buf != &tmpbuf)
404 if (data->in_buf == &tmpbuf)
  /external/srec/srec/cfront/
spec_anl.c 423 fftdata *tmpbuf; local
431 tmpbuf = (fftdata *) CALLOC(ns, sizeof(fftdata), "cfront.tmpbuf");
460 tmpbuf[i] = (int)(w1 * inbuf[u] + w2 * inbuf[l]);
464 tmpbuf[i] = inbuf[ns-1];
476 inbuf[i] = tmpbuf[i];
478 FREE((char *) tmpbuf);
  /external/e2fsprogs/intl/
vasnprintf.c 271 CHAR_T tmpbuf[700]; local
485 if (tmp_length <= sizeof (tmpbuf) / sizeof (CHAR_T))
486 tmp = tmpbuf;
837 if (tmp != tmpbuf)
  /external/openssl/crypto/pkcs7/
pk7_smime.c 562 BIO *tmpbuf, *bread; local
564 if(!(tmpbuf = BIO_new(BIO_f_buffer()))) {
569 if(!(bread = BIO_push(tmpbuf, tmpmem))) {
571 BIO_free_all(tmpbuf);

Completed in 598 milliseconds

1 2 3