/external/chromium_org/third_party/yasm/source/patched-yasm/modules/arch/x86/tests/ |
push64.asm | 2 push dword 50 label 3 push dword -1 label 4 push strict dword 50 label 5 push strict dword -1 label 6 push dword 1000000000000 label
|
pushnosize.asm | 2 push 0 ; 6A 00 - equivalent to push byte 0 label 3 push byte 0 ; 6A 00 label 4 push word 0 ; 6A 00 - optimized label 5 push dword 0 ; 66 6A 00 - optimized label 6 push strict byte 0 ; 6A 00 label 7 push strict word 0 ; 68 0000 label 8 push strict dword 0 ; 66 68 00000000 label 9 push 128 ; 68 8000 - doesn't fit in byte, equivalent to push word 12 label 10 push byte 128 ; 6A 80 - warning (signed overflow) label 11 push word 128 ; 68 8000 label 12 push dword 128 ; 66 68 80000000 label 13 push strict byte 128 ; 6A 80 - warning (signed overflow) label 14 push strict word 128 ; 68 8000 label 15 push strict dword 128 ; 66 68 80000000 label 18 push 0 ; 6A 00 - equivalent to push byte 0 label 19 push byte 0 ; 6A 00 label 20 push word 0 ; 66 6A 00 - optimized label 21 push dword 0 ; 6A 00 - optimized label 22 push strict byte 0 ; 6A 00 label 23 push strict word 0 ; 66 68 0000 label 24 push strict dword 0 ; 68 00000000 label 25 push 128 ; 68 80000000 - doesn't fit in byte -> push dword 128 label 26 push byte 128 ; 6A 80 - warning (signed overflow) label 27 push word 128 ; 66 6A 8000 label 28 push dword 128 ; 6A 80000000 label 29 push strict byte 128 ; 6A 80 - warning (signed overflow) label 30 push strict word 128 ; 66 6A 8000 label 31 push strict dword 128 ; 6A 80000000 label 34 push 0 ; same as bits 32 output label 35 push byte 0 ; 6A 00; 64 bits pushed onto stack label 36 push word 0 ; 66 6A 00 - 66h prefix, optimized to byte label 37 push dword 0 ; 6A 00 - optimized to byte; note 64 bits pushed onto stack label 38 push strict byte 0 ; 6A 00; 64 bits pushed onto stack label 39 push strict word 0 ; 66 68 0000 label 40 push strict dword 0 ; 68 00000000; note 64 bits pushed onto stack label 41 push 128 label 42 push byte 128 ; warning label 43 push word 128 label 44 push dword 128 label 45 push strict byte 128 ; warning label 46 push strict word 128 label 47 push strict dword 128 label [all...] |
segoff-err.asm | 5 push dword [1:2] label
|
segoff.asm | 6 push dword [foo] label
|
strict.asm | 61 push 4 label 62 push strict 4 ; NASM generates dword, yasm generates byte label 63 push byte 4 label 64 push strict byte 4 label 65 push dword 4 ; optimized to byte label 66 push strict dword 4 label 67 push 400 label 68 push strict 400 label 69 push byte 400 ; generates warning label 70 push strict byte 400 ; generates warnin label 71 push dword 400 label 72 push strict dword 400 label 146 push 4 label 147 push strict 4 ; NASM generates dword, yasm generates byte label 148 push byte 4 label 149 push strict byte 4 label 150 push dword 4 ; optimized to byte label 151 push strict dword 4 label 154 push 400 label 155 push strict 400 label 156 push byte 400 ; generates warning label 157 push strict byte 400 ; generates warning label 158 push dword 400 label 159 push strict dword 400 label [all...] |
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/nouveau/ |
nv20_state_polygon.c | 36 struct nouveau_pushbuf *push = context_push(ctx); local 38 BEGIN_NV04(push, NV20_3D(POINT_SIZE), 1); 40 PUSH_DATAf(push, ctx->Point.Size); 42 PUSH_DATA (push, (uint32_t)(ctx->Point.Size * 8));
|
nv20_state_raster.c | 37 struct nouveau_pushbuf *push = context_push(ctx); local 39 BEGIN_NV04(push, NV20_3D(COLOR_LOGIC_OP_ENABLE), 2); 40 PUSH_DATAb(push, ctx->Color.ColorLogicOpEnabled); 41 PUSH_DATA (push, nvgl_logicop_func(ctx->Color.LogicOp));
|
/external/chromium_org/third_party/skia/src/gpu/ |
GrClipMaskCache.cpp | 19 void GrClipMaskCache::push() { function in class:GrClipMaskCache
|
/external/mesa3d/src/mesa/drivers/dri/nouveau/ |
nv20_state_polygon.c | 36 struct nouveau_pushbuf *push = context_push(ctx); local 38 BEGIN_NV04(push, NV20_3D(POINT_SIZE), 1); 40 PUSH_DATAf(push, ctx->Point.Size); 42 PUSH_DATA (push, (uint32_t)(ctx->Point.Size * 8));
|
nv20_state_raster.c | 37 struct nouveau_pushbuf *push = context_push(ctx); local 39 BEGIN_NV04(push, NV20_3D(COLOR_LOGIC_OP_ENABLE), 2); 40 PUSH_DATAb(push, ctx->Color.ColorLogicOpEnabled); 41 PUSH_DATA (push, nvgl_logicop_func(ctx->Color.LogicOp));
|
/external/skia/src/gpu/ |
GrClipMaskCache.cpp | 19 void GrClipMaskCache::push() { function in class:GrClipMaskCache
|
/external/chromium_org/third_party/yasm/source/patched-yasm/modules/objfmts/macho/tests/nasm64/ |
nasm-macho64-pic.asm | 15 push qword [rel _foo wrt ..gotpcrel] label
|
/external/chromium_org/third_party/yasm/source/patched-yasm/modules/parsers/gas/tests/ |
gas-push.asm | 0 push %gs 1 push %gs label
|
/external/chromium_org/v8/test/mjsunit/regress/ |
string-split-monkey-patching.js | 29 // monkey-patchable Array.prototype.push or PutValue. 31 Array.prototype.push = assertUnreachable; 38 "I-must-not-use-push!".split(/-/);
|
regress-1625.js | 28 // Test that overwriting Array.prototype.push does not make 31 Array.prototype.push = 1;
|
/external/clang/test/Parser/ |
pragma-visibility2.c | 5 #define push(foo) push(default) macro 6 #pragma GCC visibility push(hidden) 16 _Pragma("GCC visibility push(hidden)");
|
/external/v8/test/mjsunit/regress/ |
regress-1625.js | 28 // Test that overwriting Array.prototype.push does not make 31 Array.prototype.push = 1;
|
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/ext/pb_ds/detail/pairing_heap_/ |
insert_fn_imps.hpp | 44 push(const_reference r_val) function in class:PB_DS_CLASS_C_DEC
|
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/i686-linux/include/c++/4.6.x-google/ext/pb_ds/detail/pairing_heap_/ |
insert_fn_imps.hpp | 44 push(const_reference r_val) function in class:PB_DS_CLASS_C_DEC
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/x86_64-linux/include/c++/4.6.x-google/ext/pb_ds/detail/pairing_heap_/ |
insert_fn_imps.hpp | 44 push(const_reference r_val) function in class:PB_DS_CLASS_C_DEC
|
/prebuilts/ndk/5/sources/cxx-stl/gnu-libstdc++/include/ext/pb_ds/detail/pairing_heap_/ |
insert_fn_imps.hpp | 44 push(const_reference r_val) function in class:PB_DS_CLASS_C_DEC
|
/prebuilts/ndk/6/sources/cxx-stl/gnu-libstdc++/include/ext/pb_ds/detail/pairing_heap_/ |
insert_fn_imps.hpp | 44 push(const_reference r_val) function in class:PB_DS_CLASS_C_DEC
|
/prebuilts/ndk/7/sources/cxx-stl/gnu-libstdc++/include/ext/pb_ds/detail/pairing_heap_/ |
insert_fn_imps.hpp | 44 push(const_reference r_val) function in class:PB_DS_CLASS_C_DEC
|
/prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.4.3/include/ext/pb_ds/detail/pairing_heap_/ |
insert_fn_imps.hpp | 44 push(const_reference r_val) function in class:PB_DS_CLASS_C_DEC
|
/prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.6/include/ext/pb_ds/detail/pairing_heap_/ |
insert_fn_imps.hpp | 44 push(const_reference r_val) function in class:PB_DS_CLASS_C_DEC
|