Searched refs:temp (Results 1 – 8 of 8) sorted by relevance
| /lib/xz/ |
| A D | xz_dec_stream.c | 165 if (s->temp.pos == s->temp.size) { in fill_temp() 476 if (dec_vli(s, s->temp.buf, &s->temp.pos, s->temp.size) in dec_block_header() 487 if (dec_vli(s, s->temp.buf, &s->temp.pos, s->temp.size) in dec_block_header() 500 if (s->temp.size - s->temp.pos < 2) in dec_block_header() 511 if (s->temp.buf[s->temp.pos++] != 0x00) in dec_block_header() 517 if (s->temp.size - s->temp.pos < 2) in dec_block_header() 521 if (s->temp.buf[s->temp.pos++] != 0x21) in dec_block_header() 525 if (s->temp.buf[s->temp.pos++] != 0x01) in dec_block_header() 529 if (s->temp.size - s->temp.pos < 1) in dec_block_header() 537 while (s->temp.pos < s->temp.size) in dec_block_header() [all …]
|
| A D | xz_dec_bcj.c | 76 } temp; member 566 s->temp.size -= copy_size; in bcj_flush() 567 memmove(s->temp.buf, s->temp.buf + copy_size, s->temp.size); in bcj_flush() 606 if (s->temp.size < b->out_size - b->out_pos || s->temp.size == 0) { in xz_dec_bcj_run() 608 memcpy(b->out + b->out_pos, s->temp.buf, s->temp.size); in xz_dec_bcj_run() 628 memcpy(s->temp.buf, b->out + b->out_pos, s->temp.size); in xz_dec_bcj_run() 652 b->out = s->temp.buf; in xz_dec_bcj_run() 666 bcj_apply(s, s->temp.buf, &s->temp.filtered, s->temp.size); in xz_dec_bcj_run() 674 s->temp.filtered = s->temp.size; in xz_dec_bcj_run() 731 s->temp.filtered = 0; in xz_dec_bcj_reset() [all …]
|
| A D | xz_dec_lzma2.c | 278 } temp; member 891 memcpy(s->temp.buf + s->temp.size, b->in + b->in_pos, tmp); in lzma2_lzma() 894 memzero(s->temp.buf + s->temp.size + tmp, in lzma2_lzma() 895 sizeof(s->temp.buf) in lzma2_lzma() 899 s->temp.size += tmp; in lzma2_lzma() 916 memmove(s->temp.buf, s->temp.buf + s->rc.in_pos, in lzma2_lzma() 917 s->temp.size); in lzma2_lzma() 922 s->temp.size = 0; in lzma2_lzma() 1119 && s->temp.size in xz_dec_lzma2_run() 1193 s->temp.size = 0; in xz_dec_lzma2_reset() [all …]
|
| /lib/ |
| A D | test_min_heap.c | 101 int i, temp, err; in test_heap_push() local 111 temp = get_random_u32(); in test_heap_push() 112 min_heap_push_inline(&heap, &temp, &funcs, NULL); in test_heap_push() 133 int i, temp, err; in test_heap_pop_push() local 136 temp = min_heap ? 0x80000000 : 0x7FFFFFFF; in test_heap_pop_push() 138 min_heap_push_inline(&heap, &temp, &funcs, NULL); in test_heap_pop_push() 148 min_heap_push_inline(&heap, &temp, &funcs, NULL); in test_heap_pop_push() 152 temp = get_random_u32(); in test_heap_pop_push() 153 min_heap_pop_push_inline(&heap, &temp, &funcs, NULL); in test_heap_pop_push()
|
| A D | decompress_bunzip2.c | 236 unsigned short temp[MAX_HUFCODE_BITS+1]; in get_next_block() local 310 temp[i] = limit[i] = 0; in get_next_block() 317 temp[length[i]]++; in get_next_block() 326 pp += temp[i]; in get_next_block() 339 base[i+1] = pp-(t += temp[i]); in get_next_block() 343 limit[maxLen] = pp+temp[maxLen]-1; in get_next_block()
|
| A D | string_helpers.c | 714 char *temp, *pathname; in kstrdup_quotable_file() local 720 temp = kmalloc(PATH_MAX + 11, GFP_KERNEL); in kstrdup_quotable_file() 721 if (!temp) in kstrdup_quotable_file() 724 pathname = file_path(file, temp, PATH_MAX + 11); in kstrdup_quotable_file() 730 kfree(temp); in kstrdup_quotable_file()
|
| A D | vsprintf.c | 1381 char temp[4] __aligned(2); /* hold each IP quad in reverse order */ in ip4_string() local 1382 int digits = put_dec_trunc8(temp, addr[index]) - temp; in ip4_string() 1391 *p++ = temp[digits]; in ip4_string()
|
| /lib/zstd/decompress/ |
| A D | zstd_decompress_block.c | 1308 … { size_t temp = (offset==3) ? seqState->prevOffset[0] - 1 : seqState->prevOffset[offset]; in ZSTD_decodeSequence() local 1309 …temp -= !temp; /* 0 is not valid: input corrupted => force offset to -1 => corruption detected at … in ZSTD_decodeSequence() 1312 seqState->prevOffset[0] = offset = temp; in ZSTD_decodeSequence()
|
Completed in 29 milliseconds