Home
last modified time | relevance | path

Searched defs:a32 (Results 1 – 25 of 40) sorted by relevance

12

/external/chromium_org/third_party/yasm/source/patched-yasm/modules/arch/x86/tests/
Driprel1.asm16 a32 mov rax, [val] ; 67 48 a1 ... (32-bit disp) label
17 a32 mov rax, [dword val] ; 67 48 a1 ... (32-bit disp) label
18 a32 mov rax, [qword val] ; 67 48 a1 ... (32-bit disp) label
28 a32 mov rbx, [val] ; 67 48 8b ... (32-bit disp) label
29 a32 mov rbx, [dword val] ; 67 48 8b ... (32-bit disp) label
48 a32 mov rax, [val] ; 67 48 8b ... (32-bit disp, RIP-rel) label
49 a32 mov rax, [dword val] ; 67 48 8b ... (32-bit disp, RIP-rel) label
50 a32 mov rax, [qword val] ; 67 48 a1 ... (32-bit disp, ABS) label
60 a32 mov rbx, [val] ; 67 48 8b ... (32-bit disp, RIP-rel) label
61 a32 mov rbx, [dword val] ; 67 48 8b ... (32-bit disp, RIP-rel) label
Dmem64.asm8 a32 mov rax, [0] ; 67 48 A1 00 00 00 00 label
9 a32 mov eax, [0] ; 67 A1 00 00 00 00 label
13 a32 mov rbx, [0] ; 67 48 8B 1C 25 00 00 00 00 label
18 a32 mov rcx, [rip+5] ; 67 48 8B 0D 05 00 00 00 label
Denter.asm8 a32 o32 enter 4,0 label
9 a32 o16 enter 4,0 label
Daddrop.asm11 a32 idiv byte [0] ; F6 3D 00 00 00 00 label
/external/libopus/silk/
Dmacros.h41 #define silk_SMULWB(a32, b32) ((((a32) >> 16) * (opus_int32)((opus_int16)(b32))) + ((((a… argument
44 #define silk_SMLAWB(a32, b32, c32) ((a32) + ((((b32) >> 16) * (opus_int32)((opus_int16)(c32))… argument
47 #define silk_SMULWT(a32, b32) (((a32) >> 16) * ((b32) >> 16) + ((((a32) & 0x0000FFFF) * … argument
50 #define silk_SMLAWT(a32, b32, c32) ((a32) + (((b32) >> 16) * ((c32) >> 16)) + ((((b32) & 0x00… argument
53 #define silk_SMULBB(a32, b32) ((opus_int32)((opus_int16)(a32)) * (opus_int32)((opus_int1… argument
56 #define silk_SMLABB(a32, b32, c32) ((a32) + ((opus_int32)((opus_int16)(b32))) * (opus_int32)(… argument
59 #define silk_SMULBT(a32, b32) ((opus_int32)((opus_int16)(a32)) * ((b32) >> 16)) argument
62 #define silk_SMLABT(a32, b32, c32) ((a32) + ((opus_int32)((opus_int16)(b32))) * ((c32) >> 16)) argument
68 #define silk_SMULWW(a32, b32) silk_MLA(silk_SMULWB((a32), (b32)), (a32), silk_RSHIFT_ROU… argument
71 #define silk_SMLAWW(a32, b32, c32) silk_MLA(silk_SMLAWB((a32), (b32), (c32)), (b32), silk_RSH… argument
DMacroCount.h54 static OPUS_INLINE opus_int32 silk_MUL(opus_int32 a32, opus_int32 b32){ in silk_MUL()
62 static OPUS_INLINE opus_uint32 silk_MUL_uint(opus_uint32 a32, opus_uint32 b32){ in silk_MUL_uint()
69 static OPUS_INLINE opus_int32 silk_MLA(opus_int32 a32, opus_int32 b32, opus_int32 c32){ in silk_MLA()
77 static OPUS_INLINE opus_int32 silk_MLA_uint(opus_uint32 a32, opus_uint32 b32, opus_uint32 c32){ in silk_MLA_uint()
85 static OPUS_INLINE opus_int32 silk_SMULWB(opus_int32 a32, opus_int32 b32){ in silk_SMULWB()
92 static OPUS_INLINE opus_int32 silk_SMLAWB(opus_int32 a32, opus_int32 b32, opus_int32 c32){ in silk_SMLAWB()
100 static OPUS_INLINE opus_int32 silk_SMULWT(opus_int32 a32, opus_int32 b32){ in silk_SMULWT()
107 static OPUS_INLINE opus_int32 silk_SMLAWT(opus_int32 a32, opus_int32 b32, opus_int32 c32){ in silk_SMLAWT()
115 static OPUS_INLINE opus_int32 silk_SMULBB(opus_int32 a32, opus_int32 b32){ in silk_SMULBB()
122 static OPUS_INLINE opus_int32 silk_SMLABB(opus_int32 a32, opus_int32 b32, opus_int32 c32){ in silk_SMLABB()
[all …]
DSigProc_FIX.h365 static OPUS_INLINE opus_int32 silk_ROR32( opus_int32 a32, opus_int rot ) in silk_ROR32()
394 #define silk_MUL(a32, b32) ((a32) * (b32)) argument
397 #define silk_MUL_uint(a32, b32) silk_MUL(a32, b32) argument
400 #define silk_MLA(a32, b32, c32) silk_ADD32((a32),((b32) * (c32))) argument
403 #define silk_MLA_uint(a32, b32, c32) silk_MLA(a32, b32, c32) argument
406 #define silk_SMULTT(a32, b32) (((a32) >> 16) * ((b32) >> 16)) argument
409 #define silk_SMLATT(a32, b32, c32) silk_ADD32((a32),((b32) >> 16) * ((c32) >> 16)) argument
414 #define silk_SMULL(a32, b32) ((opus_int64)(a32) * /*(opus_int64)*/(b32)) argument
424 #define silk_MLA_ovflw(a32, b32, c32) silk_ADD32_ovflw((a32), (opus_uint32)(b32) * (opus_uint… argument
425 #define silk_SMLABB_ovflw(a32, b32, c32) (silk_ADD32_ovflw((a32) , ((opus_int32)((opus_int16)(b3… argument
[all …]
DMacroDebug.h150 static OPUS_INLINE opus_int32 silk_ADD_SAT32_(opus_int32 a32, opus_int32 b32, char *file, int line){ in silk_ADD_SAT32_()
211 static OPUS_INLINE opus_int32 silk_SUB_SAT32_( opus_int32 a32, opus_int32 b32, char *file, int line… in silk_SUB_SAT32_()
257 static OPUS_INLINE opus_int32 silk_MUL_(opus_int32 a32, opus_int32 b32, char *file, int line){ in silk_MUL_()
274 static OPUS_INLINE opus_uint32 silk_MUL_uint_(opus_uint32 a32, opus_uint32 b32, char *file, int lin… in silk_MUL_uint_()
289 static OPUS_INLINE opus_int32 silk_MLA_(opus_int32 a32, opus_int32 b32, opus_int32 c32, char *file,… in silk_MLA_()
304 static OPUS_INLINE opus_int32 silk_MLA_uint_(opus_uint32 a32, opus_uint32 b32, opus_uint32 c32, cha… in silk_MLA_uint_()
319 static OPUS_INLINE opus_int32 silk_SMULWB_(opus_int32 a32, opus_int32 b32, char *file, int line){ in silk_SMULWB_()
334 static OPUS_INLINE opus_int32 silk_SMLAWB_(opus_int32 a32, opus_int32 b32, opus_int32 c32, char *fi… in silk_SMLAWB_()
349 static OPUS_INLINE opus_int32 silk_SMULWT_(opus_int32 a32, opus_int32 b32, char *file, int line){ in silk_SMULWT_()
364 static OPUS_INLINE opus_int32 silk_SMLAWT_(opus_int32 a32, opus_int32 b32, opus_int32 c32, char *fi… in silk_SMLAWT_()
[all …]
DLPC_inv_pred_gain.c37 #define MUL32_FRAC_Q(a32, b32, Q) ((opus_int32)(silk_RSHIFT_ROUND64(silk_SMULL(a32, b32), Q))) argument
DInlines.h98 const opus_int32 a32, /* I numerator (Q0) */ in silk_DIV32_varQ()
/external/chromium_org/third_party/opus/src/silk/
Dmacros.h41 #define silk_SMULWB(a32, b32) ((((a32) >> 16) * (opus_int32)((opus_int16)(b32))) + ((((a… argument
44 #define silk_SMLAWB(a32, b32, c32) ((a32) + ((((b32) >> 16) * (opus_int32)((opus_int16)(c32))… argument
47 #define silk_SMULWT(a32, b32) (((a32) >> 16) * ((b32) >> 16) + ((((a32) & 0x0000FFFF) * … argument
50 #define silk_SMLAWT(a32, b32, c32) ((a32) + (((b32) >> 16) * ((c32) >> 16)) + ((((b32) & 0x00… argument
53 #define silk_SMULBB(a32, b32) ((opus_int32)((opus_int16)(a32)) * (opus_int32)((opus_int1… argument
56 #define silk_SMLABB(a32, b32, c32) ((a32) + ((opus_int32)((opus_int16)(b32))) * (opus_int32)(… argument
59 #define silk_SMULBT(a32, b32) ((opus_int32)((opus_int16)(a32)) * ((b32) >> 16)) argument
62 #define silk_SMLABT(a32, b32, c32) ((a32) + ((opus_int32)((opus_int16)(b32))) * ((c32) >> 16)) argument
68 #define silk_SMULWW(a32, b32) silk_MLA(silk_SMULWB((a32), (b32)), (a32), silk_RSHIFT_ROU… argument
71 #define silk_SMLAWW(a32, b32, c32) silk_MLA(silk_SMLAWB((a32), (b32), (c32)), (b32), silk_RSH… argument
DMacroCount.h54 static OPUS_INLINE opus_int32 silk_MUL(opus_int32 a32, opus_int32 b32){ in silk_MUL()
62 static OPUS_INLINE opus_uint32 silk_MUL_uint(opus_uint32 a32, opus_uint32 b32){ in silk_MUL_uint()
69 static OPUS_INLINE opus_int32 silk_MLA(opus_int32 a32, opus_int32 b32, opus_int32 c32){ in silk_MLA()
77 static OPUS_INLINE opus_int32 silk_MLA_uint(opus_uint32 a32, opus_uint32 b32, opus_uint32 c32){ in silk_MLA_uint()
85 static OPUS_INLINE opus_int32 silk_SMULWB(opus_int32 a32, opus_int32 b32){ in silk_SMULWB()
92 static OPUS_INLINE opus_int32 silk_SMLAWB(opus_int32 a32, opus_int32 b32, opus_int32 c32){ in silk_SMLAWB()
100 static OPUS_INLINE opus_int32 silk_SMULWT(opus_int32 a32, opus_int32 b32){ in silk_SMULWT()
107 static OPUS_INLINE opus_int32 silk_SMLAWT(opus_int32 a32, opus_int32 b32, opus_int32 c32){ in silk_SMLAWT()
115 static OPUS_INLINE opus_int32 silk_SMULBB(opus_int32 a32, opus_int32 b32){ in silk_SMULBB()
122 static OPUS_INLINE opus_int32 silk_SMLABB(opus_int32 a32, opus_int32 b32, opus_int32 c32){ in silk_SMLABB()
[all …]
DSigProc_FIX.h365 static OPUS_INLINE opus_int32 silk_ROR32( opus_int32 a32, opus_int rot ) in silk_ROR32()
394 #define silk_MUL(a32, b32) ((a32) * (b32)) argument
397 #define silk_MUL_uint(a32, b32) silk_MUL(a32, b32) argument
400 #define silk_MLA(a32, b32, c32) silk_ADD32((a32),((b32) * (c32))) argument
403 #define silk_MLA_uint(a32, b32, c32) silk_MLA(a32, b32, c32) argument
406 #define silk_SMULTT(a32, b32) (((a32) >> 16) * ((b32) >> 16)) argument
409 #define silk_SMLATT(a32, b32, c32) silk_ADD32((a32),((b32) >> 16) * ((c32) >> 16)) argument
414 #define silk_SMULL(a32, b32) ((opus_int64)(a32) * /*(opus_int64)*/(b32)) argument
424 #define silk_MLA_ovflw(a32, b32, c32) silk_ADD32_ovflw((a32), (opus_uint32)(b32) * (opus_uint… argument
425 #define silk_SMLABB_ovflw(a32, b32, c32) (silk_ADD32_ovflw((a32) , ((opus_int32)((opus_int16)(b3… argument
[all …]
DMacroDebug.h150 static OPUS_INLINE opus_int32 silk_ADD_SAT32_(opus_int32 a32, opus_int32 b32, char *file, int line){ in silk_ADD_SAT32_()
211 static OPUS_INLINE opus_int32 silk_SUB_SAT32_( opus_int32 a32, opus_int32 b32, char *file, int line… in silk_SUB_SAT32_()
257 static OPUS_INLINE opus_int32 silk_MUL_(opus_int32 a32, opus_int32 b32, char *file, int line){ in silk_MUL_()
274 static OPUS_INLINE opus_uint32 silk_MUL_uint_(opus_uint32 a32, opus_uint32 b32, char *file, int lin… in silk_MUL_uint_()
289 static OPUS_INLINE opus_int32 silk_MLA_(opus_int32 a32, opus_int32 b32, opus_int32 c32, char *file,… in silk_MLA_()
304 static OPUS_INLINE opus_int32 silk_MLA_uint_(opus_uint32 a32, opus_uint32 b32, opus_uint32 c32, cha… in silk_MLA_uint_()
319 static OPUS_INLINE opus_int32 silk_SMULWB_(opus_int32 a32, opus_int32 b32, char *file, int line){ in silk_SMULWB_()
334 static OPUS_INLINE opus_int32 silk_SMLAWB_(opus_int32 a32, opus_int32 b32, opus_int32 c32, char *fi… in silk_SMLAWB_()
349 static OPUS_INLINE opus_int32 silk_SMULWT_(opus_int32 a32, opus_int32 b32, char *file, int line){ in silk_SMULWT_()
364 static OPUS_INLINE opus_int32 silk_SMLAWT_(opus_int32 a32, opus_int32 b32, opus_int32 c32, char *fi… in silk_SMLAWT_()
[all …]
DLPC_inv_pred_gain.c37 #define MUL32_FRAC_Q(a32, b32, Q) ((opus_int32)(silk_RSHIFT_ROUND64(silk_SMULL(a32, b32), Q))) argument
DInlines.h98 const opus_int32 a32, /* I numerator (Q0) */ in silk_DIV32_varQ()
/external/chromium_org/third_party/yasm/source/patched-yasm/modules/parsers/nasm/tests/
Dnasm-prefix.asm4 a32 label
/external/chromium_org/third_party/webrtc/modules/audio_coding/codecs/ilbc/
Dcb_construct.c41 int32_t a32; in WebRtcIlbcfix_CbConstruct() local
/external/libpng/contrib/tools/
Dchecksum-icc.c22 uLong a32 = adler32(0, NULL, 0); in read_one_file() local
/external/elfutils/0.153/libebl/
Deblobjnote.c87 Elf32_Addr a32[3]; member
/external/elfutils/0.153/libdwfl/
Dlink_map.c84 Elf32_auxv_t a32[size / sizeof (Elf32_auxv_t)]; in auxv_format_probe() member
299 Elf32_Addr a32[n]; in report_r_debug() member
571 Elf32_Addr a32; in consider_executable() member
Dlinux-proc-maps.c91 Elf32_auxv_t a32[sizeof (long int) * 2 * 32 / sizeof (Elf32_auxv_t)]; in grovel_auxv() member
/external/eigen/Eigen/src/Eigenvalues/
DRealQZ.h412 a21=m_S.coeff(f+1,f+0), a22=m_S.coeff(f+1,f+1), a32=m_S.coeff(f+2,f+1), in step() local
455 a32 = m_S.coeff(f+2,f+1), in step() local
/external/chromium_org/net/base/
Dint128.h288 uint64 a32 = lo_ >> 32; variable
/external/dexmaker/src/dx/java/com/android/dx/dex/file/
DDexFile.java654 Adler32 a32 = new Adler32(); in calcChecksum() local

12