Searched refs:in_buff (Results 1 – 3 of 3) sorted by relevance
/external/adhd/cras/src/tests/ |
D | fmt_conv_unittest.cc | 119 int16_t *in_buff; in TEST() local 141 in_buff = (int16_t *)ralloc(buf_size * 2 * cras_get_format_bytes(&in_fmt)); in TEST() 144 (uint8_t *)in_buff, in TEST() 150 if (in_buff[i] != out_buff[i*2] || in TEST() 151 in_buff[i] != out_buff[i*2 + 1]) { in TEST() 158 free(in_buff); in TEST() 169 int16_t *in_buff; in TEST() local 192 in_buff = (int16_t *)malloc(buf_size * 2 * cras_get_format_bytes(&in_fmt)); in TEST() 195 in_buff[i * 2] = 13450; in TEST() 196 in_buff[i * 2 + 1] = -13449; in TEST() [all …]
|
/external/lz4/programs/ |
D | lz4io.c | 337 char* in_buff; in LZ4IO_compressFilename_Legacy() local 354 in_buff = (char*)malloc(LEGACY_BLOCKSIZE); in LZ4IO_compressFilename_Legacy() 356 if (!in_buff || !out_buff) EXM_THROW(21, "Allocation error : not enough memory"); in LZ4IO_compressFilename_Legacy() 367 size_t const inSize = (int) fread(in_buff, (size_t)1, (size_t)LEGACY_BLOCKSIZE, finput); in LZ4IO_compressFilename_Legacy() 373 … outSize = compressionFunction(in_buff, out_buff+4, (int)inSize, outBuffSize, compressionlevel); in LZ4IO_compressFilename_Legacy() 399 free(in_buff); in LZ4IO_compressFilename_Legacy() 808 char* const in_buff = (char*)malloc(LZ4_compressBound(LEGACY_BLOCKSIZE)); in LZ4IO_decodeLegacyStream() local 810 if (!in_buff || !out_buff) EXM_THROW(51, "Allocation error : not enough memory"); in LZ4IO_decodeLegacyStream() 817 { size_t const sizeCheck = fread(in_buff, 1, 4, finput); in LZ4IO_decodeLegacyStream() 820 blockSize = LZ4IO_readLE32(in_buff); /* Convert to Little Endian */ in LZ4IO_decodeLegacyStream() [all …]
|
/external/freetype/ |
D | ChangeLog.23 | 5919 `in_limit', `pad', `pad_bits', and `in_buff' members.
|