/third_party/jerryscript/tests/jerry/ |
D | array-prototype-pop.js | 18 assert(array.pop() === 4) 21 assert(array.pop() === Infinity); 24 var a = array.pop() 28 assert(array.pop() === "foo"); 31 assert(array.pop() === undefined); 35 var obj = { pop : Array.prototype.pop }; property 39 obj.pop(); 47 var obj = { pop : Array.prototype.pop }; property 51 obj.pop(); 59 var obj = { pop : Array.prototype.pop }; property [all …]
|
/third_party/python/Tools/scripts/ |
D | var_access_benchmark.py | 208 ap, pop = a.append, a.pop 210 ap(1); pop(); ap(1); pop(); ap(1); pop(); ap(1); pop(); ap(1); pop() 211 ap(1); pop(); ap(1); pop(); ap(1); pop(); ap(1); pop(); ap(1); pop() 212 ap(1); pop(); ap(1); pop(); ap(1); pop(); ap(1); pop(); ap(1); pop() 213 ap(1); pop(); ap(1); pop(); ap(1); pop(); ap(1); pop(); ap(1); pop() 214 ap(1); pop(); ap(1); pop(); ap(1); pop(); ap(1); pop(); ap(1); pop() 217 ap, pop = a.append, a.pop 219 ap(1); pop(); ap(1); pop(); ap(1); pop(); ap(1); pop(); ap(1); pop() 220 ap(1); pop(); ap(1); pop(); ap(1); pop(); ap(1); pop(); ap(1); pop() 221 ap(1); pop(); ap(1); pop(); ap(1); pop(); ap(1); pop(); ap(1); pop() [all …]
|
/third_party/libunwind/src/dwarf/ |
D | Gexpr.c | 259 # define pop() \ in dwarf_eval_expr() macro 431 tmp1 = pop (); in dwarf_eval_expr() 439 tmp1 = pop (); in dwarf_eval_expr() 498 (void) pop (); in dwarf_eval_expr() 513 tmp1 = pop (); in dwarf_eval_expr() 514 tmp2 = pop (); in dwarf_eval_expr() 521 tmp1 = pop (); in dwarf_eval_expr() 522 tmp2 = pop (); in dwarf_eval_expr() 523 tmp3 = pop (); in dwarf_eval_expr() 531 tmp1 = pop (); in dwarf_eval_expr() [all …]
|
/third_party/pcre2/pcre2/testdata/ |
D | testinput20 | 28 # Reload the patterns, then pop them one by one and check them. 33 #pop info 37 #pop mark 42 #pop 45 #pop info 54 #pop 57 #pop 60 #pop should give an error 66 #pop 69 #pop should give an error [all …]
|
D | testoutput20 | 29 # Reload the patterns, then pop them one by one and check them. 34 #pop info 51 #pop mark 60 #pop 68 #pop info 89 #pop 93 #pop 97 #pop should give an error 98 ** Can't pop off an empty stack 105 #pop [all …]
|
/third_party/node/deps/cares/src/lib/ |
D | ares_nowarn.c | 75 # pragma warning(pop) in aresx_uztosl() 93 # pragma warning(pop) in aresx_uztosi() 111 # pragma warning(pop) in aresx_uztoss() 130 # pragma warning(pop) in aresx_sitoss() 149 # pragma warning(pop) in aresx_sltosi() 168 # pragma warning(pop) in aresx_sztosi() 187 # pragma warning(pop) in aresx_sztoui() 206 # pragma warning(pop) in aresx_sitous() 217 #pragma warning(pop) in aresx_FD_ISSET() 225 #pragma warning(pop) in aresx_FD_SET() [all …]
|
/third_party/ffmpeg/libavutil/x86/ |
D | cpuid.asm | 40 pop r4 42 pop r4 44 pop r4 46 pop r4 48 pop rbx 59 pop r4 61 pop r4 77 pop eax 83 pop eax 85 pop edi [all …]
|
/third_party/skia/src/sksl/lex/ |
D | RegexParser.cpp | 19 return this->pop(); in parse() 37 RegexNode RegexParser::pop() { in pop() function in RegexParser 39 fStack.pop(); in pop() 55 case '*': fStack.push(RegexNode(RegexNode::kStar_Kind, this->pop())); ++fIndex; break; in quantifiedTerm() 56 case '+': fStack.push(RegexNode(RegexNode::kPlus_Kind, this->pop())); ++fIndex; break; in quantifiedTerm() 57 case '?': fStack.push(RegexNode(RegexNode::kQuestion_Kind, this->pop())); ++fIndex; break; in quantifiedTerm() 71 RegexNode right = this->pop(); in sequence() 72 RegexNode left = this->pop(); in sequence() 122 RegexNode end = this->pop(); in setItem() 124 RegexNode start = this->pop(); in setItem() [all …]
|
/third_party/rust/crates/rustix/src/backend/linux_raw/arch/outline/ |
D | x86.s | 41 pop ebx 74 pop ebx 93 pop ebx 116 pop esi 118 pop ebx 145 pop edi 147 pop esi 149 pop ebx 180 pop ebp 182 pop edi [all …]
|
/third_party/curl/lib/ |
D | warnless.c | 80 # pragma warning(pop) in curlx_ultous() 99 # pragma warning(pop) in curlx_ultouc() 121 # pragma warning(pop) in curlx_uztoso() 140 # pragma warning(pop) in curlx_uztosi() 161 # pragma warning(pop) in curlx_uztoul() 182 # pragma warning(pop) in curlx_uztoui() 204 # pragma warning(pop) in curlx_sltosi() 226 # pragma warning(pop) in curlx_sltoui() 246 # pragma warning(pop) in curlx_sltous() 265 # pragma warning(pop) in curlx_uztosz() [all …]
|
/third_party/rust/crates/syn/tests/ |
D | test_path.rs | 61 assert!(ty.path.segments.pop().is_some()); in print_incomplete_qpath() 65 assert!(ty.path.segments.pop().is_some()); in print_incomplete_qpath() 69 assert!(ty.path.segments.pop().is_none()); in print_incomplete_qpath() 76 assert!(ty.path.segments.pop().is_some()); in print_incomplete_qpath() 80 assert!(ty.path.segments.pop().is_some()); in print_incomplete_qpath() 84 assert!(ty.path.segments.pop().is_none()); in print_incomplete_qpath() 91 assert!(ty.path.segments.pop().is_some()); in print_incomplete_qpath() 95 assert!(ty.path.segments.pop().is_some()); in print_incomplete_qpath() 99 assert!(ty.path.segments.pop().is_some()); in print_incomplete_qpath() 103 assert!(ty.path.segments.pop().is_none()); in print_incomplete_qpath()
|
/third_party/skia/third_party/externals/libjpeg-turbo/simd/i386/ |
D | jcsample-mmx.asm | 83 pop ecx 84 pop eax 91 pop ecx ; output_cols 144 pop esi 145 pop edi 146 pop ecx 156 pop edi 157 pop esi 158 ; pop edx ; need not be preserved 159 ; pop ecx ; need not be preserved [all …]
|
D | jcsample-sse2.asm | 83 pop ecx 84 pop eax 91 pop ecx ; output_cols 159 pop esi 160 pop edi 161 pop ecx 169 pop edi 170 pop esi 171 ; pop edx ; need not be preserved 172 ; pop ecx ; need not be preserved [all …]
|
D | jcsample-avx2.asm | 84 pop ecx 85 pop eax 92 pop ecx ; output_cols 176 pop esi 177 pop edi 178 pop ecx 187 pop edi 188 pop esi 189 ; pop edx ; need not be preserved 190 ; pop ecx ; need not be preserved [all …]
|
D | jdsample-avx2.asm | 184 pop esi 185 pop edi 186 pop eax 195 pop edi 196 pop esi 197 ; pop edx ; need not be preserved 198 ; pop ecx ; need not be preserved 200 pop ebp 281 pop edx 532 pop esi [all …]
|
D | jquantf-sse2.asm | 93 pop edi 94 pop esi 95 ; pop edx ; need not be preserved 96 ; pop ecx ; need not be preserved 97 pop ebx 98 pop ebp 158 pop edi 159 pop esi 160 ; pop edx ; need not be preserved 161 ; pop ecx ; unused [all …]
|
/third_party/skia/third_party/externals/oboe/samples/RhythmGame/test/ |
D | testLockFreeQueue.cpp | 72 bool result = q.pop(result1); in TEST_F() 78 bool result = q.pop(result1); in TEST_F() 84 q.pop(result1); in TEST_F() 91 q.pop(result1); in TEST_F() 92 q.pop(result2); in TEST_F() 110 q.pop(result1); in TEST_F() 112 q.pop(result2); in TEST_F() 114 q.pop(result3); in TEST_F() 161 myQ.pop(result1); in TEST_F() 193 while (!myQ.pop(targetData[i])){ in TEST_F() [all …]
|
/third_party/skia/tests/ |
D | TDPQueueTest.cpp | 21 heap.pop(); in simple_test() 28 heap.pop(); in simple_test() 31 heap.pop(); in simple_test() 39 heap.pop(); in simple_test() 42 heap.pop(); in simple_test() 45 heap.pop(); in simple_test() 54 heap.pop(); in simple_test() 57 heap.pop(); in simple_test() 60 heap.pop(); in simple_test() 63 heap.pop(); in simple_test() [all …]
|
/third_party/elfutils/libdwfl/ |
D | frame_unwind.c | 152 #define pop(x) do_pop(&stack, x) in expr_eval() macro 244 if (! pop (&val1) || ! push (val1) || ! push (val1)) in expr_eval() 251 if (! pop (&val1)) in expr_eval() 271 if (! pop (&val1) || ! pop (&val2) in expr_eval() 279 if (! pop (&val1) || ! pop (&val2) || ! push (val1) || ! push (val2)) in expr_eval() 288 if (! pop (&val1) || ! pop (&val2) || ! pop (&val3) in expr_eval() 304 if (! pop (&val1) in expr_eval() 339 if (! pop (&val1) || ! push (expr)) \ in expr_eval() 350 if (! pop (&val1) || ! push (val1 + op->number)) in expr_eval() 358 if (! pop (&val2) || ! pop (&val1) || ! push (val1 op val2)) \ in expr_eval() [all …]
|
/third_party/protobuf/ruby/compatibility_tests/v3.0.0/tests/ |
D | repeated_field_test.rb | 72 assert_nil m.send(field_name).pop 76 assert_equal -11, m.repeated_int32.pop 77 assert_equal -10, m.repeated_int32.pop 78 assert_equal -1_000_001, m.repeated_int64.pop 79 assert_equal -1_000_000, m.repeated_int64.pop 80 assert_equal 11, m.repeated_uint32.pop 81 assert_equal 10, m.repeated_uint32.pop 82 assert_equal 1_000_001, m.repeated_uint64.pop 83 assert_equal 1_000_000, m.repeated_uint64.pop 84 assert_equal false, m.repeated_bool.pop [all …]
|
/third_party/protobuf/ruby/tests/ |
D | repeated_field_test.rb | 80 assert_nil m.send(field_name).pop 84 assert_equal -11, m.repeated_int32.pop 85 assert_equal -10, m.repeated_int32.pop 86 assert_equal -1_000_001, m.repeated_int64.pop 87 assert_equal -1_000_000, m.repeated_int64.pop 88 assert_equal 11, m.repeated_uint32.pop 89 assert_equal 10, m.repeated_uint32.pop 90 assert_equal 1_000_001, m.repeated_uint64.pop 91 assert_equal 1_000_000, m.repeated_uint64.pop 92 assert_equal false, m.repeated_bool.pop [all …]
|
/third_party/node/deps/npm/node_modules/@npmcli/arborist/lib/ |
D | version-from-tgz.js | 21 const afterTF = tfsplit.pop() 23 const pre = tfsplit.pop() 25 const project = preSplit.pop() 26 const scope = preSplit.pop() 33 const project = split.pop() 34 const scope = split.pop()
|
/third_party/node/deps/openssl/config/archs/VC-WIN32/asm/crypto/ |
D | x86cpuid.asm | 19 pop eax 25 pop eax 146 pop edi 147 pop esi 148 pop ebx 149 pop ebp 175 pop eax 196 pop eax 257 pop ebx 318 pop edi [all …]
|
/third_party/node/deps/openssl/config/archs/VC-WIN32/asm_avx2/crypto/ |
D | x86cpuid.asm | 19 pop eax 25 pop eax 146 pop edi 147 pop esi 148 pop ebx 149 pop ebp 175 pop eax 196 pop eax 257 pop ebx 318 pop edi [all …]
|
/third_party/musl/src/fenv/i386/ |
D | fenv.s | 12 pop %edx 21 pop %edx 30 pop %edx 77 pop %edx 85 1: pop %ecx 93 pop %eax 106 pop %edx 111 pop %edx 138 pop %edx 158 pop %edx
|