HomeSort by relevance Sort by last modified time
    Searched defs:scratch (Results 1 - 25 of 196) sorted by null

1 2 3 4 5 6 7 8

  /device/google/contexthub/firmware/lib/libc/
strlen.c 58 int scratch; local
67 : "=&r" (len), "=&r" (scratch) : "r" (str) : "memory", "cc");
75 : "=&r" (end), "=&r" (scratch) : "0" (str) : "memory", "cc");
  /art/compiler/utils/
swap_space_test.cc 37 ScratchFile scratch; local
38 int fd = scratch.GetFd();
39 unlink(scratch.GetFilename().c_str());
72 scratch.Close();
  /external/aac/libFDK/src/mips/
fft_rad2_mips.cpp 126 int32c scratch[1024]; local
156 mips_fft32(dout, din, twiddles, scratch, ldn);
  /external/blktrace/btt/
trace.c 61 char scratch[15]; local
71 make_dev_hdr(scratch, 15, iop->dip, 1),
  /external/mesa3d/src/gallium/drivers/swr/
swr_scratch.cpp 71 /* Copy user_buffer to scratch */
82 struct swr_scratch_buffers *scratch; local
84 scratch = CALLOC_STRUCT(swr_scratch_buffers);
85 ctx->scratch = scratch;
91 struct swr_scratch_buffers *scratch = ctx->scratch; local
93 if (scratch) {
94 AlignedFree(scratch->vs_constants.base);
95 AlignedFree(scratch->fs_constants.base)
    [all...]
  /external/guava/guava/src/com/google/common/hash/
AbstractByteHasher.java 31 * Abstract {@link Hasher} that handles converting primitives to bytes using a scratch {@code
38 private final ByteBuffer scratch = ByteBuffer.allocate(8).order(ByteOrder.LITTLE_ENDIAN); field in class:AbstractByteHasher
86 update(scratch.array(), 0, bytes);
88 scratch.clear();
95 scratch.putShort(s);
101 scratch.putInt(i);
107 scratch.putLong(l);
113 scratch.putChar(c);
  /external/icu/icu4c/source/i18n/
bocsu.cpp 102 char scratch[64]; local
107 char *buffer=sink.GetAppendBuffer(1, length*2, scratch, (int32_t)sizeof(scratch), &capacity);
113 buffer=scratch;
114 capacity=(int32_t)sizeof(scratch);
  /external/tensorflow/tensorflow/compiler/xla/service/gpu/
convolution_thunk.cc 55 se::DeviceMemoryBase scratch = local
61 result_buffer, scratch, stream));
63 void* ptrs[] = {result_buffer.opaque(), scratch.opaque()};
  /external/mesa3d/src/mesa/drivers/dri/nouveau/
nouveau_scratch.c 39 struct nouveau_scratch_state *scratch = local
40 &to_nouveau_context(ctx)->scratch;
43 if (scratch->buf && size <= NOUVEAU_SCRATCH_SIZE - scratch->offset) {
44 nouveau_bo_ref(scratch->bo[scratch->index], bo);
46 buf = scratch->buf + scratch->offset;
47 *offset = scratch->offset;
48 scratch->offset += size
76 struct nouveau_scratch_state *scratch = local
91 struct nouveau_scratch_state *scratch = local
    [all...]
  /external/tensorflow/tensorflow/core/distributed_runtime/rpc/
grpc_util.h 103 string scratch = local
106 return ::grpc::Status(static_cast<::grpc::StatusCode>(s.code()), scratch);
  /external/tensorflow/tensorflow/core/lib/gtl/
edit_distance.h 63 int64* scratch = scratch_holder.data(); local
67 for (size_t j = 1; j < t_size; ++j) scratch[j - 1] = j;
70 // Invariant: scratch[j - 1] equals cost(i - 1, j).
75 // scratch[k - 1] = cost(i, k) for 0 < k < j.
76 // scratch[k - 1] = cost(i - 1, k) for j <= k <= t_size.
81 const int deletion_cost = scratch[j - 1] + 1;
88 substitution_base_cost = scratch[j - 1]; // = cost(i - 1, j)
89 scratch[j - 1] = cheapest; // = cost(i, j)
93 return scratch[t_size - 1];
  /external/tensorflow/tensorflow/lite/experimental/micro/examples/micro_speech/micro_features/
fft.h 37 char scratch[2848]; member in struct:FftState
  /external/tensorflow/tensorflow/lite/experimental/microfrontend/lib/
fft.h 35 void* scratch; member in struct:FftState
  /external/toybox/toys/example/
demo_scankey.c 25 char c = 'X', scratch[16]; local
29 memset(scratch, 0, 16);
44 key = scan_key_getsize(scratch, -1*!!t[0], &width, &height);
48 if (*scratch) {
51 while (0<(key = scan_key_getsize(scratch, 0, &width, &height)))
  /external/tensorflow/tensorflow/core/kernels/
sparse_xent_op.cc 76 Tensor scratch; variable
78 labels.shape(), &scratch));
94 scratch.vec<T>(), loss_out->vec<T>(), back_out->matrix<T>());
106 typename TTypes<T>::Vec scratch, typename TTypes<T>::Vec loss,
109 scratch, loss, backprop);
xent_op.cc 66 Tensor scratch; variable
70 &scratch));
86 labels_in.matrix<T>(), scratch.matrix<T>(), loss_out->vec<T>(),
94 scratch.matrix<T>(), loss_out->vec<T>(), back_out->matrix<T>());
111 typename TTypes<T>::Matrix scratch,
115 logits, labels, scratch, loss, backprop);
  /art/compiler/optimizing/
