Searched refs:aligned (Results 1 – 25 of 59) sorted by relevance
123
/sysdeps/x86_64/multiarch/ |
A D | strcspn-c.c | 86 const char *aligned; in STRCSPN_SSE42() local 92 aligned = (const char *) ((size_t) a & -16L); in STRCSPN_SSE42() 93 __m128i mask0 = _mm_load_si128 ((__m128i *) aligned); in STRCSPN_SSE42() 102 __m128i mask1 = _mm_load_si128 ((__m128i *) (aligned + 16)); in STRCSPN_SSE42() 139 aligned = (const char *) ((size_t) s & -16L); in STRCSPN_SSE42() 140 __m128i value = _mm_load_si128 ((__m128i *) aligned); in STRCSPN_SSE42() 153 aligned += 16; in STRCSPN_SSE42() 156 aligned = s; in STRCSPN_SSE42() 160 __m128i value = _mm_load_si128 ((__m128i *) aligned); in STRCSPN_SSE42() 165 RETURN ((char *) (aligned + index), (size_t) (aligned + index - s)); in STRCSPN_SSE42() [all …]
|
A D | strspn-c.c | 64 const char *aligned; in __strspn_sse42() local 70 aligned = (const char *) ((size_t) a & -16L); in __strspn_sse42() 71 __m128i mask0 = _mm_load_si128 ((__m128i *) aligned); in __strspn_sse42() 80 __m128i mask1 = _mm_load_si128 ((__m128i *) (aligned + 16)); in __strspn_sse42() 117 aligned = (const char *) ((size_t) s & -16L); in __strspn_sse42() 118 __m128i value = _mm_load_si128 ((__m128i *) aligned); in __strspn_sse42() 130 aligned += 16; in __strspn_sse42() 133 aligned = s; in __strspn_sse42() 137 __m128i value = _mm_load_si128 ((__m128i *) aligned); in __strspn_sse42() 141 return (size_t) (aligned + index - s); in __strspn_sse42() [all …]
|
/sysdeps/powerpc/fpu/ |
A D | fenv_const.c | 23 const unsigned long long __fe_dfl_env __attribute__ ((aligned (8))) = 28 __attribute__ ((aligned (8), alias ("__fe_dfl_env"))); 31 const unsigned long long __fe_enabled_env __attribute__ ((aligned (8))) = 35 const unsigned long long __fe_nonieee_env __attribute__ ((aligned (8))) =
|
/sysdeps/powerpc/nofpu/ |
A D | fenv_const.c | 24 const unsigned long long __fe_dfl_env __attribute__ ((aligned (8))) = 29 __attribute__ ((aligned (8), alias ("__fe_dfl_env"))); 32 const unsigned long long __fe_enabled_env __attribute__ ((aligned (8))) =
|
/sysdeps/arm/armv6/ |
A D | strcpy.S | 139 @ Here, source is aligned to 8, but the destination is not word 140 @ aligned. Therefore we have to shift the data in order to be 141 @ able to perform aligned word stores.
|
A D | strlen.S | 29 @ characters until we reach an aligned pointer. To cater to 52 @ So now we're aligned.
|
A D | rawmemchr.S | 31 @ characters until we reach an aligned pointer. To cater to 56 @ So now we're aligned.
|
/sysdeps/x86/ |
A D | tst-stack-align.h | 19 typedef struct { int i[16]; } int_al16 __attribute__((aligned (16)));
|
/sysdeps/unix/sysv/linux/ |
A D | dirstream.h | 50 char data[0] __attribute__ ((aligned (__alignof__ (long double))));
|
A D | tst-getpid1.c | 48 char st[256 * 1024] __attribute__ ((aligned)); in do_test() 51 char st[128 * 1024] __attribute__ ((aligned)); in do_test()
|
A D | tst-align-clone-internal.c | 52 char st[STACK_SIZE] __attribute__ ((aligned)); in do_test()
|
A D | tst-clone2.c | 78 char st[256 * 1024] __attribute__ ((aligned)); in do_test() 81 char st[128 * 1024] __attribute__ ((aligned)); in do_test()
|
A D | tst-align-clone.c | 58 char st[128 * 1024] __attribute__ ((aligned)); in do_test()
|
A D | tst-clone3-internal.c | 69 char st[1024] __attribute__ ((aligned)); in do_test()
|
A D | tst-clone3.c | 69 char st[1024] __attribute__ ((aligned)); in do_test()
|
/sysdeps/pthread/ |
A D | tst-pt-tls1.c | 29 __attribute__ ((aligned(0x20))) int a; 30 __attribute__ ((aligned(0x200))) int b;
|
A D | tst-tls4moda.c | 22 __attribute__ ((tls_model ("initial-exec"), aligned (sizeof (void *))));
|
A D | tst-tls4modb.c | 25 __attribute__ ((tls_model ("initial-exec"), aligned (sizeof (void *))))
|
/sysdeps/powerpc/ |
A D | tst-stack-align.h | 25 int _i __attribute__((aligned (16))); \
|
/sysdeps/s390/ |
A D | iso-8859-1_cp037_z900.c | 25 __attribute__ ((aligned (8))) = 95 __attribute__ ((aligned (8))) =
|
/sysdeps/generic/ |
A D | unwind-dw2-fde.h | 132 } __attribute__ ((packed, aligned (__alignof__ (void *)))); 140 } __attribute__ ((packed, aligned (__alignof__ (void *))));
|
/sysdeps/powerpc/bits/ |
A D | link.h | 120 uint32_t lr_vreg[12][4] __attribute__ ((aligned (16))); 131 uint32_t lrv_vreg[8][4] __attribute__ ((aligned (16)));
|
/sysdeps/powerpc/powerpc64/ |
A D | tst-ucontext-ppc64-vscr.c | 43 uint32_t vscr[4] __attribute__ ((aligned (16))); in do_test()
|
/sysdeps/arm/armv6t2/ |
A D | memchr.S | 58 tst r0, #7 @ If it's already aligned skip the next bit 61 @ Work up to an aligned point 68 bne 5b @ If not aligned yet then do next byte 71 @ At this point, we are aligned, we know we have at least 8 bytes to work with 112 21: @ Post aligned section, or just a short call
|
/sysdeps/powerpc/powerpc64/le/power9/ |
A D | rawmemchr.S | 53 beq cr6,L(aligned) 59 L(aligned):
|
Completed in 18 milliseconds
123