/src/sys/external/isc/libsodium/dist/src/libsodium/crypto_pwhash/scryptsalsa208sha256/ |
scrypt_platform.c | 43 uint8_t *base, *aligned; local in function:alloc_region 50 aligned = base; 55 aligned = base; 57 base = aligned = NULL; 61 aligned = base + 63; 62 aligned -= (uintptr_t) aligned & 63; 66 region->aligned = aligned; 69 return aligned; [all...] |
crypto_scrypt.h | 53 void * base, *aligned; member in struct:__anon5ca884b30108
|
/src/common/lib/libc/arch/sh3/string/ |
memset.S | 101 mova 1f,r0 /* 1f must be 4bytes aligned! */ 149 /* 2 bytes aligned small fill */ 158 tst #1,r0 /* len is aligned? */ 165 mova 1f,r0 /* 1f must be 4bytes aligned! */ 217 aligned: label 296 bra aligned
|
/src/sys/arch/sparc/sparc/ |
syscall.c | 87 uint64_t aligned; member in union:args 92 uint64_t aligned; member in union:rval
|
/src/sys/external/bsd/drm2/dist/drm/amd/amdgpu/ |
amdgpu_fb.c | 100 int aligned = width; local in function:amdgpu_align_pitch 116 aligned += pitch_mask; 117 aligned &= ~pitch_mask; 118 return aligned * cpp;
|
/src/sys/external/bsd/drm2/dist/drm/radeon/ |
radeon_fb.c | 102 int aligned = width; local in function:radeon_align_pitch 119 aligned += pitch_mask; 120 aligned &= ~pitch_mask; 121 return aligned * cpp;
|
/src/sys/external/isc/libsodium/dist/src/libsodium/crypto_pwhash/argon2/ |
argon2-core.c | 113 uint8_t *aligned = ((uint8_t *) base) + 63; local in function:allocate_memory 114 aligned -= (uintptr_t) aligned & 63; 115 memcpy(&memory, &aligned, sizeof memory);
|
/src/tests/usr.bin/xlint/lint1/ |
gcc_attribute_aligned.c | 5 * Test size computations on aligned and packed structs. 23 } __attribute__((packed)) __attribute__((aligned(4))); 32 } __attribute__((packed)) __attribute__((aligned(2))); 35 * Due to the 'packed', the uint64_t does not need to be aligned on an 8-byte 42 uint16_t s87_cw __attribute__((aligned(4))); 43 uint16_t s87_sw __attribute__((aligned(4))); 44 uint16_t s87_tw __attribute__((aligned(4))); 58 struct aligned { struct in function:aligned_struct_member 73 typedef int ctassert[-(int)sizeof(struct aligned)];
|
/src/sys/dev/dmover/ |
swdmover.c | 275 int aligned, len, nwords; local in function:swdmover_func_xor_process 288 aligned = 1; 290 aligned = 0; 301 aligned = 0; 303 if (aligned) {
|
/src/sys/external/bsd/compiler_rt/dist/lib/msan/ |
msan.cc | 42 // aligned address. 59 ALIGNED(16) THREADLOCAL u64 __msan_va_arg_tls[kMsanParamTlsSize / sizeof(u64)]; 62 ALIGNED(16) 599 uptr aligned = x & ~3ULL; local in function:__msan_get_origin 600 uptr origin_ptr = MEM_TO_ORIGIN(aligned);
|
/src/sys/external/bsd/compiler_rt/dist/lib/msan/tests/ |
msan_test.cc | 1333 // p is now SHMLBA-aligned; 1523 for (int aligned = 0; aligned < 2; ++aligned) local in function:TEST 1526 TestUnalignedMemcpy(i, j, aligned, srcp, dstp); 3855 char x[32] __attribute__((aligned(8))); 3889 char x[5] __attribute__((aligned(4))); 3903 char x[8] __attribute__((aligned(4))); 3921 char x[16] __attribute__((aligned(8))); 3944 char x[8] __attribute__((aligned(4))) [all...] |