Searched defs:push (Results 1 - 25 of 363) sorted by relevance

1234567891011>>

/external/chromium_org/third_party/yasm/source/patched-yasm/modules/arch/x86/tests/
H A Dpush64.asm2 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
H A Dpushnosize.asm2 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 wor 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...]
H A Dsegoff-err.asm5 push dword [1:2] label
H A Dsegoff.asm6 push dword [foo] label
H A Dstrict.asm61 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 stric 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...]
H A Dcpubasic-err.asm17 push 0 label
/external/chromium_org/third_party/skia/src/gpu/
H A DGrClipMaskCache.cpp19 void GrClipMaskCache::push() { function in class:GrClipMaskCache
/external/skia/src/gpu/
H A DGrClipMaskCache.cpp19 void GrClipMaskCache::push() { function in class:GrClipMaskCache
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/nouveau/
H A Dnv20_state_polygon.c36 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));
H A Dnv20_state_raster.c37 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/yasm/source/patched-yasm/modules/objfmts/macho/tests/nasm64/
H A Dnasm-macho64-pic.asm15 push qword [rel _foo wrt ..gotpcrel] label
/external/chromium_org/third_party/yasm/source/patched-yasm/modules/parsers/gas/tests/
H A Dgas-push.asm0 push %gs
1 push %gs label
/external/chromium_org/v8/test/mjsunit/
H A Darray-push3.js9 function push(array, value) { function
10 array.push(value);
13 push(array, 0);
14 push(array, 1);
15 push(array, 2);
16 %OptimizeFunctionOnNextCall(push);
17 push(array, 3);
25 push(array, 4);
H A Darray-push9.js9 function push(array, value) { function
10 array.push(value);
13 push(array, 0);
14 push(array, 1);
15 push(array, 2);
16 %OptimizeFunctionOnNextCall(push);
17 push(array, 3);
25 push(array, 4);
H A Darray-push4.js16 // Test that element accessors are called in standard push cases.
25 Array.prototype.push.call(array, 100);
34 array.push(110);
43 array.push(value);
/external/chromium_org/v8/test/mjsunit/regress/
H A Dstring-split-monkey-patching.js29 // monkey-patchable Array.prototype.push or PutValue.
31 Array.prototype.push = assertUnreachable;
38 "I-must-not-use-push!".split(/-/);
H A Dregress-1625.js28 // Test that overwriting Array.prototype.push does not make
31 Array.prototype.push = 1;
/external/clang/test/Parser/
H A Dpragma-visibility2.c5 #define push(foo) push(default) macro
6 #pragma GCC visibility push(hidden)
16 _Pragma("GCC visibility push(hidden)");
/external/mesa3d/src/mesa/drivers/dri/nouveau/
H A Dnv20_state_polygon.c36 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));
H A Dnv20_state_raster.c37 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/linux-tools-perf/perf-3.12.0/tools/perf/ui/
H A Dhelpline.h11 void (*push)(const char *msg); member in struct:ui_helpline
/external/chromium_org/third_party/bintrees/bintrees/
H A Dcwalker.pxd18 cpdef push(self) member in class:cWalker
/external/chromium_org/third_party/yasm/source/patched-yasm/libyasm/tests/
H A Dopt-immexpand.asm9 push label2-label1 label
H A Dopt-immnoexpand.asm10 push label2-label1 label
/external/chromium_org/third_party/yasm/source/patched-yasm/modules/objfmts/bin/tests/multisect/
H A Dmultisect2.asm17 push cx
18 push dx define
32 push ax

Completed in 2393 milliseconds

1234567891011>>