Searched refs:alignment (Results 201 - 225 of 252) sorted by relevance

1234567891011

/external/llvm/lib/Transforms/Scalar/
H A DLICM.cpp672 AliasSetTracker &ast, DebugLoc dl, int alignment)
675 AST(ast), DL(dl), Alignment(alignment) {}
749 // We start with an alignment of one and try to find instructions that allow
750 // us to prove better alignment.
792 // If the alignment of this instruction allows us to specify a more
793 // restrictive (and performant) alignment and if we are sure this
794 // instruction will be executed, update the alignment.
795 // Larger is better, with the exception of 0 being the best alignment.
667 LoopPromoter(Value *SP, const SmallVectorImpl<Instruction*> &Insts, SSAUpdater &S, SmallPtrSet<Value*, 4> &PMA, SmallVectorImpl<BasicBlock*> &LEB, SmallVectorImpl<Instruction*> &LIP, AliasSetTracker &ast, DebugLoc dl, int alignment) argument
/external/v8/src/
H A Dspaces.cc343 size_t alignment,
345 VirtualMemory reservation(size, alignment);
350 alignment);
357 size_t alignment,
361 Address base = ReserveAlignedMemory(size, alignment, &reservation);
2688 // Use variable alignment to help pass length check (<= 80 characters)
2690 const intptr_t alignment = MemoryChunk::kAlignment; local
2691 uintptr_t base = reinterpret_cast<uintptr_t>(page)/alignment;
2692 uintptr_t limit = base + (page->size()-1)/alignment;
342 ReserveAlignedMemory(size_t size, size_t alignment, VirtualMemory* controller) argument
356 AllocateAlignedMemory(size_t size, size_t alignment, Executability executable, VirtualMemory* controller) argument
H A Dplatform.h296 // Returns the activation frame alignment constraint or zero if
336 // is aligned per alignment. This may not be at the position returned
338 VirtualMemory(size_t size, size_t alignment);
351 // If the memory was reserved with an alignment, this address is not
353 // the alignment to get the start of the aligned block.
361 // If the memory was reserved with an alignment, this size may be larger
H A Dplatform-win32.cc865 // The allocation alignment is the guaranteed alignment for
1453 return 8; // Floating-point math runs faster with 8-byte alignment.
1471 VirtualMemory::VirtualMemory(size_t size, size_t alignment) argument
1473 ASSERT(IsAligned(alignment, static_cast<intptr_t>(OS::AllocateAlignment())));
1474 size_t request_size = RoundUp(size + alignment,
1478 Address base = RoundUp(static_cast<Address>(address), alignment);
/external/valgrind/main/none/tests/
H A Dcmdline1.stdout.exp53 --alignment=<number> set minimum alignment of heap allocations [...]
H A Dcmdline2.stdout.exp53 --alignment=<number> set minimum alignment of heap allocations [...]
/external/chromium/chrome/browser/ui/gtk/
H A Dgtk_util.cc240 // use a container border, since it won't paint there. Use an alignment
245 GtkWidget* alignment = gtk_alignment_new(0.0, 0.0, 1.0, 1.0); local
246 gtk_alignment_set_padding(GTK_ALIGNMENT(alignment), top, bottom, left, right);
247 gtk_container_add(GTK_CONTAINER(alignment), child);
248 gtk_container_add(GTK_CONTAINER(ebox), alignment); local
H A Dlocation_bar_view_gtk.cc175 // All of our widgets should have be children of / owned by the alignment.
188 // We will paint for the alignment, to paint the background and border.
247 // Put the event box in an alignment to get the padding correct.
374 // Put the event box in an alignment to get the padding correct.
516 GtkWidget* alignment = gtk_alignment_new(0, 0, 1, 1); local
517 gtk_alignment_set_padding(GTK_ALIGNMENT(alignment), 0, 0,
519 gtk_container_add(GTK_CONTAINER(alignment), star_image_);
523 gtk_container_add(GTK_CONTAINER(star_.get()), alignment); local
/external/icu4c/test/perf/collationperf/
H A DCollPerf.pl214 have found that even slight changes in code alignment can produce 10%
/external/libffi/src/sh64/
H A Dffi.c86 align = (*p_arg)->alignment;
/external/libvorbis/doc/
H A D02-bitpacking.tex196 bitstream is well defined. There are no artificial alignment
208 \subsubsection{end-of-packet alignment}
/external/webkit/Source/JavaScriptCore/wtf/
H A DVector.h49 template <size_t size, size_t alignment> struct AlignedBuffer;
58 template <size_t size, size_t alignment>
59 void swap(AlignedBuffer<size, alignment>& a, AlignedBuffer<size, alignment>& b)
/external/clang/lib/CodeGen/
H A DCGExprAgg.cpp289 // It's volatile if either side is. Use the minimum alignment of
1277 CharUnits alignment) {
1306 // Get data size and alignment info for this aggregate.
1310 if (alignment.isZero())
1311 alignment = TypeInfo.second;
1369 alignment.getQuantity(), isVolatile);
1274 EmitAggregateCopy(llvm::Value *DestPtr, llvm::Value *SrcPtr, QualType Ty, bool isVolatile, CharUnits alignment) argument
H A DCGExpr.cpp68 // FIXME: Should we prefer the preferred type alignment here?
77 // FIXME: Should we prefer the preferred type alignment here?
493 // storage of suitable size and alignment to contain an object of the
1722 CharUnits alignment = getContext().getDeclAlign(VD); local
1724 E->getType(), alignment);
2044 // Propagate the alignment from the array itself to the result.
2065 // Limit the alignment to that of the result type.
2192 CharUnits alignment = getContext().getDeclAlign(field); local
2194 // FIXME: It should be impossible to have an LValue without alignment for a
2197 alignment
[all...]
H A DCodeGenModule.h136 /// The size and alignment of a pointer into the generic address
570 /// The alignment of the field. This is important because
575 ByrefHelpers(CharUnits alignment) : Alignment(alignment) {} argument
/external/bison/src/
H A Dvcg.c303 get_node_alignment_str (enum alignment alignment) argument
305 switch (alignment)
/external/webkit/Source/WebCore/page/
H A DSpatialNavigation.cpp64 , alignment(None)
100 // If we found a node in full alignment, but it is too far away, ignore it.
628 candidate.alignment = Full;
679 candidate.alignment = alignmentForRects(direction, currentRect, nodeRect, viewSize);
/external/libvpx/vp8/common/ppc/
H A Dfilter_altivec.asm147 lvsl v21, 0, \RS ;# permutate value for alignment
176 lvsl v21, 0, \RS ;# permutate value for alignment
800 ;# v14 permutation value for alignment
845 lvsl v15, 0, r3 ;# permutate value for alignment
923 lvsl v15, 0, r3 ;# permutate value for alignment
/external/webkit/Source/WebCore/inspector/front-end/
H A DDataGrid.js1176 var alignment = this.dataGrid.aligned[columnIdentifier];
1177 if (alignment)
1178 cell.addStyleClass(alignment);
/external/clang/include/clang/AST/
H A DStmt.h305 unsigned alignment = 8) throw() {
306 return ::operator new(bytes, C, alignment);
310 unsigned alignment = 8) throw() {
311 return ::operator new(bytes, *C, alignment);
/external/libvpx/vp8/encoder/ppc/
H A Dvariance_altivec.asm22 lvsl v3, 0, \R ;# permutate value for alignment
/external/llvm/lib/Target/CellSPU/
H A DSPUISelLowering.cpp567 unsigned alignment = LN->getAlignment(); local
577 if (InVT.getSizeInBits() == 128 && (alignment%16) == 0)
590 if ((alignment%16) == 0) {
674 // When the size is not greater than alignment we get all data with just
676 if (alignment >= InVT.getSizeInBits()/8) {
691 // When alignment is less than the size, we might need (known only at
776 unsigned alignment = SN->getAlignment(); local
791 if (StVT.getSizeInBits() == 128 && (alignment%16) == 0)
799 if ((alignment%16) == 0) {
869 if (alignment >
[all...]
/external/webkit/Source/JavaScriptCore/assembler/
H A DARMAssembler.h702 JmpDst align(int alignment) argument
704 while (!m_buffer.isAligned(alignment))
H A DMIPSAssembler.h669 JmpDst align(int alignment) argument
671 while (!m_buffer.isAligned(alignment))
/external/webkit/Source/WebCore/platform/graphics/
H A DGraphicsContext3D.h495 // By default, alignment is 4, the OpenGL default setting.
496 bool texImage2DResourceSafe(GC3Denum target, GC3Dint level, GC3Denum internalformat, GC3Dsizei width, GC3Dsizei height, GC3Dint border, GC3Denum format, GC3Denum type, GC3Dint alignment = 4);
521 GC3Dint alignment,

Completed in 464 milliseconds

1234567891011