Searched refs:VECTOR_ALIGN (Results 1 – 4 of 4) sorted by relevance
/third_party/rust/crates/memchr/src/memchr/x86/ |
D | sse2.rs | 4 const VECTOR_ALIGN: usize = VECTOR_SIZE - 1; constant 129 ptr = ptr.add(VECTOR_SIZE - (start_ptr as usize & VECTOR_ALIGN)); in memchr() 213 ptr = ptr.add(VECTOR_SIZE - (start_ptr as usize & VECTOR_ALIGN)); in memchr2() 288 ptr = ptr.add(VECTOR_SIZE - (start_ptr as usize & VECTOR_ALIGN)); in memchr3() 365 ptr = (end_ptr as usize & !VECTOR_ALIGN) as *const u8; in memrchr() 445 ptr = (end_ptr as usize & !VECTOR_ALIGN) as *const u8; in memrchr2() 518 ptr = (end_ptr as usize & !VECTOR_ALIGN) as *const u8; in memrchr3()
|
D | avx.rs | 6 const VECTOR_ALIGN: usize = VECTOR_SIZE - 1; constant 81 ptr = ptr.add(VECTOR_SIZE - (start_ptr as usize & VECTOR_ALIGN)); in memchr() 169 ptr = ptr.add(VECTOR_SIZE - (start_ptr as usize & VECTOR_ALIGN)); in memchr2() 262 ptr = ptr.add(VECTOR_SIZE - (start_ptr as usize & VECTOR_ALIGN)); in memchr3() 329 ptr = (end_ptr as usize & !VECTOR_ALIGN) as *const u8; in memrchr() 409 ptr = (end_ptr as usize & !VECTOR_ALIGN) as *const u8; in memrchr2() 482 ptr = (end_ptr as usize & !VECTOR_ALIGN) as *const u8; in memrchr3()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/IR/ |
D | DataLayout.cpp | 169 {VECTOR_ALIGN, 64, Align(8), Align(8)}, // v2i32, v1i64, ... 170 {VECTOR_ALIGN, 128, Align(16), Align(16)}, // v16i8, v8i16, v4i32, ... 331 case 'v': AlignType = VECTOR_ALIGN; break; in parseSpecifier() 557 } else if (AlignType == VECTOR_ALIGN) { in getAlignmentInfo() 743 AlignType = VECTOR_ALIGN; in getAlignment()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/IR/ |
D | DataLayout.h | 54 VECTOR_ALIGN = 'v', enumerator
|