Searched refs:out_start (Results 1 – 5 of 5) sorted by relevance
/external/llvm/test/CodeGen/X86/ |
D | load-slice.ll | 20 ; Load out[out_start + 8].real, this is base + 8 * 8 + 0. 22 ; Add low slice: out[out_start].real, this is base + 0. 24 ; Load out[out_start + 8].imm, this is base + 8 * 8 + 4. 26 ; Add high slice: out[out_start].imm, this is base + 4. 30 ; Put the results back into out[out_start]. 35 ; Load out[out_start + 8].real, this is base + 8 * 8 + 0. 37 ; Add low slice: out[out_start].real, this is base + 0. 39 ; Load out[out_start + 8].imm, this is base + 8 * 8 + 4. 41 ; Add high slice: out[out_start].imm, this is base + 4. 45 ; Put the results back into out[out_start]. [all …]
|
/external/llvm/test/CodeGen/AArch64/ |
D | arm64-dagcombiner-load-slicing.ll | 15 define void @test(%class.Complex* nocapture %out, i64 %out_start) { 17 %arrayidx = getelementptr inbounds %class.Complex, %class.Complex* %out, i64 %out_start 25 %add = add i64 %out_start, 8 47 define void @test_int(%class.Complex_int* nocapture %out, i64 %out_start) { 49 %arrayidx = getelementptr inbounds %class.Complex_int, %class.Complex_int* %out, i64 %out_start 57 %add = add i64 %out_start, 8 79 define void @test_long(%class.Complex_long* nocapture %out, i64 %out_start) { 81 %arrayidx = getelementptr inbounds %class.Complex_long, %class.Complex_long* %out, i64 %out_start 89 %add = add i64 %out_start, 8
|
/external/xz-embedded/linux/lib/xz/ |
D | xz_dec_stream.c | 49 size_t out_start; member 234 s->out_start = b->out_pos; in dec_block() 244 s->block.uncompressed += b->out_pos - s->out_start; in dec_block() 256 s->crc = xz_crc32(b->out + s->out_start, in dec_block() 257 b->out_pos - s->out_start, s->crc); in dec_block() 260 s->crc = xz_crc64(b->out + s->out_start, in dec_block() 261 b->out_pos - s->out_start, s->crc); in dec_block() 779 size_t out_start; in xz_dec_run() local 786 out_start = b->out_pos; in xz_dec_run() 796 b->out_pos = out_start; in xz_dec_run() [all …]
|
D | xz_dec_bcj.c | 421 size_t out_start; in xz_dec_bcj_run() local 450 out_start = b->out_pos; in xz_dec_bcj_run() 459 bcj_apply(s, b->out, &out_start, b->out_pos); in xz_dec_bcj_run() 469 s->temp.size = b->out_pos - out_start; in xz_dec_bcj_run()
|
/external/toybox/toys/pending/ |
D | xzcat.c | 832 size_t out_start; in xz_dec_bcj_run() local 861 out_start = b->out_pos; in xz_dec_bcj_run() 870 bcj_apply(s, b->out, &out_start, b->out_pos); in xz_dec_bcj_run() 880 s->temp.size = b->out_pos - out_start; in xz_dec_bcj_run() 2375 size_t out_start; member 2549 s->out_start = b->out_pos; in dec_block() 2559 s->block.uncompressed += b->out_pos - s->out_start; in dec_block() 2571 s->crc = xz_crc32(b->out + s->out_start, in dec_block() 2572 b->out_pos - s->out_start, s->crc); in dec_block() 2575 size_t size = b->out_pos - s->out_start; in dec_block() [all …]
|