OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:r_low
(Results
1 - 5
of
5
) sorted by null
/art/compiler/utils/arm/
managed_register_arm.h
205
// Return a RegisterPair consisting of Register
r_low
and
r_low
+ 1.
206
static ArmManagedRegister FromCoreRegisterPair(Register
r_low
) {
207
if (
r_low
!= R1) { // not the dalvik special case
208
CHECK_NE(
r_low
, kNoRegister);
209
CHECK_EQ(0, (
r_low
% 2));
210
const int r =
r_low
/ 2;
218
// Return a DRegister overlapping SRegister
r_low
and
r_low
+ 1.
219
static ArmManagedRegister FromSRegisterPair(SRegister
r_low
) {
[
all
...]
/external/webrtc/src/common_audio/signal_processing/
levinson_durbin.c
27
WebRtc_Word16 R_hi[SPL_LEVINSON_MAXORDER + 1],
R_low
[SPL_LEVINSON_MAXORDER + 1];
49
R_low
[i] = (WebRtc_Word16)WEBRTC_SPL_RSHIFT_W32((temp1W32
56
+ WEBRTC_SPL_LSHIFT_W32((WebRtc_Word32)
R_low
[1],1); // R[1] in Q31
58
temp1W32 = WebRtcSpl_DivW32HiLow(temp3W32, R_hi[0],
R_low
[0]); // abs(R[1])/R[0] in Q31
96
+ (WEBRTC_SPL_MUL_16_16(
R_low
[0], tmp_hi) >> 15)) << 1);
124
+ (WEBRTC_SPL_MUL_16_16(
R_low
[j], A_hi[i-j]) >> 15)) << 1));
129
+ WEBRTC_SPL_LSHIFT_W32((WebRtc_Word32)
R_low
[i], 1));
/external/webrtc/src/modules/audio_coding/codecs/isac/fix/source/
lpc_masking_model.c
73
WebRtc_Word16 R_hi[LEVINSON_MAX_ORDER+1],
R_low
[LEVINSON_MAX_ORDER+1];
94
R_low
[i] = (WebRtc_Word16)WEBRTC_SPL_RSHIFT_W32((temp1W32 - WEBRTC_SPL_LSHIFT_W32((WebRtc_Word32)R_hi[i], 16)), 1);
100
WEBRTC_SPL_LSHIFT_W32((WebRtc_Word32)
R_low
[1],1); /* R[1] in Q31 */
102
temp1W32 = WebRtcSpl_DivW32HiLow(temp3W32, R_hi[0],
R_low
[0]); /* abs(R[1])/R[0] in Q31 */
136
WEBRTC_SPL_RSHIFT_W32(WEBRTC_SPL_MUL_16_16(
R_low
[0], tmp_hi), 15) ), 1);
165
WEBRTC_SPL_RSHIFT_W32(WEBRTC_SPL_MUL_16_16(
R_low
[j], A_hi[i-j]), 15) ), 1));
170
WEBRTC_SPL_LSHIFT_W32((WebRtc_Word32)
R_low
[i], 1));
[
all
...]
/hardware/broadcom/wlan/bcmdhd/dhdutil/
bcmutils.c
[
all
...]
/hardware/broadcom/wlan/bcmdhd/dhdutil/include/
bcmutils.h
856
extern void bcm_uint64_multiple_add(uint32* r_high, uint32*
r_low
, uint32 a, uint32 b, uint32 c);
Completed in 470 milliseconds