Searched refs:alignment (Results 51 - 75 of 252) sorted by relevance

1234567891011

/external/webkit/Source/JavaScriptCore/wtf/
H A DPageAllocationAligned.h44 static PageAllocationAligned allocate(size_t size, size_t alignment, OSAllocator::Usage usage = OSAllocator::UnknownUsage, bool writable = true, bool executable = false);
/external/webkit/Source/WebCore/platform/graphics/gpu/
H A DPODArena.h129 // Returns the alignment requirement for classes and structs on the
153 // Rounds up the given allocation size to the specified alignment.
154 size_t roundUp(size_t size, size_t alignment) argument
156 ASSERT(!(alignment % 2));
157 return (size + alignment - 1) & ~(alignment - 1);
/external/chromium/chrome/browser/extensions/
H A Dbrowser_action_test_util_gtk.cc24 GtkWidget* alignment = local
26 button = gtk_bin_get_child(GTK_BIN(alignment));
/external/webkit/Source/WebCore/css/
H A DSVGCSSPropertyNames.in41 alignment-baseline
/external/webkit/Source/WebCore/page/
H A DSpatialNavigation.h109 , alignment(None)
131 RectsAlignment alignment; member in struct:WebCore::FocusCandidate
/external/webkit/Source/JavaScriptCore/jit/
H A DExecutableAllocatorFixedVMPool.cpp111 size_t alignment = sizeClass.blockAlignment(); local
114 BitField mask = ((1ull << count) - 1) << (alignment - count);
116 // Step in units of alignment size.
117 for (unsigned i = 0; i < entries; i += alignment) {
120 return (i + (alignment - count)) << log2SubregionSize;
122 mask <<= alignment; local
288 size_t alignment = sizeClass.blockAlignment(); local
291 BitField mask = ((1ull << count) - 1) << (alignment - count);
293 // Step in units of alignment size.
294 for (unsigned i = 0; i < entries; i += alignment) {
299 mask <<= alignment; local
[all...]
/external/dbus/dbus/
H A Ddbus-marshal-basic.c903 * @param alignment size of each element
908 int alignment)
913 _dbus_assert (_DBUS_ALIGN_ADDRESS (data, alignment) == data);
919 end = d + (n_elements * alignment);
921 if (alignment == 8)
933 else if (alignment == 4)
943 _dbus_assert (alignment == 2);
958 int alignment)
960 _dbus_assert (_DBUS_ALIGN_VALUE (array_start, alignment) == (unsigned) array_start);
968 n_elements, alignment);
906 _dbus_swap_array(unsigned char *data, int n_elements, int alignment) argument
954 swap_array(DBusString *str, int array_start, int n_elements, int byte_order, int alignment) argument
973 marshal_fixed_multi(DBusString *str, int insert_at, const DBusBasicValue *value, int n_elements, int byte_order, int alignment, int *pos_after) argument
1176 int alignment; local
1533 int alignment; local
1555 swap_test_array(void *array, int len_bytes, int byte_order, int alignment) argument
1668 int alignment; local
[all...]
/external/libffi/src/powerpc/
H A Dffi_darwin.c230 On Darwin, the first field of a structure has natural alignment. */
252 || p->alignment == 8))
254 else if (p->alignment == 16 || p->alignment < 4)
255 align = p->alignment;
261 s->size = ALIGN(s->size, s->alignment);
266 || s->elements[0]->alignment == 8)
267 s->alignment = s->alignment > 8 ? s->alignment
[all...]
/external/libffi/testsuite/libffi.call/
H A Dnested_struct10.c79 cls_struct_type.alignment = 0;
84 cls_struct_type1.alignment = 0;
89 cls_struct_type2.alignment = 0;
H A Dnested_struct6.c78 cls_struct_type.alignment = 0;
83 cls_struct_type1.alignment = 0;
88 cls_struct_type2.alignment = 0;
H A Dnested_struct8.c78 cls_struct_type.alignment = 0;
83 cls_struct_type1.alignment = 0;
88 cls_struct_type2.alignment = 0;
H A Dnested_struct9.c78 cls_struct_type.alignment = 0;
83 cls_struct_type1.alignment = 0;
88 cls_struct_type2.alignment = 0;
H A Dstruct1.c34 ts1_type.alignment = 0;
H A Dstruct2.c33 ts2_type.alignment = 0;
H A Dstruct4.c32 ts4_type.alignment = 0;
H A Dstruct5.c31 ts5_type.alignment = 0;
H A Dstruct6.c31 ts6_type.alignment = 0;
H A Dstruct7.c33 ts7_type.alignment = 0;
H A Dstruct9.c32 ts9_type.alignment = 0;
/external/clang/include/clang/AST/
H A DRecordLayout.h81 /// NonVirtualAlign - The non-virtual alignment (in chars) of an object,
82 /// which is the alignment of the object without virtual bases.
117 ASTRecordLayout(const ASTContext &Ctx, CharUnits size, CharUnits alignment,
124 CharUnits size, CharUnits alignment,
143 /// getAlignment - Get the record alignment in characters.
173 /// getNonVirtualSize - Get the non-virtual alignment (in chars) of an object,
174 /// which is the alignment of the object without virtual bases.
/external/llvm/bindings/ocaml/target/
H A Dllvm_target.mli69 (** Computes the ABI alignment of a type in bytes for a target.
73 (** Computes the call frame alignment of a type in bytes for a target.
77 (** Computes the preferred alignment of a type in bytes for a target.
82 (** Computes the preferred alignment of a global variable in bytes for a target.
/external/webkit/Source/JavaScriptCore/assembler/
H A DAssemblerBuffer.h63 bool isAligned(int alignment) const
65 return !(m_size & (alignment - 1));
/external/webkit/Source/WebKit2/Platform/CoreIPC/
H A DArgumentDecoder.h112 bool alignBufferPosition(unsigned alignment, size_t size);
113 bool bufferIsLargeEnoughToContain(unsigned alignment, size_t size) const;
/external/qemu/
H A Doslib-win32.c43 void *qemu_memalign(size_t alignment, size_t size) argument
51 //trace_qemu_memalign(alignment, size, ptr);
/external/clang/include/clang/Lex/
H A DPreprocessingRecord.h34 unsigned alignment = 8) throw();
103 unsigned alignment = 8) throw() {
104 return ::operator new(bytes, PR, alignment);
112 unsigned alignment) throw() {
113 return ::operator delete(ptr, PR, alignment);
628 unsigned alignment) throw() {
629 return PR.Allocate(bytes, alignment);
111 operator delete(void* ptr, PreprocessingRecord& PR, unsigned alignment) argument
627 operator new(size_t bytes, clang::PreprocessingRecord& PR, unsigned alignment) argument

Completed in 294 milliseconds

1234567891011