Searched refs:n_blocks (Results 1 - 13 of 13) sorted by relevance
/third_party/node/deps/v8/src/diagnostics/ |
H A D | basic-block-profiler.cc | 20 BasicBlockProfilerData::BasicBlockProfilerData(size_t n_blocks) in BasicBlockProfilerData() argument 21 : block_ids_(n_blocks), counts_(n_blocks, 0) {} in BasicBlockProfilerData() 36 DCHECK(offset < n_blocks()); in SetBlockId() 43 for (size_t i = 0; i < n_blocks(); ++i) { 48 BasicBlockProfilerData* BasicBlockProfiler::NewData(size_t n_blocks) { 50 auto data = std::make_unique<BasicBlockProfilerData>(n_blocks); 96 int id_array_size_in_bytes = static_cast<int>(n_blocks() * kBlockIdSlotSize); in CopyToJSHeap() 99 n_blocks()); // Overflow in CopyToJSHeap() 102 for (int i = 0; i < static_cast<int>(n_blocks()); in CopyToJSHeap() [all...] |
H A D | basic-block-profiler.h | 26 explicit BasicBlockProfilerData(size_t n_blocks); 35 size_t n_blocks() const { in n_blocks() function in v8::internal::BasicBlockProfilerData 82 BasicBlockProfilerData* NewData(size_t n_blocks);
|
/third_party/ffmpeg/libavcodec/ |
H A D | smc.c | 75 if (total_blocks < !!n_blocks) \ 92 int n_blocks; in smc_decode_stream() local 148 n_blocks = GET_BLOCK_COUNT(); in smc_decode_stream() 149 while (n_blocks--) { in smc_decode_stream() 157 n_blocks = GET_BLOCK_COUNT(); in smc_decode_stream() 173 while (n_blocks--) { in smc_decode_stream() 190 n_blocks = GET_BLOCK_COUNT(); in smc_decode_stream() 191 n_blocks *= 2; in smc_decode_stream() 215 while (n_blocks--) { in smc_decode_stream() 237 n_blocks in smc_decode_stream() [all...] |
H A D | rpza.c | 122 int n_blocks = (opcode & 0x1f) + 1; /* Extract block counter from opcode */ in rpza_decode_stream() local 133 n_blocks = 1; in rpza_decode_stream() 137 n_blocks = FFMIN(n_blocks, total_blocks); in rpza_decode_stream() 143 while (n_blocks--) { in rpza_decode_stream() 152 while (n_blocks--) { in rpza_decode_stream() 196 if (bytestream2_get_bytes_left(&s->gb) < n_blocks * 4) in rpza_decode_stream() 198 while (n_blocks--) { in rpza_decode_stream()
|
H A D | rpzaenc.c | 554 int n_blocks; in rpza_encode_stream() local 584 n_blocks = 0; in rpza_encode_stream() 587 while (n_blocks < 32 && block_counter + n_blocks < total_blocks) { in rpza_encode_stream() 589 block_offset = get_block_info(&bi, block_counter + n_blocks); in rpza_encode_stream() 607 if (n_blocks) { in rpza_encode_stream() 610 put_bits(&s->pb, 8, 0x80 | (n_blocks - 1)); in rpza_encode_stream() 611 block_counter += n_blocks; in rpza_encode_stream() 625 // &prev_pixels[block_offset], &bi, block_counter + n_blocks); in rpza_encode_stream() 627 n_blocks in rpza_encode_stream() [all...] |
H A D | twinvq.c | 632 static void linear_perm(int16_t *out, int16_t *in, int n_blocks, int size) in linear_perm() argument 634 int block_size = size / n_blocks; in linear_perm() 638 out[i] = block_size * (in[i] % n_blocks) + in[i] / n_blocks; in linear_perm()
|
H A D | wmavoice.c | 101 uint8_t n_blocks; ///< amount of blocks per frame (each block member 102 ///< (contains 160/#n_blocks samples) 103 uint8_t log_n_blocks; ///< log2(#n_blocks) 1461 fac = (block_idx + 0.5) / frame_desc->n_blocks; in synth_block() 1504 block_nsamples = MAX_FRAMESIZE / frame_descs[bd_idx].n_blocks; in synth_frame() 1512 n_blocks_x2 = frame_descs[bd_idx].n_blocks << 1; in synth_frame() 1522 for (n = 0; n < frame_descs[bd_idx].n_blocks; n++) { in synth_frame() 1527 frame_descs[bd_idx].n_blocks) >> log_n_blocks_x2; in synth_frame() 1545 for (n = 0; n < frame_descs[bd_idx].n_blocks; n++) { in synth_frame() 1646 s->last_pitch_val = pitch[frame_descs[bd_idx].n_blocks in synth_frame() [all...] |
/third_party/pulseaudio/src/pulsecore/ |
H A D | memblock.c | 66 * number of active blocks (seg->n_blocks) using its shared memory. 153 unsigned n_blocks; member 265 if ((unsigned) (idx = pa_atomic_inc(&p->n_init)) >= p->n_blocks) in mempool_allocate_slot() 591 pa_assert(segment->n_blocks >= 1); in memblock_free() 592 if (-- segment->n_blocks <= 0) in memblock_free() 756 pa_assert(segment->n_blocks >= 1); in memblock_replace_import() 757 if (-- segment->n_blocks <= 0) in memblock_replace_import() 804 p->n_blocks = PA_MEMPOOL_SLOTS_MAX; in pa_mempool_new() 806 p->n_blocks = (unsigned) (size / p->block_size); in pa_mempool_new() 808 if (p->n_blocks < in pa_mempool_new() [all...] |
H A D | memblockq.h | 94 unsigned n_blocks; member 110 pa_assert(bq->n_blocks >= 1); in drop_block() 140 bq->n_blocks--; in drop_block()
|
H A D | memblockq.c | 299 bq->n_blocks++; in pa_memblockq_push() 368 bq->n_blocks++; in pa_memblockq_push() 938 pa_assert(bq->n_blocks == 0); in pa_memblockq_silence() 944 return bq->n_blocks; in pa_memblockq_get_nblocks()
|
H A D | memblock.h | 95 unsigned n_blocks; member
|
/third_party/node/deps/v8/src/compiler/ |
H A D | basic-block-instrumentor.cc | 62 size_t n_blocks = schedule->RpoBlockCount() - 1; in Instrument() local 63 BasicBlockProfilerData* data = BasicBlockProfiler::Get()->NewData(n_blocks); in Instrument() 99 for (BasicBlockVector::iterator it = blocks->begin(); block_number < n_blocks; in Instrument()
|
/third_party/mesa3d/src/panfrost/perf/ |
H A D | pan_perf.c | 80 uint32_t n_blocks = 2 + l2_slices + dev->core_id_range; in panfrost_perf_init() local 81 perf->n_counter_values = PAN_COUNTERS_PER_CATEGORY * n_blocks; in panfrost_perf_init()
|
Completed in 12 milliseconds