Searched refs:align (Results 1 - 25 of 561) sorted by relevance

1234567891011>>

/macosx-10.10.1/dyld-353.2.1/unit-tests/test-cases/text-relocs/
H A Dspace.s2 .align 2
/macosx-10.10.1/IOGraphics-485/IONDRVSupport/
H A DIONDRVFramebufferPrivate.h24 #pragma options align=mac68k
60 #pragma options align=reset
/macosx-10.10.1/objc4-646/runtime/
H A Dobjc-sel-table.s3 .align 3
26 .align 3
/macosx-10.10.1/WebInspectorUI-7600.1.17/UserInterface/Views/
H A DLegacyJavaScriptProfileView.css35 text-align: center;
39 text-align: right;
43 text-align: center;
47 text-align: right;
51 text-align: center;
55 text-align: right;
59 text-align: center;
H A DFontResourceContentView.css61 text-align: center;
78 vertical-align: top;
83 vertical-align: baseline;
88 vertical-align: middle;
93 vertical-align: 1ex;
98 vertical-align: bottom;
H A DBoxModelDetailsSectionRow.css28 text-align: center;
44 text-align: center;
53 text-align: center;
54 vertical-align: middle;
67 text-align: center;
68 vertical-align: middle;
81 text-align: center;
82 vertical-align: middle;
96 text-align: center;
97 vertical-align
[all...]
H A DLegacyProfileView.css36 -webkit-align-content: center;
37 -webkit-align-items: center;
/macosx-10.10.1/tcl-105/tcl_ext/tclsoap/tclsoap/doc/
H A Dtclsoap.css10 TABLE {vertical-align: top; }
12 text-align: center;
16 TD.header {text-align: left; vertical-align: top;}
17 TD.logo {text-align: right; vertical-align: top;}
18 TD.sidebar {background-color: LightSteelBlue; width: 15%; vertical-align: top; }
19 TD.sidehead {text-align: center; background-color: SteelBlue; font-weight: bold}
20 TD.sideelt {text-align: right; }
30 text-align
[all...]
/macosx-10.10.1/dyld-353.2.1/src/
H A Dstart_glue.s28 .align 2
43 .align 2
58 .align 2
74 .align 2
/macosx-10.10.1/llvmCore-3425.0.34/docs/_static/
H A Dllvm.css14 table { text-align: center; border: 2px solid black;
21 text-align: center; vertical-align: middle; }
31 text-align: center;
32 vertical-align: middle;
38 h1, .doc_title, .title { text-align: left; font-size: 25pt }
40 h2, .doc_section { text-align: center; font-size: 22pt;
44 text-align: left; font-size: 12pt;
53 .doc_author { text-align: left; font-weight: bold; padding-left: 20pt }
54 .doc_text { text-align
[all...]
/macosx-10.10.1/ruby-106/ruby/
H A Dia64.s20 .align 16
31 .align 16
/macosx-10.10.1/xnu-2782.1.97/iokit/Kernel/x86_64/
H A DIOAsmSupport.s38 .align 2
/macosx-10.10.1/xnu-2782.1.97/libsyscall/wrappers/
H A D__get_cpu_capabilities.s33 .align 2, 0x90
43 .align 2, 0x90
H A Dmach_approximate_time.s35 .align 4, 0x90
45 .align 4, 0x90
/macosx-10.10.1/ruby-106/ruby/test/dl/
H A Dtest_c_struct_entry.rb15 expected = PackInfo.align 0, alignments[0]
18 expected = PackInfo.align expected, alignments[1]
21 expected = PackInfo.align expected, alignments.max
32 expected = PackInfo.align 0, alignments[0]
35 expected = PackInfo.align expected, alignments[1]
38 expected = PackInfo.align expected, alignments.max
/macosx-10.10.1/libpthread-105.1.4/src/
H A Dpthread_asm.s29 .align 2, 0x90
39 .align 2, 0x90
45 sub $24,%rsp // align the stack
50 .align 2, 0x90
56 sub $24,%rsp // align the stack
68 .align 2, 0x90
80 .align 2, 0x90
86 sub $28,%esp // align the stack
96 .align 2, 0x90
102 sub $28,%esp // align th
[all...]
/macosx-10.10.1/emacs-93/emacs/src/
H A Dw32heap.h30 #define ROUND_UP(p, align) (((DWORD)(p) + (align)-1) & ~((align)-1))
31 #define ROUND_DOWN(p, align) ((DWORD)(p) & ~((align)-1))
/macosx-10.10.1/Libinfo-459/lookup.subproj/
H A Dils.c48 padsize(size_t curr, size_t item, const uint32_t *align) argument
54 na = align[item];
101 const uint32_t *align; local
106 align = align_32;
107 if (sizeof(char *) == 8) align = align_64;
126 csize = sizeof(char *) + padsize(hsize, sizeof(char *), align);
147 csize = 2 + padsize(hsize, 2, align);
157 csize = 4 + padsize(hsize, 4, align);
167 csize = 8 + padsize(hsize, 8, align);
177 /* 4-byte-align sinc
[all...]
/macosx-10.10.1/ruby-106/ruby/test/fiddle/
H A Dtest_c_struct_entry.rb16 expected = PackInfo.align 0, alignments[0]
19 expected = PackInfo.align expected, alignments[1]
22 expected = PackInfo.align expected, alignments.max
33 expected = PackInfo.align 0, alignments[0]
36 expected = PackInfo.align expected, alignments[1]
39 expected = PackInfo.align expected, alignments.max
/macosx-10.10.1/ruby-106/ruby/ext/dl/lib/dl/
H A Dpack.rb52 def align(addr, align) method in class:DL.PackInfo
53 d = addr % align
57 addr + (align - d)
60 module_function :align
108 addr = align(orig_addr, ALIGN_MAP[TYPE_VOIDP])
110 addr = align(orig_addr, ALIGN_MAP[t])
124 addr = align(addr, ALIGN_MAP[TYPE_VOIDP])
H A Dstack.rb45 def align(addr, align) method in class:DL.Stack
46 d = addr % align
50 addr + (align - d)
106 def add_padding(addr, align)
108 addr = align(orig_addr, align)
/macosx-10.10.1/ruby-106/ruby/ext/fiddle/lib/fiddle/
H A Dpack.rb52 def align(addr, align) method in class:Fiddle.PackInfo
53 d = addr % align
57 addr + (align - d)
60 module_function :align
108 addr = align(orig_addr, ALIGN_MAP[TYPE_VOIDP])
110 addr = align(orig_addr, ALIGN_MAP[t])
124 addr = align(addr, ALIGN_MAP[TYPE_VOIDP])
/macosx-10.10.1/BerkeleyDB-21/db/docs_src/ref/am_misc/
H A DMakefile3 BUILD= align.html dbsizes.html diskspace.html error.html faq.html \
/macosx-10.10.1/cxxfilt-11/cxxfilt/binutils/testsuite/binutils-all/
H A Dlink-order.s2 .align 16
/macosx-10.10.1/xnu-2782.1.97/EXTERNAL_HEADERS/mach-o/
H A Dfat.h61 uint32_t align; /* alignment as a power of 2 */ member in struct:fat_arch

Completed in 235 milliseconds

1234567891011>>