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

  /frameworks/av/media/libeffects/lvm/lib/Reverb/src/
LVREV_GetInstanceHandle.c 57 INST_ALLOC Temporary;
106 InstAlloc_Init(&Temporary, pMemoryTable->Region[LVM_TEMPORARY_FAST].pBaseAddress);
146 * Set the data, coefficient and temporary memory pointers
159 pLVREV_Private->pScratchDelayLine[i] = InstAlloc_AddMember(&Temporary, sizeof(LVM_INT32) * MaxBlockSize); /* Scratch for each delay line output */
175 pLVREV_Private->pScratchDelayLine[i] = InstAlloc_AddMember(&Temporary, sizeof(LVM_INT32) * MaxBlockSize); /* Scratch for each delay line output */
188 pLVREV_Private->pScratchDelayLine[i] = InstAlloc_AddMember(&Temporary, sizeof(LVM_INT32) * MaxBlockSize); /* Scratch for each delay line output */
203 pLVREV_Private->pScratch = InstAlloc_AddMember(&Temporary, sizeof(LVM_INT32) * MaxBlockSize); /* General purpose scratch */
204 pLVREV_Private->pInputSave = InstAlloc_AddMember(&Temporary, 2 * sizeof(LVM_INT32) * MaxBlockSize); /* Mono->stereo input save for end mix */
LVREV_GetMemoryTable.c 67 INST_ALLOC Temporary;
110 InstAlloc_Init(&Temporary, (void *)LVM_NULL);
196 * Temporary fast memory
198 InstAlloc_AddMember(&Temporary, sizeof(LVM_INT32) * MaxBlockSize); /* General purpose scratch memory */
199 InstAlloc_AddMember(&Temporary, 2*sizeof(LVM_INT32) * MaxBlockSize); /* Mono->stereo input saved for end mix */
205 InstAlloc_AddMember(&Temporary, sizeof(LVM_INT32) * MaxBlockSize); /* A Scratch buffer for each delay line */
213 InstAlloc_AddMember(&Temporary, sizeof(LVM_INT32) * MaxBlockSize); /* A Scratch buffer for each delay line */
221 InstAlloc_AddMember(&Temporary, sizeof(LVM_INT32) * MaxBlockSize); /* A Scratch buffer for each delay line */
225 pMemoryTable->Region[LVM_TEMPORARY_FAST].Size = InstAlloc_GetTotal(&Temporary);
  /external/clang/lib/CodeGen/
CGCall.h 66 /// The temporary alloca.
67 Address Temporary;
76 /// The "is active" insertion point. This instruction is temporary and
91 void addWriteback(LValue srcLV, Address temporary,
93 Writeback writeback = { srcLV, temporary, toUse };
CGObjC.cpp 86 Address Temporary = CreateMemTemp(SubExpr->getType());
87 EmitAnyExprToMem(SubExpr, Temporary, Qualifiers(), /*isInit*/ true);
88 Address BitCast = Builder.CreateBitCast(Temporary, ConvertType(ArgQT));
131 // Allocate the temporary array(s).
    [all...]
  /external/mesa3d/src/gallium/drivers/r300/compiler/
radeon_dataflow_deadcode.c 35 unsigned char Temporary[RC_REGISTER_MAX_INDEX];
82 dst->Temporary[i] = a->Temporary[i] | b->Temporary[i];
130 return &s->R.Temporary[index];
radeon_emulate_branches.c 41 struct proxy_info Temporary[RC_REGISTER_MAX_INDEX];
113 return &sap->Proxies->Temporary[index];
145 * temporary registers.
163 if (proxies->Temporary[index].Proxied) {
167 inst_mov->U.I.DstReg.Index = proxies->Temporary[index].Index;
222 if (IfProxies.Temporary[index].Proxied || ElseProxies.Temporary[index].Proxied) {
224 IfProxies.Temporary[index], ElseProxies.Temporary[index]);
245 unsigned int Temporary:RC_REGISTER_INDEX_BITS
    [all...]
radeon_pair_regalloc.c 66 struct register_info * Temporary;
192 reg = &s->Temporary[*index];
216 /* This functions offsets the temporary register indices by the number
225 s->Temporary[i].Allocated = 1;
226 s->Temporary[i].File = RC_FILE_TEMPORARY;
227 s->Temporary[i].Index = i + s->NumInputs;
732 s.Temporary = memory_pool_malloc(&cc->Pool,
734 memset(s.Temporary, 0, s.NumTemporaries * sizeof(struct register_info));
radeon_pair_schedule.c 139 struct register_state Temporary[RC_REGISTER_MAX_INDEX];
171 return &s->Temporary[index].Values[chan];
    [all...]
  /external/clang/include/clang/Sema/
Lookup.h 122 /// A little identifier for flagging temporary lookup results.
124 Temporary
170 /// Creates a temporary lookup result, initializing its core data
  /external/llvm/include/llvm/IR/
Metadata.h 50 enum StorageType { Uniqued, Distinct, Temporary };
728 /// Metadata nodes can be uniqued, like constants, or distinct. Temporary
734 /// time, if any operand is a temporary node (or an unresolved uniqued node,
735 /// which indicates a transitive temporary operand), the node itself will be
740 /// to be called on some member of the cycle once all temporary nodes have been
792 /// \brief Create a (temporary) clone of this.
821 bool isTemporary() const { return Storage == Temporary; }
823 /// \brief RAUW a temporary.
827 assert(isTemporary() && "Expected temporary node");
835 /// resolved. If \p MDMaterialized is true, then any temporary metadat
    [all...]

Completed in 703 milliseconds