HomeSort by relevance Sort by last modified time
    Searched defs:align (Results 1 - 25 of 274) sorted by null

1 2 3 4 5 6 7 8 91011

  /external/elfutils/libelf/
elf_getdata_rawchunk.c 144 size_t align = __libelf_type_align (elf->class, type); local
148 if (((uintptr_t) rawchunk & (align - 1)) == 0)
197 chunk->data.d.d_align = align;
  /external/chromium_org/third_party/openssl/openssl/crypto/modes/
cbc128.c 120 union { size_t align; unsigned char c[16]; } tmp; member in union:__anon15568
  /external/clang/test/CodeGen/
c-strings.c 6 // CHECK: @align = global i8 [[ALIGN:[0-9]+]]
9 // CHECK: @f2.x = internal global [6 x i8] c"hello\00", align [[ALIGN]]
10 // CHECK: @f3.x = internal global [8 x i8] c"hello\00\00\00", align [[ALIGN]]
12 // CHECK: @x = global [3 x i8] c"ola", align [[ALIGN]]
15 unsigned char align = 2; variable
17 unsigned char align = 1 variable
    [all...]
  /external/openssl/crypto/modes/
cbc128.c 120 union { size_t align; unsigned char c[16]; } tmp; member in union:__anon26014
  /frameworks/rs/cpu_ref/linkloader/utils/
traits.h 32 enum { align = offsetof(AlignmentTest, element) }; enumerator in enum:TypeTraits::__anon32435
35 #define TYPE_TRAITS_SPECIALIZE(TYPE, SIZE, ALIGN) \
39 enum { align = ALIGN }; \
  /external/chromium/chrome/browser/ui/gtk/infobars/
confirm_infobar_gtk.cc 28 GtkWidget* align = gtk_alignment_new(0, 0, 0, 1); local
29 gtk_container_add(GTK_CONTAINER(align), confirm_hbox_);
30 gtk_box_pack_start(GTK_BOX(hbox_), align, TRUE, TRUE, 0); local
  /external/chromium_org/third_party/leveldatabase/src/util/
arena.cc 43 const int align = sizeof(void*); // We'll align to pointer size local
44 assert((align & (align-1)) == 0); // Pointer size should be a power of 2
45 size_t current_mod = reinterpret_cast<uintptr_t>(alloc_ptr_) & (align-1);
46 size_t slop = (current_mod == 0 ? 0 : align - current_mod);
57 assert((reinterpret_cast<uintptr_t>(result) & (align-1)) == 0);
  /external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/xvmc/tests/
testlib.c 115 unsigned int align(unsigned int value, unsigned int alignment) function
  /external/chromium_org/third_party/smhasher/src/
MurmurHash1.cpp 85 int align = (uint64_t)data & 3; local
87 if(align && (len >= 4))
93 switch(align)
100 t <<= (8 * align);
102 data += 4-align;
103 len -= 4-align;
105 int sl = 8 * (4-align);
106 int sr = 8 * align;
125 int pack = len < align ? len : align;
    [all...]
  /external/chromium_org/third_party/yasm/source/patched-yasm/tools/genperf/
standard.h 23 #ifndef align
24 # define align(a) (((ub4)a+(sizeof(void *)-1))&(~(sizeof(void *)-1))) macro
25 #endif /* align */
  /external/iproute2/include/linux/tc_ematch/
tc_em_cmp.h 11 __u8 align:4; member in struct:tcf_em_cmp
  /external/iproute2/tc/
em_cmp.c 31 "Usage: cmp(ALIGN at OFFSET [ ATTRS ] { eq | lt | gt } VALUE)\n" \
32 "where: ALIGN := { u8 | u16 | u32 }\n" \
44 int align, opnd = 0; local
58 align = TCF_EM_ALIGN_U8;
60 align = TCF_EM_ALIGN_U16;
62 align = TCF_EM_ALIGN_U32;
133 cmp.align = (__u8) align;
154 if (cmp->align == TCF_EM_ALIGN_U8)
156 else if (cmp->align == TCF_EM_ALIGN_U16
    [all...]
em_u32.c 30 "Usage: u32(ALIGN VALUE MASK at [ nexthdr+ ] OFFSET)\n" \
31 "where: ALIGN := { u8 | u16 | u32 }\n" \
40 int align, nh_len; local
53 align = 1;
55 align = 2;
57 align = 4;
105 switch (align) {
  /external/libffi/src/m32r/
ffi.c 62 /* Align if necessary. */
64 argp = (char *) ALIGN (argp, (*p_arg)->alignment);
203 int align = cif->rtype->alignment; local
207 if (align == 1)
212 if (align == 1)
216 else if (align == 2)
  /external/mesa3d/src/gallium/state_trackers/xvmc/tests/
testlib.c 115 unsigned int align(unsigned int value, unsigned int alignment) function
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/cat/
TextAttribute.java 28 public TextAlignment align; field in class:TextAttribute
36 public TextAttribute(int start, int length, TextAlignment align,
41 this.align = align;
  /frameworks/rs/cpu_ref/linkloader/include/impl/
ELFSymbol.hxx 149 size_t align = 16; local
152 allocateSHNCommonData((size_t)getSize(), align);
191 size_t align = (size_t)getValue(); local
193 allocateSHNCommonData((size_t)getSize(), align);
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/linux/tc_ematch/
tc_em_cmp.h 11 __u8 align:4; member in struct:tcf_em_cmp
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/linux/tc_ematch/
tc_em_cmp.h 11 __u8 align:4; member in struct:tcf_em_cmp
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/linux/tc_ematch/
tc_em_cmp.h 11 __u8 align:4; member in struct:tcf_em_cmp
  /system/core/include/utils/
Flattenable.h 32 static size_t align(size_t size) { function in class:android::FlattenableUtils
38 static size_t align(void const*& buffer) { function in class:android::FlattenableUtils
46 static size_t align(void*& buffer) { function in class:android::FlattenableUtils
47 return align<N>( const_cast<void const*&>(buffer) );
  /external/chromium_org/chrome/browser/ui/gtk/infobars/
confirm_infobar_gtk.cc 45 GtkWidget* align = gtk_alignment_new(0, 0, 0, 1); local
46 gtk_container_add(GTK_CONTAINER(align), confirm_hbox_);
47 gtk_box_pack_start(GTK_BOX(hbox()), align, TRUE, TRUE, 0);
  /external/chromium_org/third_party/WebKit/Source/core/html/
HTMLTableSectionElement.cpp 109 String HTMLTableSectionElement::align() const function in class:WebCore::HTMLTableSectionElement
  /external/chromium_org/third_party/opus/src/src/
opus_private.h 78 static inline int align(int i) function
  /external/chromium_org/third_party/yasm/source/patched-yasm/libyasm/
bc-align.c 2 * Align bytecode
80 bytecode_align *align = (bytecode_align *)contents; local
81 if (align->boundary)
82 yasm_expr_destroy(align->boundary);
83 if (align->fill)
84 yasm_expr_destroy(align->fill);
85 if (align->maxskip)
86 yasm_expr_destroy(align->maxskip);
93 const bytecode_align *align = (const bytecode_align *)contents; local
96 yasm_expr_print(align->boundary, f)
107 bytecode_align *align = (bytecode_align *)bc->contents; local
137 bytecode_align *align = (bytecode_align *)bc->contents; local
172 bytecode_align *align = (bytecode_align *)bc->contents; local
237 bytecode_align *align = yasm_xmalloc(sizeof(bytecode_align)); local
    [all...]

Completed in 1027 milliseconds

1 2 3 4 5 6 7 8 91011