Searched defs:aligned (Results 1 - 10 of 10) sorted by relevance

/external/e2fsprogs/e2fsck/
H A Dmtrace.h177 __ptr_t aligned; /* The address that memaligned returned. */ member in struct:alignlist
/external/v8/src/
H A Dunicode-inl.h159 unsigned aligned = (offset + 0x3) & ~0x3; local
160 if ((aligned + sizeof(uchar)) > capacity)
162 if (offset == aligned) {
163 IF_LITTLE(*reinterpret_cast<uchar*>(buffer + aligned) = (c << 8) | 0x80);
164 IF_BIG(*reinterpret_cast<uchar*>(buffer + aligned) = c | (1 << 31));
167 IF_LITTLE(*reinterpret_cast<uchar*>(buffer + aligned) = c << 8);
168 IF_BIG(*reinterpret_cast<uchar*>(buffer + aligned) = c);
170 offset = aligned + sizeof(uchar);
189 unsigned aligned = (*offset + 0x3) & ~0x3; local
190 *offset = aligned
[all...]
/external/llvm/include/llvm/Support/
H A DEndian.h25 enum alignment {unaligned, aligned}; enumerator in enum:llvm::support::alignment
33 struct alignment_access_helper<value_type, aligned>
116 class packed_endian_specific_integral<value_type, little, aligned> {
119 return endian::read_le<value_type, aligned>(&Value);
126 class packed_endian_specific_integral<value_type, big, aligned> {
129 return endian::read_be<value_type, aligned>(&Value);
156 <uint8_t, little, aligned> aligned_ulittle8_t;
158 <uint16_t, little, aligned> aligned_ulittle16_t;
160 <uint32_t, little, aligned> aligned_ulittle32_t;
162 <uint64_t, little, aligned> aligned_ulittle64_
[all...]
/external/valgrind/main/coregrind/
H A Dm_machine.c402 * instructions don't raise a SIGILL, that they will zero an aligned,
411 char *aligned = test_block; local
415 aligned = (char *)(((HWord)aligned + MAX_DCBZL_SZB) & ~(MAX_DCBZL_SZB - 1));
416 vg_assert((aligned + MAX_DCBZL_SZB) <= &test_block[sizeof(test_block)]);
423 : "r" (aligned) /*in*/
441 : "r" (aligned) /*in*/
/external/dbus/dbus/
H A Ddbus-marshal-basic.c1220 /* struct is 8 since it could contain an 8-aligned item
1347 const unsigned char *aligned; local
1355 aligned = _DBUS_ALIGN_ADDRESS (data, 4);
1356 if (aligned > data)
1357 aligned -= 4;
1358 _dbus_assert (aligned <= data);
1360 if (aligned != data)
1362 _dbus_verbose ("%4ld\t%p: ", - (long)(data - aligned), aligned);
1363 while (aligned !
[all...]
H A Ddbus-marshal-recursive.c832 * address may not be aligned; you have to align it to the type of the
1805 int aligned; local
1898 aligned = _DBUS_ALIGN_VALUE (sub->value_pos, alignment);
1899 if (aligned != sub->value_pos)
1905 aligned - sub->value_pos,
1910 sub->value_pos = aligned;
H A Ddbus-string.c81 unsigned char *aligned; local
91 aligned = _DBUS_ALIGN_ADDRESS (real_block, 8);
93 real->align_offset = aligned - real_block;
94 real->str = aligned;
252 /* We don't require const strings to be 8-byte aligned as the
946 if (delta == 0) /* only happens if gap_size == 0 and insert_at is aligned already */
1092 * Appends 4 bytes aligned on a 4 byte boundary
1116 * Appends 8 bytes aligned on an 8 byte boundary
1139 * Inserts 2 bytes aligned on a 2 byte boundary
1163 * Inserts 4 bytes aligned o
[all...]
/external/valgrind/main/memcheck/
H A Dmc_main.c363 /* An entry in the auxiliary primary map. base must be a 64k-aligned
694 tl_assert(VG_IS_2_ALIGNED(a)); // Must be 2-aligned
712 tl_assert(VG_IS_2_ALIGNED(a)); // Must be 2-aligned
1215 insists in stepping along byte strings in aligned word-sized
1224 - it's a word-sized, word-aligned load
1269 /* Handle common case quickly: a is suitably aligned, */
1291 /* Handle common case quickly: a is suitably aligned, */
1468 // 8-aligned, 8 byte steps
1495 // 64KB-aligned, 64KB steps.
1540 // 8-aligned,
1663 Bool aligned, nooverlap; local
[all...]
/external/v8/test/cctest/
H A Dtest-api.cc867 // Check not aligned addresses.
1582 void* aligned = data; local
1583 CHECK_EQ(0, static_cast<int>(reinterpret_cast<uintptr_t>(aligned) & 0x1));
1587 // Check reading and writing aligned pointers.
1588 obj->SetPointerInInternalField(0, aligned);
1590 CHECK_EQ(aligned, obj->GetPointerFromInternalField(0));
1614 void* aligned = data; local
1615 CHECK_EQ(0, static_cast<int>(reinterpret_cast<uintptr_t>(aligned) & 0x1));
1619 obj->SetPointerInInternalField(0, aligned);
1621 CHECK_EQ(aligned, v
[all...]
/external/valgrind/main/perf/
H A Dtinycc.c2226 int aligned;
2796 DEF(TOK_ALIGNED1, "aligned")
4128 DEF(TOK_ALIGNED1, "aligned")
5619 /* maximum alignment (for aligned attribute support) */
12018 - aligned(n) : set data/function alignment.
12058 ad->aligned = n;
12217 if (ad.aligned) {
12218 if (align < ad.aligned)
12219 align = ad.aligned;
14340 if (ad->aligned) {
2224 int aligned; member in struct:AttributeDef
[all...]

Completed in 331 milliseconds