Searched defs:aligned (Results 1 - 6 of 6) 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/dbus/dbus/
H A Ddbus-marshal-basic.c1197 /* struct is 8 since it could contain an 8-aligned item
1321 const unsigned char *aligned; local
1329 aligned = _DBUS_ALIGN_ADDRESS (data, 4);
1330 if (aligned > data)
1331 aligned -= 4;
1332 _dbus_assert (aligned <= data);
1334 if (aligned != data)
1336 _dbus_verbose ("%4d\t%p: ", - (data - aligned), aligned);
1337 while (aligned !
[all...]
H A Ddbus-marshal-recursive.c829 * address may not be aligned; you have to align it to the type of the
1785 int aligned; local
1878 aligned = _DBUS_ALIGN_VALUE (sub->value_pos, alignment);
1879 if (aligned != sub->value_pos)
1885 aligned - sub->value_pos,
1890 sub->value_pos = aligned;
H A Ddbus-string.c79 unsigned char *aligned; local
89 aligned = _DBUS_ALIGN_ADDRESS (real_block, 8);
91 real->align_offset = aligned - real_block;
92 real->str = aligned;
250 /* We don't require const strings to be 8-byte aligned as the
893 if (delta == 0) /* only happens if gap_size == 0 and insert_at is aligned already */
1039 * Appends 4 bytes aligned on a 4 byte boundary
1063 * Appends 8 bytes aligned on an 8 byte boundary
1086 * Inserts 2 bytes aligned on a 2 byte boundary
1110 * Inserts 4 bytes aligned o
[all...]
/external/v8/test/cctest/
H A Dtest-api.cc1350 void* aligned = data; local
1351 CHECK_EQ(0, reinterpret_cast<uintptr_t>(aligned) & 0x1);
1355 // Check reading and writing aligned pointers.
1356 obj->SetPointerInInternalField(0, aligned);
1358 CHECK_EQ(aligned, obj->GetPointerFromInternalField(0));
1382 void* aligned = data; local
1383 CHECK_EQ(0, reinterpret_cast<uintptr_t>(aligned) & 0x1);
1387 obj->SetPointerInInternalField(0, aligned);
1389 CHECK_EQ(aligned, v8::External::Unwrap(obj->GetInternalField(0)));
1395 obj->SetInternalField(0, v8::External::Wrap(aligned));
[all...]

Completed in 96 milliseconds