Searched refs:A32 (Results 1 – 7 of 7) sorted by relevance
/linux-4.4.14/arch/x86/boot/ |
D | cpucheck.c | 48 #define A32(a, b, c, d) (((d) << 24)+((c) << 16)+((b) << 8)+(a)) macro 52 return cpu_vendor[0] == A32('A', 'u', 't', 'h') && in is_amd() 53 cpu_vendor[1] == A32('e', 'n', 't', 'i') && in is_amd() 54 cpu_vendor[2] == A32('c', 'A', 'M', 'D'); in is_amd() 59 return cpu_vendor[0] == A32('C', 'e', 'n', 't') && in is_centaur() 60 cpu_vendor[1] == A32('a', 'u', 'r', 'H') && in is_centaur() 61 cpu_vendor[2] == A32('a', 'u', 'l', 's'); in is_centaur() 66 return cpu_vendor[0] == A32('G', 'e', 'n', 'u') && in is_transmeta() 67 cpu_vendor[1] == A32('i', 'n', 'e', 'T') && in is_transmeta() 68 cpu_vendor[2] == A32('M', 'x', '8', '6'); in is_transmeta() [all …]
|
/linux-4.4.14/lib/lz4/ |
D | lz4_compress.c | 108 } while ((ref < ip - MAX_DISTANCE) || (A32(ref) != A32(ip))); in lz4_compressctx() 150 u32 diff = A32(ref) ^ A32(ip); in lz4_compressctx() 161 if ((ip < (MATCHLIMIT - 3)) && (A32(ref) == A32(ip))) { in lz4_compressctx() 205 if ((ref > ip - (MAX_DISTANCE + 1)) && (A32(ref) == A32(ip))) { in lz4_compressctx() 289 } while (A32(ref) != A32(ip)); in lz4_compress64kctx() 331 u32 diff = A32(ref) ^ A32(ip); in lz4_compress64kctx() 343 if ((ip < (MATCHLIMIT - 3)) && (A32(ref) == A32(ip))) { in lz4_compress64kctx() 388 if (A32(ref) == A32(ip)) { in lz4_compress64kctx()
|
D | lz4defs.h | 32 #define A32(x) (((U32_S *)(x))->v) macro 35 #define PUT4(s, d) (A32(d) = A32(s)) 49 #define A32(x) get_unaligned((u32 *)&(((U16_S *)(x))->v)) macro 89 #define LZ4_HASH_VALUE(p) (((A32(p)) * 2654435761U) >> \ 91 #define LZ4_HASH64K_VALUE(p) (((A32(p)) * 2654435761U) >> \ 93 #define HASH_VALUE(p) (((A32(p)) * 2654435761U) >> \
|
D | lz4hc_compress.c | 95 u32 diff = A32(p2) ^ A32(p1t); in lz4hc_commonlength() 106 if ((p1t < (matchlimit-3)) && (A32(p2) == A32(p1t))) { in lz4hc_commonlength() 143 if (A32(ref) == A32(ip)) { in lz4hc_insertandfindbestmatch() 155 if (A32(ref) == A32(ip)) { in lz4hc_insertandfindbestmatch() 213 if (A32(ref) == A32(ip)) { in lz4hc_insertandgetwidermatch() 222 u32 diff = A32(reft) ^ A32(ipt); in lz4hc_insertandgetwidermatch() 235 && (A32(reft) == A32(ipt))) { in lz4hc_insertandgetwidermatch()
|
/linux-4.4.14/arch/blackfin/mach-bf548/include/mach/ |
D | defBF544.h | 588 #define A32 0xffc00 /* A32 in the Coefficient Matrix */ macro
|
D | defBF547.h | 565 #define A32 0xffc00 /* A32 in the Coefficient Matrix */ macro
|
/linux-4.4.14/arch/arm64/ |
D | Kconfig | 610 ARMv8 obsoletes the use of A32 SWP/SWPB instructions such that
|