/third_party/skia/third_party/externals/sfntly/java/src/com/google/typography/font/tools/conversion/eot/ |
H A D | HuffmanEncoder.java | 203 boolean[] stack = new boolean[50]; in writeSymbol() 207 stack[sp++] = tree[up].right == a; in writeSymbol() 211 bits.writeBit(stack[--sp]); in writeSymbol()
|
/third_party/python/Modules/_ssl/ |
H A D | cert.c | 45 _PySSL_CertificateFromX509Stack(_sslmodulestate *state, STACK_OF(X509) *stack, int upref) in _PySSL_CertificateFromX509Stack() argument 50 len = sk_X509_num(stack); in _PySSL_CertificateFromX509Stack() 56 X509 *cert = sk_X509_value(stack, i); in _PySSL_CertificateFromX509Stack()
|
/third_party/skia/third_party/externals/abseil-cpp/absl/debugging/ |
H A D | failure_signal_handler.cc | 143 // Account for sanitizer instrumentation requiring additional stack space. in SetupAlternateStackOnce() 161 ABSL_RAW_LOG(FATAL, "mmap() for alternate signal stack failed"); in SetupAlternateStackOnce() 166 ABSL_RAW_LOG(FATAL, "malloc() for alternate signal stack failed"); in SetupAlternateStackOnce() 180 // Sets up an alternate stack for signal handlers once. 182 // if the system supports using an alternate stack. 260 // handlers. "noinline" so that GetStackFrames() skips the top-most stack 266 void* stack[kNumStackFrames]; in WriteStackTrace() local 270 stack, frame_sizes, kNumStackFrames, in WriteStackTrace() 271 1, // Do not include this function in stack trace. in WriteStackTrace() 274 absl::debugging_internal::GetProgramCounter(ucontext), stack, frame_size in WriteStackTrace() local [all...] |
/third_party/rust/crates/nix/src/ |
H A D | sched.rs | 93 /// `stack` is a reference to an array which will hold the stack of the new 94 /// process. Unlike when calling `clone(2)` from C, the provided stack 100 stack: &mut [u8], in clone() 111 let ptr = stack.as_mut_ptr().add(stack.len()); in clone()
|
/third_party/skia/third_party/externals/abseil-cpp/absl/strings/internal/ |
H A D | cord_rep_btree.cc | 193 // StackOperations contains the logic to build a left-most or right-most stack 195 // propagate node changes up the stack. 203 inline CordRepBtree* node(int depth) const { return stack[depth]; } in node() 205 // Builds a `depth` levels deep stack starting at `tree` recording which nodes 211 stack[current_depth++] = tree; in BuildStack() 216 stack[current_depth++] = tree; in BuildStack() 222 // Builds a stack with the invariant that all nodes are private owned / not 230 stack[depth++] = tree; in BuildOwnedStack() 257 // Propagate the action result in 'result' up into all nodes of the stack 259 // was added at the lowest level, and is updated into all nodes of the stack 323 NodeStack stack; global() member 865 CordRepBtree* stack[kMaxDepth]; GetAppendBufferSlow() local [all...] |
/third_party/rust/crates/rust-openssl/openssl/src/x509/ |
H A D | mod.rs | 38 use crate::stack::{Stack, StackRef, Stackable}; 432 let stack = ffi::X509_get_ext_d2i( in subject_alt_names() 438 Stack::from_ptr_opt(stack as *mut _) in subject_alt_names() 446 let stack = ffi::X509_get_ext_d2i( in crl_distribution_points() 452 Stack::from_ptr_opt(stack as *mut _) in crl_distribution_points() 460 let stack = ffi::X509_get_ext_d2i( in issuer_alt_names() 466 Stack::from_ptr_opt(stack as *mut _) in issuer_alt_names() 476 let stack = ffi::X509_get_ext_d2i( in authority_info() 482 Stack::from_ptr_opt(stack as *mut _) in authority_info() 519 let stack in authority_issuer() [all...] |
/third_party/jerryscript/jerry-core/parser/js/ |
H A D | byte-code.h | 37 * The execution engine of CBC is a stack machine, where 38 * the maximum stack size is known in advance for each 44 * since the stack change is encoded in the upper 127 * the stack, and another which does. The reason is that 164 #define CBC_FORWARD_BRANCH(name, stack, vm_oc) \ 165 CBC_OPCODE (name, CBC_HAS_BRANCH_ARG | CBC_FORWARD_BRANCH_ARG, stack, \ 167 CBC_OPCODE (name ## _2, CBC_HAS_BRANCH_ARG | CBC_FORWARD_BRANCH_ARG, stack, \ 169 CBC_OPCODE (name ## _3, CBC_HAS_BRANCH_ARG | CBC_FORWARD_BRANCH_ARG, stack, \ 172 #define CBC_BACKWARD_BRANCH(name, stack, vm_oc) \ 173 CBC_OPCODE (name, CBC_HAS_BRANCH_ARG, stack, \ [all...] |
/third_party/node/deps/v8/src/objects/ |
H A D | transitions.cc | 558 base::SmallVector<Map, kStaticStackSize> stack; in TraverseTransitionTreeInternal() local 559 stack.emplace_back(map_); in TraverseTransitionTreeInternal() 562 while (!stack.empty()) { in TraverseTransitionTreeInternal() 563 Map current_map = stack.back(); in TraverseTransitionTreeInternal() 564 stack.pop_back(); in TraverseTransitionTreeInternal() 578 stack.emplace_back( in TraverseTransitionTreeInternal() 594 stack.emplace_back(Map::cast(heap_object)); in TraverseTransitionTreeInternal() 601 stack.emplace_back(transitions.GetTarget(i)); in TraverseTransitionTreeInternal()
|
/third_party/skia/third_party/externals/spirv-tools/source/opt/ |
H A D | upgrade_memory_model.cpp | 451 std::vector<const Instruction*> stack; in CheckAllTypes() local 452 stack.push_back(inst); in CheckAllTypes() 456 while (!stack.empty()) { in CheckAllTypes() 457 const Instruction* def = stack.back(); in CheckAllTypes() 458 stack.pop_back(); in CheckAllTypes() 474 stack.push_back(context()->get_def_use_mgr()->GetDef( in CheckAllTypes() 478 stack.push_back(context()->get_def_use_mgr()->GetDef( in CheckAllTypes() 481 stack.push_back(context()->get_def_use_mgr()->GetDef( in CheckAllTypes()
|
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/source/opt/ |
H A D | upgrade_memory_model.cpp | 451 std::vector<const Instruction*> stack; in CheckAllTypes() local 452 stack.push_back(inst); in CheckAllTypes() 456 while (!stack.empty()) { in CheckAllTypes() 457 const Instruction* def = stack.back(); in CheckAllTypes() 458 stack.pop_back(); in CheckAllTypes() 474 stack.push_back(context()->get_def_use_mgr()->GetDef( in CheckAllTypes() 478 stack.push_back(context()->get_def_use_mgr()->GetDef( in CheckAllTypes() 481 stack.push_back(context()->get_def_use_mgr()->GetDef( in CheckAllTypes()
|
/third_party/spirv-tools/source/opt/ |
H A D | upgrade_memory_model.cpp | 453 std::vector<const Instruction*> stack; in CheckAllTypes() local 454 stack.push_back(inst); in CheckAllTypes() 458 while (!stack.empty()) { in CheckAllTypes() 459 const Instruction* def = stack.back(); in CheckAllTypes() 460 stack.pop_back(); in CheckAllTypes() 476 stack.push_back(context()->get_def_use_mgr()->GetDef( in CheckAllTypes() 480 stack.push_back(context()->get_def_use_mgr()->GetDef( in CheckAllTypes() 483 stack.push_back(context()->get_def_use_mgr()->GetDef( in CheckAllTypes()
|
/test/xts/acts/commonlibrary/ark_runtime/ark_runtime_jsvm_test/entry/src/main/cpp/jsvmtest/ |
H A D | jsvm_utils.cpp | 81 JSVM_Value stack; in PrintException() local 82 status = OH_JSVM_GetNamedProperty(env, exception, "stack", &stack); in PrintException() 86 OH_JSVM_GetValueStringUtf8(env, stack, stackStr, kBufSize, nullptr); in PrintException() 88 ss << "[PrintException] exception.stack: " << stackStr; in PrintException() 91 status = OH_JSVM_GetNamedProperty(env, exception, "message", &stack); in PrintException() 94 OH_JSVM_GetValueStringUtf8(env, stack, messageStr, kBufSize, nullptr); in PrintException()
|
/third_party/node/test/parallel/ |
H A D | test-promises-unhandled-rejections.js | 15 const stack = currentTest ? 16 `${inspect(error)}\nFrom previous event:\n${currentTest.stack}` : 22 process.stderr.write(stack); 46 const stack = inspect(new Error()).split('\n').slice(1).join('\n'); 49 stack,
|
/third_party/node/deps/openssl/openssl/crypto/asn1/ |
H A D | tasn_prn.c | 292 STACK_OF(const_ASN1_VALUE) *stack; in asn1_template_print_ctx() 307 stack = (STACK_OF(const_ASN1_VALUE) *)*fld; in asn1_template_print_ctx() 308 for (i = 0; i < sk_const_ASN1_VALUE_num(stack); i++) { in asn1_template_print_ctx() 312 skitem = sk_const_ASN1_VALUE_value(stack, i); in asn1_template_print_ctx() 319 stack == NULL ? "ABSENT" : "EMPTY") <= 0) in asn1_template_print_ctx()
|
/third_party/skia/third_party/externals/angle2/util/posix/ |
H A D | crash_handler_posix.cpp | 7 // ANGLE's crash handling and stack walking code. Modified from Skia's: 175 // "[heap]" and "[stack]" are used to represent the location of the process' 176 // heap and stack, respectively. 452 void *stack[64]; 453 const int count = backtrace(stack, ArraySize(stack)); 454 char **symbols = backtrace_symbols(stack, count); 584 if (dladdr(stack[i], &info) && info.dli_sname) 588 // into the stack that very large symbol names are generated.
|
/third_party/openssl/crypto/asn1/ |
H A D | tasn_prn.c | 292 STACK_OF(const_ASN1_VALUE) *stack; in asn1_template_print_ctx() 307 stack = (STACK_OF(const_ASN1_VALUE) *)*fld; in asn1_template_print_ctx() 308 for (i = 0; i < sk_const_ASN1_VALUE_num(stack); i++) { in asn1_template_print_ctx() 312 skitem = sk_const_ASN1_VALUE_value(stack, i); in asn1_template_print_ctx() 319 stack == NULL ? "ABSENT" : "EMPTY") <= 0) in asn1_template_print_ctx()
|
/third_party/python/Modules/_ctypes/libffi_osx/x86/ |
H A D | x86-ffi64.c | 218 /* If the struct is larger than 16 bytes, pass it on the stack. */ in classify_argument() 399 not, add it's size to the stack byte count. */ in ffi_prep_cif_machdep() 439 char* stack; in ffi_call() local 459 stack = alloca(sizeof(RegisterArgs) + cif->bytes + 4 * 8); in ffi_call() 460 reg_args = (RegisterArgs*)stack; in ffi_call() 461 argp = stack + sizeof(RegisterArgs); in ffi_call() 581 ffi_call_unix64 (stack, cif->bytes + sizeof(RegisterArgs), in ffi_call()
|
/third_party/rust/crates/rust-openssl/openssl/src/ |
H A D | pkcs7.rs | 10 use crate::stack::{Stack, StackRef}; 271 // The returned stack is owned by the caller, but the certs inside are not! Our stack interface can't deal in signers() 272 // with that, so instead we just manually bump the refcount of the certs so that the whole stack is properly in signers() 274 let stack = Stack::<X509>::from_ptr(ptr); in signers() 275 for cert in &stack { in signers() 279 Ok(stack) in signers() 289 use crate::stack::Stack;
|
/third_party/python/Lib/ |
H A D | pdb.py | 251 self.commands_silent = {} # for each bp num, tells if the stack trace 271 self.stack = [] 278 self.stack, self.curindex = self.get_stack(f, tb) 286 self.curframe = self.stack[self.curindex][0] 350 self.print_stack_entry(self.stack[self.curindex]) 425 self.print_stack_entry(self.stack[self.curindex]) 995 Print a stack trace, with the most recent frame at the bottom. 1004 assert 0 <= number < len(self.stack) 1006 self.curframe = self.stack[self.curindex][0] 1008 self.print_stack_entry(self.stack[sel [all...] |
/third_party/vk-gl-cts/external/vulkan-docs/src/config/chunkindex/ |
H A D | lunr.js | 1440 var stack = [{ 1446 while (stack.length) { 1447 var frame = stack.pop() 1465 stack.push({ 1488 stack.push({ 1498 stack.push({ 1526 stack.push({ 1552 stack.push({ 1618 var stack = [{ 1623 while (stack [all...] |
/third_party/nghttp2/doc/_exts/rubydomain/ |
H A D | rubydomain.py | 170 stack = [signode[-1]] 174 stack[-1] += opt 175 stack.append(opt) 178 stack.pop() 185 stack[-1] += addnodes.desc_parameter(token, token) 186 if len(stack) != 1:
|
/third_party/node/deps/v8/src/inspector/ |
H A D | v8-stack-trace-impl.cc | 10 #include "src/inspector/v8-stack-trace-impl.h" 63 // Only the top stack in the chain may be empty, so ensure that second stack in calculateAsyncChain() 426 // When async call chain is empty but doesn't contain useful schedule stack in capture() 458 std::shared_ptr<AsyncStackTrace> stack) { in store() 459 if (stack->m_id) return stack->m_id; in store() 460 stack->m_id = debugger->storeStackTrace(stack); in store() 461 return stack in store() 457 store(V8Debugger* debugger, std::shared_ptr<AsyncStackTrace> stack) store() argument [all...] |
/third_party/skia/third_party/externals/swiftshader/src/Vulkan/Debug/ |
H A D | Server.cpp | 225 auto stack = thread->stack(); in Impl() 228 response.totalFrames = stack.size(); in Impl() 229 response.stackFrames.reserve(stack.size()); in Impl() 230 for(int i = static_cast<int>(stack.size()) - 1; i >= 0; i--) in Impl() 232 auto const &frame = stack[i]; in Impl()
|
/third_party/python/Lib/test/ |
H A D | test_yield_from.py | 961 return [f[3] for f in inspect.stack()] 974 for stack in spam(gen()): 975 self.assertTrue('spam' in stack) 977 for stack in spam(eggs(gen())): 978 self.assertTrue('spam' in stack and 'eggs' in stack) 997 # Create a stack of generators: outer() delegating to inner()
|
/test/testfwk/xdevice/plugins/devicetest/utils/ |
H A D | time_util.py | 21 from inspect import stack namespace 32 inner_stack = stack()
|