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

  /external/sonivox/arm-fm-22k/lib_src/
eas_reverbdata.h 139 #define GUARD 5 // safety guard of this many samples
148 #define AP1_IN (AP0_IN + MAX_AP_SAMPLES + GUARD)
149 #define DELAY0_IN (AP1_IN + MAX_AP_SAMPLES + GUARD)
150 #define DELAY1_IN (DELAY0_IN + MAX_DELAY_SAMPLES + GUARD)
  /external/sonivox/arm-hybrid-22k/lib_src/
eas_reverbdata.h 139 #define GUARD 5 // safety guard of this many samples
148 #define AP1_IN (AP0_IN + MAX_AP_SAMPLES + GUARD)
149 #define DELAY0_IN (AP1_IN + MAX_AP_SAMPLES + GUARD)
150 #define DELAY1_IN (DELAY0_IN + MAX_DELAY_SAMPLES + GUARD)
  /external/sonivox/arm-wt-22k/lib_src/
eas_reverbdata.h 139 #define GUARD 5 // safety guard of this many samples
148 #define AP1_IN (AP0_IN + MAX_AP_SAMPLES + GUARD)
149 #define DELAY0_IN (AP1_IN + MAX_AP_SAMPLES + GUARD)
150 #define DELAY1_IN (DELAY0_IN + MAX_DELAY_SAMPLES + GUARD)
  /bionic/libc/bionic/
malloc_debug_leak.cpp 73 #define GUARD 0x48151642
82 uint32_t guard; member in struct:AllocationEntry
319 header->guard = GUARD;
340 // check the guard to make sure it is valid
343 if (header->guard != GUARD) {
345 if (header->guard == MEMALIGN_GUARD) {
352 if (header->guard == GUARD || is_valid_entry(header->entry))
    [all...]
  /external/libpcap/msdos/
ndis2.h 47 #define GUARD() _inline (0x9C,0xFA) /* pushfd, cli */
54 #define GUARD() __asm__ __volatile__ ("pushfd; cli")
61 #define GUARD() _asm { pushf; cli }
68 #define GUARD() _disable()
ndis2.c 232 GUARD();
252 GUARD();
  /art/compiler/llvm/
compiler_llvm.cc 95 // The Guard to Shutdown LLVM
126 MutexLock GUARD(Thread::Current(), next_cunit_id_lock_);
  /frameworks/av/media/libeffects/testlibs/
EffectReverb.h 79 #define GUARD 5 // safety guard of this many samples
EffectReverb.c 667 ap1In = (AP0_IN + maxApSamples + GUARD);
668 delay0In = (ap1In + maxApSamples + GUARD);
669 delay1In = (delay0In + maxDelaySamples + GUARD);
674 pReverb->m_nEarly0in = (delay1In + maxDelaySamples + GUARD);
675 pReverb->m_nEarly1in = (pReverb->m_nEarly0in + maxEarlySamples + GUARD);
    [all...]

Completed in 269 milliseconds