/external/llvm/test/MC/AsmParser/ |
directive_zerofill.s | 4 # CHECK: .zerofill __FOO,__bar,x,1 5 # CHECK: .zerofill __FOO,__bar,y,8,2 6 # CHECK: .zerofill __EMPTY,__NoSymbol 7 # CHECK: .zerofill __DATA,__bss,"what you say?",8,3 9 .zerofill __FOO, __bar, x, 2-1 10 .zerofill __FOO, __bar, y , 8 , 1+1 11 .zerofill __EMPTY,__NoSymbol 14 .zerofill __DATA, __bss, "what you say?", 8, 3
|
/external/llvm/test/MC/MachO/ |
zerofill-4.s | 3 .zerofill __DATA,__bss,_fill0,1,0 4 .zerofill __DATA,__bss,_a,4,2 5 .zerofill __DATA,__bss,_fill1,1,0 6 .zerofill __DATA,__bss,_b,4,3 7 .zerofill __DATA,__bss,_fill2,1,0 8 .zerofill __DATA,__bss,_c,4,4 9 .zerofill __DATA,__bss,_fill3,1,0 10 .zerofill __DATA,__bss,_d,4,5
|
zerofill-sect-align.s | 7 .zerofill __DATA,__bss,_a,1,0 8 .zerofill __DATA,__bss,_b,4,4
|
i386-large-relocations.s | 15 .zerofill __DATA,__bss,__dummy,0x5d780 16 .zerofill __DATA,__bss,_bar,48,4
|
relax-recompute-align.s | 37 .zerofill __DATA,__bss,_sym,4,2
|
lcomm-attributes.s | 13 .zerofill __DATA, __bss, sym_zfill_ext_A, 4 14 .zerofill __DATA, __bss, sym_zfill_ext_B, 4
|
zerofill-1.s | 6 .zerofill __DATA, __common, zfill, 2, 1
|
zerofill-2.s | 6 .zerofill __DATA, __bss, sym_a, 1
|
zerofill-5.s | 7 .zerofill __DATA,__bss,_g0,8,3
|
/external/llvm/test/CodeGen/X86/ |
large-global.ll | 11 ; CHECK: .zerofill __DATA,__common,_gArray,26214400000,4
|
global-sections.ll | 172 ;; Zero sized objects should round up to 1 byte in zerofill directives. 179 ; DARWIN: .zerofill __DATA,__common,_G11,1,2 181 ; DARWIN: .zerofill __DATA,__common,_G12,1,3 183 ; DARWIN: .zerofill __DATA,__common,_G13,1,3
|
/external/llvm/test/CodeGen/ARM/ |
global-merge-1.ll | 8 ; MERGE-NOT: .zerofill __DATA,__bss,_bar,20,2 9 ; MERGE-NOT: .zerofill __DATA,__bss,_baz,20,2 10 ; MERGE-NOT: .zerofill __DATA,__bss,_foo,20,2 11 ; MERGE: .zerofill __DATA,__bss,__MergedGlobals,60,4 12 ; MERGE-NOT: .zerofill __DATA,__bss,_bar,20,2 13 ; MERGE-NOT: .zerofill __DATA,__bss,_baz,20,2 14 ; MERGE-NOT: .zerofill __DATA,__bss,_foo,20,2 16 ; NO-MERGE-NOT: .zerofill __DATA,__bss,__MergedGlobals,60,4 17 ; NO-MERGE: .zerofill __DATA,__bss,_bar,20,2 18 ; NO-MERGE: .zerofill __DATA,__bss,_baz,20, [all...] |
2011-06-29-MergeGlobalsAlign.ll | 2 ; CHECK: .zerofill __DATA,__bss,__MergedGlobals,16,2
|
/external/llvm/test/CodeGen/AArch64/ |
global-merge.ll | 29 ; CHECK-APPLE-IOS: .zerofill __DATA,__bss,__MergedGlobals,8,3 30 ; CHECK-APPLE-IOS-NO-MERGE-NOT: .zerofill __DATA,__bss,__MergedGlobals,8,3
|
global-merge-1.ll | 26 ;CHECK-APPLE-IOS: .zerofill __DATA,__bss,__MergedGlobals,8,3 ; @_MergedGlobals
|
global-merge-2.ll | 43 ;CHECK-APPLE-IOS: .zerofill __DATA,__common,__MergedGlobals_x,12,3
|
global-merge-3.ll | 41 ;CHECK-APPLE-IOS: .zerofill __DATA,__common,__MergedGlobals_y,4000,4
|
/external/chromium_org/third_party/WebKit/Source/wtf/ |
Uint8ClampedArray.h | 49 inline void zeroFill(); 90 void Uint8ClampedArray::zeroFill()
|
/external/llvm/lib/MC/ |
MCAsmInfoDarwin.cpp | 41 HasMachoZeroFillDirective = true; // Uses .zerofill
|
MCMachOStreamer.cpp | 356 // '.lcomm' is equivalent to '.zerofill'. 369 // On darwin all virtual sections have zerofill type. 370 assert(Section->isVirtualSection() && "Section does not have zerofill type!"); 391 // .zerofill directive this doesn't actually switch sections on us.
|
/external/llvm/lib/MC/MCParser/ |
DarwinAsmParser.cpp | 67 addDirectiveHandler<&DarwinAsmParser::parseDirectiveZerofill>(".zerofill"); 745 /// ::= .zerofill segname , sectname [, identifier , size_expression [ 750 return TokError("expected segment name after '.zerofill' directive"); 758 return TokError("expected section name after comma in '.zerofill' " 764 // Create the zerofill section but no symbol 802 return TokError("unexpected token in '.zerofill' directive"); 807 return Error(SizeLoc, "invalid '.zerofill' directive size, can't be less " 814 return Error(Pow2AlignmentLoc, "invalid '.zerofill' directive alignment, " 820 // Create the zerofill Symbol with Size and Pow2Alignment [all...] |
/external/chromium_org/third_party/WebKit/Source/core/html/ |
ImageData.cpp | 85 imageData->data()->zeroFill();
|
/external/llvm/include/llvm/MC/ |
MCStreamer.h | 509 /// EmitZerofill - Emit the zerofill section and an optional symbol. 511 /// @param Section - The zerofill section to create and or to put the symbol 512 /// @param Symbol - The zerofill symbol to emit, if non-NULL. 513 /// @param Size - The size of the zerofill symbol. 514 /// @param ByteAlignment - The alignment of the zerofill symbol if
|
/external/llvm/tools/llvm-readobj/ |
MachODumper.cpp | 74 { "ZeroFill" , 0x01 },
|
/external/chromium_org/third_party/WebKit/Source/platform/graphics/ |
ImageBuffer.cpp | 354 result->zeroFill();
|