/external/chromium_org/third_party/yasm/source/patched-yasm/modules/arch/x86/tests/ |
D | riprel1.asm | 16 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
|
D | mem64.asm | 8 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
|
D | enter.asm | 8 a32 o32 enter 4,0 label 9 a32 o16 enter 4,0 label
|
D | addrop.asm | 11 a32 idiv byte [0] ; F6 3D 00 00 00 00 label
|
/external/libopus/silk/ |
D | macros.h | 41 #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
|
D | MacroCount.h | 54 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 …]
|
D | SigProc_FIX.h | 365 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 …]
|
D | MacroDebug.h | 150 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 …]
|
D | LPC_inv_pred_gain.c | 37 #define MUL32_FRAC_Q(a32, b32, Q) ((opus_int32)(silk_RSHIFT_ROUND64(silk_SMULL(a32, b32), Q))) argument
|
D | Inlines.h | 98 const opus_int32 a32, /* I numerator (Q0) */ in silk_DIV32_varQ()
|
/external/chromium_org/third_party/opus/src/silk/ |
D | macros.h | 41 #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
|
D | MacroCount.h | 54 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 …]
|
D | SigProc_FIX.h | 365 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 …]
|
D | MacroDebug.h | 150 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 …]
|
D | LPC_inv_pred_gain.c | 37 #define MUL32_FRAC_Q(a32, b32, Q) ((opus_int32)(silk_RSHIFT_ROUND64(silk_SMULL(a32, b32), Q))) argument
|
D | Inlines.h | 98 const opus_int32 a32, /* I numerator (Q0) */ in silk_DIV32_varQ()
|
/external/chromium_org/third_party/yasm/source/patched-yasm/modules/parsers/nasm/tests/ |
D | nasm-prefix.asm | 4 a32 label
|
/external/chromium_org/third_party/webrtc/modules/audio_coding/codecs/ilbc/ |
D | cb_construct.c | 41 int32_t a32; in WebRtcIlbcfix_CbConstruct() local
|
/external/libpng/contrib/tools/ |
D | checksum-icc.c | 22 uLong a32 = adler32(0, NULL, 0); in read_one_file() local
|
/external/elfutils/0.153/libebl/ |
D | eblobjnote.c | 87 Elf32_Addr a32[3]; member
|
/external/elfutils/0.153/libdwfl/ |
D | link_map.c | 84 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
|
D | linux-proc-maps.c | 91 Elf32_auxv_t a32[sizeof (long int) * 2 * 32 / sizeof (Elf32_auxv_t)]; in grovel_auxv() member
|
/external/eigen/Eigen/src/Eigenvalues/ |
D | RealQZ.h | 412 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/ |
D | int128.h | 288 uint64 a32 = lo_ >> 32; variable
|
/external/dexmaker/src/dx/java/com/android/dx/dex/file/ |
D | DexFile.java | 654 Adler32 a32 = new Adler32(); in calcChecksum() local
|