HomeSort by relevance Sort by last modified time
    Searched full:k_hi (Results 1 - 4 of 4) sorted by null

  /external/webrtc/webrtc/common_audio/signal_processing/
levinson_durbin.c 33 int16_t K_hi, K_low;
65 K_hi = (int16_t)(temp1W32 >> 16);
66 K_low = (int16_t)((temp1W32 - ((int32_t)K_hi << 16)) >> 1);
69 K[0] = K_hi;
79 temp1W32 = ((K_hi * K_low >> 14) + K_hi * K_hi) << 1; // = k^2 in Q31
151 K_hi = (int16_t)(temp3W32 >> 16);
152 K_low = (int16_t)((temp3W32 - ((int32_t)K_hi << 16)) >> 1);
155 K[i - 1] = K_hi;
    [all...]
  /external/webrtc/webrtc/modules/audio_coding/codecs/isac/fix/source/
lpc_masking_model.c 79 int16_t K_hi, K_low; /* reflection coefficient in high precision */
108 K_hi = (int16_t)(temp1W32 >> 16);
109 K_low = (int16_t)((temp1W32 - ((int32_t)K_hi << 16)) >> 1);
112 K[0] = K_hi;
122 temp1W32 = (((K_hi * K_low) >> 14) + K_hi * K_hi) << 1; /* = k^2 in Q31 */
192 K_hi = (int16_t)(temp3W32 >> 16);
193 K_low = (int16_t)((temp3W32 - ((int32_t)K_hi << 16)) >> 1);
196 K[i-1] = K_hi;
    [all...]
  /external/llvm/test/CodeGen/AMDGPU/
and.ll 340 ; SI-DAG: s_mov_b32 s[[K_HI:[0-9]+]], 0{{$}}
341 ; SI: s_and_b64 s{{\[[0-9]+:[0-9]+\]}}, s{{\[[0-9]+:[0-9]+\]}}, s{{\[}}[[K_LO]]:[[K_HI]]{{\]}}
351 ; SI-DAG: s_mov_b32 s[[K_HI:[0-9]+]], -1{{$}}
352 ; SI-DAG: s_mov_b32 s[[K_HI_COPY:[0-9]+]], s[[K_HI]]
362 ; SI-DAG: s_mov_b32 s[[K_HI:[0-9]+]], 4.0
364 ; SI: s_and_b64 s{{\[[0-9]+:[0-9]+\]}}, s{{\[[0-9]+:[0-9]+\]}}, s{{\[}}[[K_LO]]:[[K_HI]]{{\]}}
372 ; SI-DAG: s_mov_b32 s[[K_HI:[0-9]+]], -4.0
374 ; SI: s_and_b64 s{{\[[0-9]+:[0-9]+\]}}, s{{\[[0-9]+:[0-9]+\]}}, s{{\[}}[[K_LO]]:[[K_HI]]{{\]}}
  /external/valgrind/VEX/priv/
ir_opt.c 588 .. k_hi).
590 static void invalidateOverlaps ( HashHW* h, UInt k_lo, UInt k_hi )
594 vassert(k_lo <= k_hi);
596 .. k_hi) */
597 /* vex_printf("invalidate %d .. %d\n", k_lo, k_hi ); */
605 if (e_hi < k_lo || k_hi < e_lo)
664 UInt k_lo, k_hi; local
674 k_hi = key & 0xFFFF;
675 invalidateOverlaps(env, k_lo, k_hi);
752 UInt k_lo, k_hi; local
852 HWord k_hi = env->key[j] & 0xFFFF; local
    [all...]

Completed in 689 milliseconds