parallel_move_test.cc 116 Location scratch = GetScratchLocation(kind); variable
117 if (scratch.Equals(Location::NoLocation())) {
121 scratch = (kind == Location::kRegister) ? Location::RegisterLocation(scratch_index_)
125 return scratch;
  /device/linaro/hikey/hifi/xaf/hifi-dpf/include/
xf-core.h 129 /* ...scratch memory pointer */
130 void *scratch; member in struct:xf_core_data
  /external/gemmlowp/meta/
multi_thread_gemm.h 30 int kernel_k, std::uint8_t* scratch, int m_start,
35 task.scratch = scratch;
52 return scratch + Executor::template EstimateScratchSize<Params>(
75 std::uint8_t* scratch = params.scratch; local
80 scratch = PrepareGemmTask<Executor, Params>(
81 params, kernel_m, kernel_n, kernel_k, scratch, i * m_chunk, m_chunk,
86 scratch, sum_m, params.m - sum_m, 0,
91 scratch = PrepareGemmTask<Executor, Params>
    [all...]
  /external/icu/icu4c/source/common/
bytesinkutil.cpp 24 char scratch[200]; local
37 scratch, UPRV_LENGTHOF(scratch), &capacity);
139 char* scratch,
158 return scratch;
  /external/libopus/celt/mips/
kiss_fft_mipsr1.h 99 kiss_fft_cpx scratch[13]; local
128 scratch[0] = *Fout0;
131 C_MUL(scratch[1] ,*Fout1, tw[u*fstride]);
132 C_MUL(scratch[2] ,*Fout2, tw[2*u*fstride]);
133 C_MUL(scratch[3] ,*Fout3, tw[3*u*fstride]);
134 C_MUL(scratch[4] ,*Fout4, tw[4*u*fstride]);
136 C_ADD( scratch[7],scratch[1],scratch[4]);
137 C_SUB( scratch[10],scratch[1],scratch[4])
    [all...]
  /external/libxaac/decoder/
ixheaacd_mps_hybrid_filt.c 182 ia_cmplx_w32_struct scratch[MAX_HYBRID_ONLY_BANDS_PER_QMF][MAX_TIME_SLOTS]; local
221 scratch, num_samples, ixheaacd_ia_mps_hyb_filter_coeff_8);
225 hyb[n][k].re = (FLOAT32)scratch[k + 6][n].re;
226 hyb[n][k + 2].re = (FLOAT32)scratch[k][n].re;
227 hyb[n][k + 4].re = (FLOAT32)scratch[k + 2][n].re;
228 hyb[n][k + 4].re += (FLOAT32)scratch[5 - k][n].re;
230 hyb[n][k].im = (FLOAT32)scratch[k + 6][n].im;
231 hyb[n][k + 2].im = (FLOAT32)scratch[k][n].im;
232 hyb[n][k + 4].im = (FLOAT32)scratch[k + 2][n].im;
233 hyb[n][k + 4].im += (FLOAT32)scratch[5 - k][n].im
    [all...]
  /external/protobuf/src/google/protobuf/
generated_message_reflection_unittest.cc 119 string scratch; local
122 &reflection->GetStringReference(message, F("optional_string"), &scratch))
127 0, &scratch))
    [all...]
  /external/tensorflow/tensorflow/core/graph/
optimizer_cse.cc 63 AttrSlice::Scratch* scratch);
133 AttrSlice::Scratch* scratch) {
146 if (!a->attrs().EqualAttrs(b->attrs(), scratch)) return false;
185 // Scratch space for Equivalent calls. Allocated here and passed in to
188 AttrSlice::Scratch scratch; local
207 } else if (Equivalent(*candidate, n, &scratch)) {
  /external/tensorflow/tensorflow/core/lib/io/
inputbuffer.cc 136 uint8 scratch = 0; local
137 auto* p = reinterpret_cast<char*>(&scratch);
144 *result |= (static_cast<T>(scratch) & 127) << shift;
145 if (!(scratch & 128)) return Status::OK();

Completed in 767 milliseconds

1 2 3 4 5 6 7 8