/third_party/python/Lib/ |
H A D | pickle.py | 111 MARK = b'(' # push special markobject on stack 113 POP = b'0' # discard topmost stack item 114 POP_MARK = b'1' # discard stack top through topmost markobject 115 DUP = b'2' # duplicate top stack item 124 BINPERSID = b'Q' # " " " ; " " " " stack 125 REDUCE = b'R' # apply callable to argtuple, both on stack 131 APPEND = b'a' # append stack top to list below it 134 DICT = b'd' # build a dict from stack items 136 APPENDS = b'e' # extend list on stack by topmost stack slic [all...] |
/third_party/skia/third_party/externals/freetype/src/cff/ |
H A D | cffparse.c | 56 parser->top = parser->stack; in FT_LOCAL_DEF() 64 /* allocate the stack buffer */ in FT_LOCAL_DEF() 65 if ( FT_QNEW_ARRAY( parser->stack, stackSize ) ) in FT_LOCAL_DEF() 67 FT_FREE( parser->stack ); in FT_LOCAL_DEF() 72 parser->top = parser->stack; /* empty stack */ in FT_LOCAL_DEF() 102 FT_FREE( parser->stack ); in cff_parser_done() 675 FT_Byte** data = parser->stack; in cff_parse_font_matrix() 678 if ( parser->top >= parser->stack + 6 ) in cff_parse_font_matrix() 800 FT_Byte** data = parser->stack; in cff_parse_font_bbox() 1267 FT_Fixed* stack; FT_LOCAL_DEF() local [all...] |
/third_party/node/deps/v8/src/compiler/ |
H A D | control-equivalence.cc | 89 ZoneStack<DFSStackEntry> stack(zone_); in RunUndirectedDFS() 90 DFSPush(stack, exit, nullptr, kInputDirection); in RunUndirectedDFS() 93 while (!stack.empty()) { // Undirected depth-first backwards traversal. in RunUndirectedDFS() 94 DFSStackEntry& entry = stack.top(); in RunUndirectedDFS() 107 // Found backedge if input is on stack. in RunUndirectedDFS() 112 // Push input onto stack. in RunUndirectedDFS() 113 DFSPush(stack, input, node, kInputDirection); in RunUndirectedDFS() 137 // Found backedge if use is on stack. in RunUndirectedDFS() 142 // Push use onto stack. in RunUndirectedDFS() 143 DFSPush(stack, us in RunUndirectedDFS() 188 DFSPush(DFSStack& stack, Node* node, Node* from, DFSDirection dir) DFSPush() argument 199 DFSPop(DFSStack& stack, Node* node) DFSPop() argument [all...] |
/third_party/python/Tools/clinic/ |
H A D | cpp.py | 28 self.stack = [] 50 return " && ".join(condition for token, condition in self.stack) 62 if self.stack: 74 if not self.stack: 76 return self.stack.pop() 152 self.stack.append((previous_token, negate(previous_condition))) 163 self.stack.append((token, condition)) 167 self.stack.append((previous_token, negate(previous_condition)))
|
/third_party/skia/third_party/externals/tint/src/resolver/ |
H A D | dependency_graph.cc | 579 // Entry is a single entry in the traversal stack. Entry points to a in TraverseDependencies() 590 std::vector<Entry> stack{Entry{root, 0}}; in TraverseDependencies() 592 auto& entry = stack.back(); in TraverseDependencies() 599 stack.push_back(Entry{dep, 0}); // Enter the dependency. in TraverseDependencies() 605 // Exit this global, pop the stack, and if there's another parent node, in TraverseDependencies() 608 stack.pop_back(); in TraverseDependencies() 609 if (stack.empty()) { in TraverseDependencies() 612 stack.back().dep_idx++; in TraverseDependencies() 626 utils::UniqueVector<const Global*> stack; in SortGlobals() local 630 if (!stack in SortGlobals() [all...] |
/third_party/ffmpeg/libavcodec/mips/ |
H A D | h264dsp_mmi.c | 1569 DECLARE_ALIGNED(8, const uint64_t, stack[0x0a]); in deblock_v8_luma_intra_8_mmi() 1603 MMI_SDC1(%[ftmp5], %[stack], 0x10) in deblock_v8_luma_intra_8_mmi() 1616 MMI_LDC1(%[ftmp5], %[stack], 0x10) in deblock_v8_luma_intra_8_mmi() 1619 MMI_SDC1(%[ftmp8], %[stack], 0x20) in deblock_v8_luma_intra_8_mmi() 1626 MMI_LDC1(%[ftmp15], %[stack], 0x20) in deblock_v8_luma_intra_8_mmi() 1637 MMI_SDC1(%[ftmp5], %[stack], 0x30) in deblock_v8_luma_intra_8_mmi() 1644 MMI_SDC1(%[ftmp5], %[stack], 0x40) in deblock_v8_luma_intra_8_mmi() 1648 MMI_SDC1(%[ftmp6], %[stack], 0x10) in deblock_v8_luma_intra_8_mmi() 1653 MMI_SDC1(%[ftmp7], %[stack], 0x00) in deblock_v8_luma_intra_8_mmi() 1665 MMI_LDC1(%[ftmp13], %[stack], in deblock_v8_luma_intra_8_mmi() [all...] |
/test/xts/acts/arkui/ace_c_arkui_test/entry/src/main/cpp/list/ |
H A D | list_hittestbehavior_test.cpp | 88 auto stack = nodeAPI->createNode(ARKUI_NODE_STACK); in CreateSubListNode() local 96 nodeAPI->setAttribute(stack, NODE_ID, &idItem); in CreateSubListNode() 118 nodeAPI->setAttribute(stack, NODE_WIDTH, &stackWidthItem); in CreateSubListNode() 122 nodeAPI->setAttribute(stack, NODE_HEIGHT, &stackHeightItem); in CreateSubListNode() 128 nodeAPI->setAttribute(stack, NODE_BACKGROUND_COLOR, &stackBackgroundColorItem); in CreateSubListNode() 151 nodeAPI->addChild(stack, listBrother); in CreateSubListNode() 177 nodeAPI->addChild(stack, list); in CreateSubListNode() 205 return stack; in CreateSubListNode() 232 auto stack = CreateSubListNode(nodeAPI, hittestbehavior, ontouchtestStack.c_str()); in CreateNativeNodeDefault() local 234 nodeAPI->addChild(column, stack); in CreateNativeNodeDefault() 279 auto stack = CreateSubListNode(nodeAPI, hittestbehavior, ontouchtestStack.c_str()); CreateNativeNodeBlock() local 323 auto stack = CreateSubListNode(nodeAPI, hittestbehavior, ontouchtestStack.c_str()); CreateNativeNodeTransparent() local 368 auto stack = CreateSubListNode(nodeAPI, hittestbehavior, ontouchtestStack.c_str()); CreateNativeNodeNone() local [all...] |
/test/xts/acts/arkui/ace_c_arkui_test/entry/src/main/cpp/scroll/ |
H A D | scroll_hittestbehavior_test.cpp | 89 auto stack = nodeAPI->createNode(ARKUI_NODE_STACK); in CreateSubScrollNode() local 97 nodeAPI->setAttribute(stack, NODE_ID, &idItem); in CreateSubScrollNode() 119 nodeAPI->setAttribute(stack, NODE_WIDTH, &stackWidthItem); in CreateSubScrollNode() 123 nodeAPI->setAttribute(stack, NODE_HEIGHT, &stackHeightItem); in CreateSubScrollNode() 129 nodeAPI->setAttribute(stack, NODE_BACKGROUND_COLOR, &stackBackgroundColorItem); in CreateSubScrollNode() 152 nodeAPI->addChild(stack, scrollBrother); in CreateSubScrollNode() 178 nodeAPI->addChild(stack, scroll); in CreateSubScrollNode() 204 return stack; in CreateSubScrollNode() 232 auto stack = CreateSubScrollNode(nodeAPI, hittestbehavior, ontouchtestStack.c_str()); in CreateNativeNodeDefault() local 234 nodeAPI->addChild(column, stack); in CreateNativeNodeDefault() 280 auto stack = CreateSubScrollNode(nodeAPI, hittestbehavior, ontouchtestStack.c_str()); CreateNativeNodeBlock() local 325 auto stack = CreateSubScrollNode(nodeAPI, hittestbehavior, ontouchtestStack.c_str()); CreateNativeNodeTransparent() local 371 auto stack = CreateSubScrollNode(nodeAPI, hittestbehavior, ontouchtestStack.c_str()); CreateNativeNodeNone() local [all...] |
/third_party/python/Tools/scripts/ |
H A D | pindent.py | 164 stack = [] 173 if not stack: 175 elif stack.pop()[0] != kw2: 178 self.putline(line, len(stack)) 185 self.putline(line, len(stack)) 186 stack.append((kw, kw)) 189 if kw in next and stack: 190 self.putline(line, len(stack)-1) 191 kwa, kwb = stack[-1] 192 stack[ [all...] |
H A D | texi2html.py | 229 self.stackinfo={} # Keep track of state in the stack 268 self.stack = [] 294 'format' not in self.stack and \ 295 'example' not in self.stack: 310 if self.stack: 312 print('***', self.stack) 385 print('!'*self.debugging, 'process:', self.skip, self.stack, end=' ') 419 #if 'menu' in self.stack: 420 # print 'inmenu :', self.skip, self.stack, self.stackinfo 421 stack [all...] |
/third_party/node/deps/openssl/openssl/crypto/perlasm/ |
H A D | x86asm.pl | 30 if ($opcode =~ /^push/) { $stack+=4; } 31 elsif ($opcode =~ /^pop/) { $stack-=4; } 51 sub ::stack_push{ my $num=$_[0]*4; $stack+=$num; &sub("esp",$num); } 52 sub ::stack_pop { my $num=$_[0]*4; $stack-=$num; &add("esp",$num); } 53 sub ::blindpop { &pop($_[0]); $stack+=4; } 54 sub ::wparam { &DWP($stack+4*$_[0],"esp"); } 221 $stack=4; 235 $stack=0; 245 $stack+=16; # readjust esp as if we didn't pop anything
|
/third_party/openssl/crypto/perlasm/ |
H A D | x86asm.pl | 30 if ($opcode =~ /^push/) { $stack+=4; } 31 elsif ($opcode =~ /^pop/) { $stack-=4; } 51 sub ::stack_push{ my $num=$_[0]*4; $stack+=$num; &sub("esp",$num); } 52 sub ::stack_pop { my $num=$_[0]*4; $stack-=$num; &add("esp",$num); } 53 sub ::blindpop { &pop($_[0]); $stack+=4; } 54 sub ::wparam { &DWP($stack+4*$_[0],"esp"); } 221 $stack=4; 235 $stack=0; 245 $stack+=16; # readjust esp as if we didn't pop anything
|
/third_party/skia/third_party/externals/oboe/apps/fxlab/app/src/main/cpp/ |
H A D | native-lib.cpp | 90 std::visit([id](auto &&stack) { in Java_com_mobileer_androidfxlab_NativeInterface_addDefaultEffectNative() 91 std::function<void(decltype(stack.getType()), decltype(stack.getType()))> f; in Java_com_mobileer_androidfxlab_NativeInterface_addDefaultEffectNative() 95 args.template buildDefaultEffect<decltype(stack.getType())>() : f), ...); in Java_com_mobileer_androidfxlab_NativeInterface_addDefaultEffectNative() 97 stack.addEffect(std::move(f)); in Java_com_mobileer_androidfxlab_NativeInterface_addDefaultEffectNative() 130 std::visit([&arr, &id, &index](auto &&stack) { in Java_com_mobileer_androidfxlab_NativeInterface_modifyEffectNative() 131 std::function<void(decltype(stack.getType()), decltype(stack.getType()))> ef; in Java_com_mobileer_androidfxlab_NativeInterface_modifyEffectNative() 137 stack.modifyEffectAt(index, std::move(ef)); in Java_com_mobileer_androidfxlab_NativeInterface_modifyEffectNative()
|
/third_party/musl/libc-test/src/regression/ |
H A D | sigaltstack.c | 15 static char stack[SIGSTKSZ]; variable 23 if (i < (uintptr_t)stack || i >= (uintptr_t)stack+SIGSTKSZ) in handler() 36 ss.ss_sp = stack; in main() 37 ss.ss_size = sizeof stack; in main() 50 t_error("sigaltstack with stack size < MINSIGSTKSZ should have failed with ENOMEM, " in main()
|
/third_party/musl/src/thread/ |
H A D | __unmapself.c | 19 char *stack = shared_stack + sizeof shared_stack; in __unmapself() local 20 stack -= (uintptr_t)stack % 16; in __unmapself() 23 CRTJMP(do_unmap, stack); in __unmapself()
|
H A D | pthread_create.c | 163 * signals, since they will not have a stack in their last in __pthread_exit() 172 /* The following call unmaps the thread's stack mapping in __pthread_exit() 173 * and then exits without touching the stack. */ in __pthread_exit() 251 unsigned char *map = 0, *stack = 0, *tsd = 0, *stack_limit; in __pthread_create() local 283 stack = (void *)(attr._a_stackaddr & -16); in __pthread_create() 285 /* Use application-provided stack for TLS only when in __pthread_create() 287 * application's stack space. */ in __pthread_create() 289 tsd = stack - __pthread_tsd_size; in __pthread_create() 290 stack = tsd - libc.tls_size; in __pthread_create() 291 memset(stack, in __pthread_create() [all...] |
/test/xts/acts/arkui/ace_c_arkui_test/entry/src/main/cpp/listitem/ |
H A D | listitem_hittestbehavior_test.cpp | 73 auto stack = nodeAPI->createNode(ARKUI_NODE_STACK); in CreateSubListNode() local 80 nodeAPI->setAttribute(stack, NODE_ID, &idItem); in CreateSubListNode() 102 nodeAPI->setAttribute(stack, NODE_WIDTH, &stackWidthItem); in CreateSubListNode() 106 nodeAPI->setAttribute(stack, NODE_HEIGHT, &stackHeightItem); in CreateSubListNode() 111 nodeAPI->setAttribute(stack, NODE_BACKGROUND_COLOR, &stackBackgroundColorItem); in CreateSubListNode() 146 nodeAPI->addChild(stack, list); in CreateSubListNode() 172 return stack; in CreateSubListNode() 200 auto stack = CreateSubListNode(nodeAPI, hittestbehavior, ontouchtestStack.c_str()); in CreateNativeNodeDefault() local 202 nodeAPI->addChild(column, stack); in CreateNativeNodeDefault() 247 auto stack in CreateNativeNodeBlock() local 293 auto stack = CreateSubListNode(nodeAPI, hittestbehavior, ontouchtestStack.c_str()); CreateNativeNodeTransparent() local 340 auto stack = CreateSubListNode(nodeAPI, hittestbehavior, ontouchtestStack.c_str()); CreateNativeNodeNone() local [all...] |
/third_party/skia/third_party/externals/freetype/src/psaux/ |
H A D | cffdecode.c | 507 FT_Fixed* stack; in FT_LOCAL_DEF() local 523 decoder->top = decoder->stack; in FT_LOCAL_DEF() 526 stack = decoder->top; in FT_LOCAL_DEF() 566 /* this is an operand, push it on the stack */ in FT_LOCAL_DEF() 603 if ( decoder->top - stack >= CFF_MAX_OPERANDS ) in FT_LOCAL_DEF() 620 /* from the bottom of the stack. However, this seems not to be */ in FT_LOCAL_DEF() 625 FT_Int num_args = (FT_Int)( args - decoder->stack ); in FT_LOCAL_DEF() 892 /* `glyph_width' to `nominal_width' plus number on the stack */ in FT_LOCAL_DEF() 931 ( stack[0] >> 16 ); in FT_LOCAL_DEF() 958 /* Note that we only pop arguments from the stack whic in FT_LOCAL_DEF() [all...] |
/third_party/mesa3d/src/gallium/drivers/r600/sfn/ |
H A D | sfn_nir_vectorize_vs_inputs.c | 123 struct util_dynarray *stack = ralloc(mem_ctx, struct util_dynarray); in r600_vec_instr_stack_create() local 124 util_dynarray_init(stack, mem_ctx); in r600_vec_instr_stack_create() 125 return stack; in r600_vec_instr_stack_create() 129 r600_vec_instr_stack_push(struct util_dynarray *stack, nir_instr *instr) in r600_vec_instr_stack_push() argument 131 util_dynarray_append(stack, nir_instr *, instr); in r600_vec_instr_stack_push() 177 r600_vec_instr_stack_pop(nir_builder *b, struct util_dynarray *stack, in r600_vec_instr_stack_pop() argument 181 nir_instr *last = util_dynarray_pop(stack, nir_instr *); in r600_vec_instr_stack_pop() 200 /* Don't bother walking the stack if this component can't be vectorised. */ in r600_vec_instr_stack_pop() 246 const struct util_dynarray *stack = data; in r600_hash_stack() local 247 const nir_instr *first = *(nir_instr **)util_dynarray_begin(stack); in r600_hash_stack() 277 struct util_dynarray *stack = (struct util_dynarray *) entry->key; r600_vec_instr_set_add() local 311 struct util_dynarray *stack = (struct util_dynarray *) entry->key; r600_vec_instr_set_remove() local [all...] |
/third_party/node/deps/v8/src/heap/base/asm/x64/ |
H A D | push_registers_masm.S | 12 ;; Push all callee-saved registers to get them on the stack for conservative 13 ;; stack scanning. 16 ;; on the stack and we push 232 bytes which maintains 16-byte stack 32 ;; Use aligned instrs as we are certain that the stack is properly aligned. 47 ;; Pass 3rd parameter as rsp (stack pointer).
|
/third_party/skia/third_party/externals/swiftshader/third_party/marl/src/ |
H A D | osfiber_asm.h | 51 void* stack, 73 // createFiber() returns a new fiber with the given stack size that will 92 Allocation stack; member in marl::OSFiber 98 if (stack.ptr != nullptr) { in ~OSFiber() 99 allocator->free(stack); in ~OSFiber() 125 out->stack = allocator->allocate(request); in createFiber() 127 &out->context, out->stack.ptr, static_cast<uint32_t>(stackSize), in createFiber()
|
/third_party/rust/crates/regex/src/ |
H A D | pool.rs | 2 // objects. For the most part, it's implemented by a stack represented by a 104 /// A stack of T values to hand out. These are used when a Pool is 106 stack: Mutex<Vec<Box<T>>>, 107 /// A function to create more T values when stack is empty and a caller 112 /// gets 'owner_val' directly instead of returning a T from 'stack'. 133 // being accessed in the same thread in which it was created. The 'stack' field 159 .field("stack", &self.stack) in fmt() 185 Pool { stack: Mutex::new(vec![]), create, owner, owner_val } in fmt() 215 /// allocated value off a stack t 233 let mut stack = self.stack.lock().unwrap(); global() variables 245 let mut stack = self.stack.lock().unwrap(); put() variables [all...] |
/third_party/musl/libc-test/src/functionalext/supplement/linux/ |
H A D | clone.c | 36 void *stack = malloc(STACK_SIZE); in clone_0100() local 38 cpid = clone((int (*)(void *))test, (char *)stack + STACK_SIZE, CLONE_VM | CLONE_FS | CLONE_FILES | SIGCHLD, NULL); in clone_0100() 50 void *stack = malloc(STACK_SIZE); in clone_0200() local 52 cpid = clone((int (*)(void *))test, (char *)stack + STACK_SIZE, 0, NULL); in clone_0200() 59 * @tc.desc : Parameter stack is NULL.
|
/third_party/musl/Benchmark/musl/ |
H A D | libc_sched.cpp | 38 void *stack = malloc(MALLOC_SIZE); in Bm_function_Clone() local 39 if (stack == nullptr) { in Bm_function_Clone() 45 pid = clone(ThreadWaitFunc, (char*)stack + MALLOC_SIZE, flags, nullptr); in Bm_function_Clone() 51 free(stack); in Bm_function_Clone()
|
/third_party/skia/src/core/ |
H A D | SkSpinlock.cpp | 17 void* stack[64]; 18 int len = backtrace(stack, SK_ARRAY_COUNT(stack)); 25 backtrace_symbols_fd(stack, len, 2/*stderr*/);
|