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

  /external/tensorflow/tensorflow/lite/experimental/micro/examples/micro_speech/micro_features/
fft_util.cc 38 size_t scratch_size = 0; local
40 kiss_fftr_alloc(state->fft_size, 0, nullptr, &scratch_size);
45 STATIC_ALLOC_ENSURE_ARRAY_SIZE(state->scratch, scratch_size);
46 state->scratch_size = scratch_size;
48 kfft_cfg = kiss_fftr_alloc(state->fft_size, 0, state->scratch, &scratch_size);
fft.h 38 size_t scratch_size; member in struct:FftState
  /external/tensorflow/tensorflow/lite/experimental/microfrontend/lib/
fft_util.c 44 size_t scratch_size = 0; local
46 kiss_fftr_alloc(state->fft_size, 0, NULL, &scratch_size);
51 state->scratch = malloc(scratch_size);
56 state->scratch_size = scratch_size;
58 kfft_cfg = kiss_fftr_alloc(state->fft_size, 0, state->scratch, &scratch_size);
fft_io.c 21 fprintf(fp, "static char fft_scratch[%zu];\n", state->scratch_size);
32 fprintf(fp, "%s->scratch_size = %zu;\n", variable, state->scratch_size);
fft.h 36 size_t scratch_size; member in struct:FftState
  /external/harfbuzz_ng/src/
hb-graphite2.cc 258 unsigned int scratch_size; local
259 hb_buffer_t::scratch_buffer_t *scratch = buffer->get_scratch_buffer (&scratch_size);
296 scratch = buffer->get_scratch_buffer (&scratch_size);
298 DIV_CEIL (sizeof (hb_codepoint_t) * glyph_count, sizeof (*scratch))) > scratch_size)
306 scratch = buffer->get_scratch_buffer (&scratch_size);
313 assert (_consumed <= scratch_size); \
315 scratch_size -= _consumed; \
hb-coretext.cc 606 unsigned int scratch_size; local
607 hb_buffer_t::scratch_buffer_t *scratch = buffer->get_scratch_buffer (&scratch_size);
613 if (unlikely (_consumed > scratch_size)) \
619 scratch_size -= _consumed; \
683 scratch = buffer->get_scratch_buffer (&scratch_size);
687 scratch_size -= old_scratch_used;
    [all...]
hb-directwrite.cc 526 unsigned int scratch_size; local
527 hb_buffer_t::scratch_buffer_t *scratch = buffer->get_scratch_buffer (&scratch_size);
532 assert (_consumed <= scratch_size); \
534 scratch_size -= _consumed; \
656 unsigned int glyphs_size = (scratch_size * sizeof (int) - 2)
hb-uniscribe.cc 723 unsigned int scratch_size; local
724 hb_buffer_t::scratch_buffer_t *scratch = buffer->get_scratch_buffer (&scratch_size);
730 assert (_consumed <= scratch_size); \
732 scratch_size -= _consumed; \
773 unsigned int glyphs_size = (scratch_size * sizeof (int) - 2)
  /external/mesa3d/src/gallium/drivers/radeonsi/
si_cp_dma.c 364 unsigned scratch_size = SI_CPDMA_ALIGNMENT * 2; local
372 sctx->scratch_buffer->b.b.width0 < scratch_size) {
378 scratch_size, 256);
  /external/mesa3d/src/amd/vulkan/
radv_device.c 2037 uint32_t scratch_size = 0; local
    [all...]
radv_private.h 562 uint32_t scratch_size; member in struct:radv_queue
    [all...]
  /external/epid-sdk/epid/common/math/src/
ecgroup.c 63 int scratch_size = 0; local
134 ipp_status = ippsGFpECScratchBufferSize(1, state, &scratch_size);
144 scratch_buffer = (OctStr)SAFE_ALLOC(scratch_size);
    [all...]
  /external/flatbuffers/include/flatbuffers/
flatbuffers.h 780 uoffset_t scratch_size() const { function in class:flatbuffers::vector_downward
869 auto old_scratch_size = scratch_size();
    [all...]
  /external/tensorflow/tensorflow/stream_executor/
dnn.h 781 size_t scratch_size() const { return scratch_size_; } function in class:stream_executor::dnn::ProfileResult
    [all...]

Completed in 371 milliseconds