HomeSort by relevance Sort by last modified time
    Searched refs:intbuf (Results 1 - 9 of 9) sorted by null

  /frameworks/av/media/libstagefright/codecs/aacenc/inc/
aacenc_core.h 66 short *intbuf; member in struct:__anon40051
  /frameworks/av/media/libstagefright/codecs/aacenc/src/
aacenc_core.c 232 if(hAacEnc->intbuf)
234 mem_free(pMemOP, hAacEnc->intbuf, VO_INDEX_ENC_AAC);
235 hAacEnc->intbuf = NULL;
aacenc.c 91 hAacEnc->intbuf = (short *)mem_malloc(pMemOP, AACENC_BLOCKSIZE*MAX_CHANNELS*sizeof(short), 32, VO_INDEX_ENC_AAC);
92 if(NULL == hAacEnc->intbuf)
192 hAacEnc->voMemop->Copy(VO_INDEX_ENC_AAC, hAacEnc->intbuf + hAacEnc->intlen,
195 hAacEnc->encbuf = hAacEnc->intbuf;
231 hAacEnc->voMemop->Copy(VO_INDEX_ENC_AAC, hAacEnc->intbuf,
  /external/valgrind/VEX/priv/
main_util.c 344 HChar intbuf[100]; /* big enough for a 64-bit # in base 2 */ local
428 convert_int(intbuf, l, 10/*base*/, True/*signed*/,
431 len2 = vex_strlen(intbuf);
434 PAD(len1); PUTSTR(intbuf); PAD(len3);
450 convert_int(intbuf, l, base, False/*unsigned*/, hexcaps);
452 len2 = vex_strlen(intbuf);
455 PAD(len1); PUTSTR(intbuf); PAD(len3);
462 convert_int(intbuf, l, 16/*base*/, False/*unsigned*/, hexcaps);
464 len2 = vex_strlen(intbuf)+2;
467 PAD(len1); PUT('0'); PUT('x'); PUTSTR(intbuf); PAD(len3)
    [all...]
  /prebuilts/go/darwin-x86/src/fmt/
format.go 49 // intbuf is large enough to store %b of an int64 with a sign and
51 intbuf [68]byte
136 buf := f.intbuf[0:]
140 // into the already allocated intbuf with a capacity of 68 bytes.
200 buf := f.intbuf[0:]
201 // The already allocated f.intbuf with a capacity of 68 bytes
416 buf := f.intbuf[:0]
431 buf := f.intbuf[:0]
443 buf := f.intbuf[:0]
459 num := strconv.AppendFloat(f.intbuf[:1], v, byte(verb), prec, size
    [all...]
fmt_test.go 366 // Test correct f.intbuf overflow checks.
422 // Test correct f.intbuf boundary checks.
    [all...]
  /prebuilts/go/linux-x86/src/fmt/
format.go 49 // intbuf is large enough to store %b of an int64 with a sign and
51 intbuf [68]byte
136 buf := f.intbuf[0:]
140 // into the already allocated intbuf with a capacity of 68 bytes.
200 buf := f.intbuf[0:]
201 // The already allocated f.intbuf with a capacity of 68 bytes
416 buf := f.intbuf[:0]
431 buf := f.intbuf[:0]
443 buf := f.intbuf[:0]
459 num := strconv.AppendFloat(f.intbuf[:1], v, byte(verb), prec, size
    [all...]
fmt_test.go 366 // Test correct f.intbuf overflow checks.
422 // Test correct f.intbuf boundary checks.
    [all...]
  /external/libvpx/libvpx/vp9/encoder/
vp9_resize.c 427 uint8_t *intbuf = (uint8_t *)malloc(sizeof(uint8_t) * width2 * height); local
432 if (intbuf == NULL || tmpbuf == NULL || arrbuf == NULL || arrbuf2 == NULL)
439 resize_multistep(input + in_stride * i, width, intbuf + width2 * i, width2,
442 fill_col_to_arr(intbuf + i, width2, height, arrbuf);
448 free(intbuf);
716 uint16_t *intbuf = (uint16_t *)malloc(sizeof(uint16_t) * width2 * height); local
721 if (intbuf == NULL || tmpbuf == NULL || arrbuf == NULL || arrbuf2 == NULL)
725 intbuf + width2 * i, width2, tmpbuf, bd);
728 highbd_fill_col_to_arr(intbuf + i, width2, height, arrbuf);
735 free(intbuf);
    [all...]

Completed in 338 milliseconds