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

1 2 3

  /prebuilts/go/darwin-x86/src/net/
cgo_windows.go 12 func (eai addrinfoErrno) Temporary() bool { return false }
cgo_stub.go 16 func (eai addrinfoErrno) Temporary() bool { return false }
cgo_unix.go 33 func (eai addrinfoErrno) Temporary() bool { return eai == C.EAI_AGAIN }
net.go 382 Temporary() bool // Is the error temporary?
492 type temporary interface { type
493 Temporary() bool
496 func (e *OpError) Temporary() bool {
498 t, ok := ne.Err.(temporary)
499 return ok && t.Temporary()
501 t, ok := e.Err.(temporary)
502 return ok && t.Temporary()
509 func (e *timeoutError) Temporary() bool { return true
    [all...]
  /prebuilts/go/linux-x86/src/net/
cgo_windows.go 12 func (eai addrinfoErrno) Temporary() bool { return false }
cgo_stub.go 16 func (eai addrinfoErrno) Temporary() bool { return false }
cgo_unix.go 33 func (eai addrinfoErrno) Temporary() bool { return eai == C.EAI_AGAIN }
net.go 382 Temporary() bool // Is the error temporary?
492 type temporary interface { type
493 Temporary() bool
496 func (e *OpError) Temporary() bool {
498 t, ok := ne.Err.(temporary)
499 return ok && t.Temporary()
501 t, ok := e.Err.(temporary)
502 return ok && t.Temporary()
509 func (e *timeoutError) Temporary() bool { return true
    [all...]
  /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);
164 * Set the data, coefficient and temporary memory pointers
177 pLVREV_Private->pScratchDelayLine[i] = InstAlloc_AddMember(&Temporary, sizeof(LVM_INT32) * MaxBlockSize); /* Scratch for each delay line output */
193 pLVREV_Private->pScratchDelayLine[i] = InstAlloc_AddMember(&Temporary, sizeof(LVM_INT32) * MaxBlockSize); /* Scratch for each delay line output */
206 pLVREV_Private->pScratchDelayLine[i] = InstAlloc_AddMember(&Temporary, sizeof(LVM_INT32) * MaxBlockSize); /* Scratch for each delay line output */
226 pLVREV_Private->pScratchDelayLine[i] = InstAlloc_AddMember(&Temporary,
247 pLVREV_Private->pScratchDelayLine[i] = InstAlloc_AddMember(&Temporary,
264 pLVREV_Private->pScratchDelayLine[i] = InstAlloc_AddMember(&Temporary,
282 pLVREV_Private->pScratch = InstAlloc_AddMember(&Temporary, sizeof(LVM_INT32) * MaxBlockSize); /* General purpose scratch *
    [all...]
LVREV_GetMemoryTable.c 67 INST_ALLOC Temporary;
110 InstAlloc_Init(&Temporary, (void *)LVM_NULL);
212 * Temporary fast memory
215 InstAlloc_AddMember(&Temporary, sizeof(LVM_INT32) * MaxBlockSize); /* General purpose scratch memory */
216 InstAlloc_AddMember(&Temporary, 2*sizeof(LVM_INT32) * MaxBlockSize); /* Mono->stereo input saved for end mix */
219 InstAlloc_AddMember(&Temporary, sizeof(LVM_FLOAT) * MaxBlockSize);
221 InstAlloc_AddMember(&Temporary, 2 * sizeof(LVM_FLOAT) * MaxBlockSize);
228 InstAlloc_AddMember(&Temporary, sizeof(LVM_INT32) * MaxBlockSize); /* A Scratch buffer for each delay line */
231 InstAlloc_AddMember(&Temporary, sizeof(LVM_FLOAT) * MaxBlockSize);
241 InstAlloc_AddMember(&Temporary, sizeof(LVM_INT32) * MaxBlockSize); /* A Scratch buffer for each delay line *
    [all...]
  /prebuilts/go/darwin-x86/src/crypto/tls/
tls.go 89 func (timeoutError) Temporary() bool { return true }
  /prebuilts/go/linux-x86/src/crypto/tls/
tls.go 89 func (timeoutError) Temporary() bool { return true }
  /external/boringssl/src/ssl/test/runner/
tls.go 91 func (timeoutError) Temporary() bool { return true }
  /prebuilts/go/darwin-x86/src/context/
context.go 164 func (deadlineExceededError) Temporary() bool { return true }
  /prebuilts/go/linux-x86/src/context/
context.go 164 func (deadlineExceededError) Temporary() bool { return true }
  /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 };
  /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...]
  /prebuilts/go/darwin-x86/src/net/url/
url.go 40 type temporary interface { type
41 Temporary() bool
44 func (e *Error) Temporary() bool {
45 t, ok := e.Err.(temporary)
46 return ok && t.Temporary()
url_test.go     [all...]
  /prebuilts/go/darwin-x86/src/syscall/
syscall_plan9.go 26 func (e ErrorString) Temporary() bool {
syscall_unix.go 113 func (e Errno) Temporary() bool {
  /prebuilts/go/linux-x86/src/net/url/
url.go 40 type temporary interface { type
41 Temporary() bool
44 func (e *Error) Temporary() bool {
45 t, ok := e.Err.(temporary)
46 return ok && t.Temporary()
url_test.go     [all...]
  /prebuilts/go/linux-x86/src/syscall/
syscall_plan9.go 26 func (e ErrorString) Temporary() bool {

Completed in 442 milliseconds

1 2 3