HomeSort by relevance Sort by last modified time
    Searched defs:Scratch (Results 1 - 19 of 19) sorted by null

  /external/tensorflow/tensorflow/core/framework/
node_def_util.h 145 struct Scratch {
157 // which stores a Tensor object directly. The Scratch object will also go
159 bool EqualAttrs(AttrSlice other, Scratch* scratch) const;
  /frameworks/av/media/libeffects/lvm/lib/SpectrumAnalyzer/src/
LVPSA_Init.c 59 INST_ALLOC Scratch;
93 InstAlloc_Init( &Scratch , pMemoryTable->Region[LVPSA_MEMREGION_SCRATCH].pBaseAddress);
LVPSA_Memory.c 57 INST_ALLOC Scratch;
64 InstAlloc_Init( &Scratch , LVM_NULL);
139 * Scratch memory
142 InstAlloc_AddMember( &Scratch, 2 * pInitParams->MaxInputBlockSize * sizeof(LVM_INT16) );
144 InstAlloc_AddMember( &Scratch, 2 * pInitParams->MaxInputBlockSize * sizeof(LVM_FLOAT) );
146 pMemoryTable->Region[LVPSA_MEMREGION_SCRATCH].Size = InstAlloc_GetTotal(&Scratch);
  /external/gemmlowp/meta/
streams.h 64 static int Scratch(const RowMajor& params, int lanes_count, int pack_size) {
87 static int Scratch(const RowMajorWithSum& params, int lanes_count,
112 static int Scratch(const ColumnMajorWithSum& params, int lanes_count,
153 static int Scratch(const RowMajor& params) { return PackedStride(params); }
161 std::cout << " scratch: " << Scratch(params) << std::endl;
210 static int Scratch(const RowMajorWithSum& params) {
221 std::cout << " scratch: " << Scratch(params) << std::endl;
275 static int Scratch(const ColumnMajorWithSum& params)
    [all...]
  /device/linaro/bootloader/edk2/DuetPkg/FSVariable/
FSVariable.h 98 VOID *Scratch; // Buffer used during reclaim
  /device/linaro/bootloader/edk2/ShellPkg/Library/UefiShellDebug1CommandsLib/
LoadPciRom.c 221 UINT8 *Scratch;
303 Scratch = AllocateZeroPool (ScratchSize);
304 if (Scratch != NULL) {
311 Scratch,
320 FreePool (Scratch);
  /device/linaro/bootloader/edk2/DuetPkg/PciBusNoEnumerationDxe/
PciOptionRomSupport.c 426 UINT8 *Scratch;
500 Scratch = AllocatePool (ScratchSize);
501 if (Scratch != NULL) {
508 Scratch,
517 gBS->FreePool (Scratch);
PciRomTable.c 131 UINT8 *Scratch;
220 Scratch = AllocatePool (ScratchSize);
221 if (Scratch != NULL) {
228 Scratch,
237 gBS->FreePool (Scratch);
  /device/linaro/bootloader/edk2/MdeModulePkg/Bus/Pci/PciBusDxe/
PciOptionRomSupport.c 54 VOID *Scratch;
136 Scratch = AllocatePool (ScratchSize);
137 if (Scratch == NULL) {
147 Scratch,
150 FreePool (Scratch);
  /external/clang/lib/ASTMatchers/
ASTMatchersInternal.cpp 332 StringRef getNodeName(const NamedDecl &Node, llvm::SmallString<128> &Scratch) {
339 Scratch.clear();
340 llvm::raw_svector_ostream OS(Scratch);
348 StringRef getNodeName(const RecordDecl &Node, llvm::SmallString<128> &Scratch) {
352 Scratch.clear();
353 return ("(anonymous " + Node.getKindName() + ")").toStringRef(Scratch);
357 llvm::SmallString<128> &Scratch) {
406 llvm::SmallString<128> Scratch;
407 StringRef NodeName = getNodeName(Node, Scratch);
415 llvm::SmallString<128> Scratch;
    [all...]
  /external/gemmlowp/eight_bit_int_gemm/
eight_bit_int_gemm.cc 146 class Scratch {
148 Scratch() : buffer_(), buffer_32_(nullptr), size_(0) {}
176 Scratch* global_scratch = nullptr;
178 Scratch* GetOrCreateGlobalScratch() {
180 global_scratch = new Scratch();
251 // Assure enough scratch memory is allocated and run the fast path gemm.
259 Scratch* scratch = GetOrCreateGlobalScratch(); local
262 scratch->AssureSize(meta::gemm_q8_scratch(m, n, k, max_num_threads));
264 scratch->buffer(), lhs, rhs, m, n, k, lhs_offset
283 Scratch* scratch = GetOrCreateGlobalScratch(); local
360 Scratch* scratch = GetOrCreateGlobalScratch(); local
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/Mips/
MipsExpandPseudo.cpp 110 unsigned Scratch = I->getOperand(7).getReg();
146 BuildMI(loop1MBB, DL, TII->get(LL), Scratch).addReg(Ptr).addImm(0);
148 .addReg(Scratch)
158 BuildMI(loop2MBB, DL, TII->get(Mips::AND), Scratch)
159 .addReg(Scratch, RegState::Kill)
161 BuildMI(loop2MBB, DL, TII->get(Mips::OR), Scratch)
162 .addReg(Scratch, RegState::Kill)
164 BuildMI(loop2MBB, DL, TII->get(SC), Scratch)
165 .addReg(Scratch, RegState::Kill)
169 .addReg(Scratch, RegState::Kill
    [all...]
MipsISelLowering.cpp     [all...]
  /external/swiftshader/third_party/subzero/src/
IceRegistersARM32.h 30 #define X(val, encode, name, cc_arg, scratch, preserved, stackptr, frameptr, \
44 #define X(val, encode, name, cc_arg, scratch, preserved, stackptr, frameptr, \
55 #define X(val, encode, name, cc_arg, scratch, preserved, stackptr, frameptr, \
66 #define X(val, encode, name, cc_arg, scratch, preserved, stackptr, frameptr, \
77 #define X(val, encode, name, cc_arg, scratch, preserved, stackptr, frameptr, \
89 unsigned Scratch : 1;
117 #define X(val, encode, name, cc_arg, scratch, preserved, stackptr, frameptr, \
132 #define X(val, encode, name, cc_arg, scratch, preserved, stackptr, frameptr, \
167 #define X(val, encode, name, cc_arg, scratch, preserved, stackptr, frameptr, \
187 #define X(val, encode, name, cc_arg, scratch, preserved, stackptr, frameptr,
    [all...]
  /external/tensorflow/tensorflow/core/kernels/
meta_support.cc 45 class Scratch : public ResourceBase {
47 Scratch() : scratch_(new uint8_t[kScratchSize]) {
48 // Make sure scratch is aligned to 32 bytes. Scratch object owns the
49 // scratch buffer.
65 Scratch* scratch = nullptr; local
66 std::function<Status(Scratch**)> creator = [](Scratch** resource) {
67 *resource = new Scratch();
    [all...]
  /device/linaro/bootloader/edk2/BaseTools/Source/C/Common/
Decompress.c 85 Sd - The global scratch data
137 Sd - The global scratch data.
172 Sd - The global scratch data
303 Sd - the global scratch data
360 Sd - The global scratch data
443 Sd - the global scratch data
539 Sd - The global scratch data.
605 Sd - The global scratch data
677 ScratchSize - The size of scratch buffer.
681 EFI_SUCCESS - The size of destination buffer and the size of scratch buffer are successfully retrieved.
    [all...]
  /device/linaro/bootloader/edk2/BaseTools/Source/C/TianoCompress/
TianoCompress.c     [all...]
  /external/swiftshader/third_party/LLVM/lib/Target/ARM/
ARMLoadStoreOptimizer.cpp 92 ARMCC::CondCodes Pred, unsigned PredReg, unsigned Scratch,
105 unsigned Scratch,
111 unsigned Scratch, MemOpQueue &MemOps,
293 unsigned PredReg, unsigned Scratch, DebugLoc dl,
328 // Use the scratch register to use as a new base.
329 NewBase = Scratch;
374 unsigned Scratch,
408 Pred, PredReg, Scratch, dl, Regs))
441 unsigned Scratch, MemOpQueue &MemOps,
493 Base, false, Opcode, Pred, PredReg, Scratch, dl, Merges)
    [all...]
  /external/clang/lib/AST/
ExprConstant.cpp     [all...]

Completed in 1563 milliseconds