Home
last modified time | relevance | path

Searched refs:last_node (Results 1 - 19 of 19) sorted by relevance

/third_party/python/Modules/_blake2/clinic/
H A Dblake2s_impl.c.h8 " node_offset=0, node_depth=0, inner_size=0, last_node=False,\n"
19 int inner_size, int last_node, int usedforsecurity);
25 static const char * const _keywords[] = {"", "digest_size", "key", "salt", "person", "fanout", "depth", "leaf_size", "node_offset", "node_depth", "inner_size", "last_node", "usedforsecurity", NULL}; in py_blake2s_new()
42 int last_node = 0; in py_blake2s_new() local
156 last_node = PyObject_IsTrue(fastargs[11]); in py_blake2s_new()
157 if (last_node < 0) { in py_blake2s_new()
169 return_value = py_blake2s_new_impl(type, data, digest_size, &key, &salt, &person, fanout, depth, leaf_size, node_offset, node_depth, inner_size, last_node, usedforsecurity); in py_blake2s_new()
H A Dblake2b_impl.c.h8 " node_offset=0, node_depth=0, inner_size=0, last_node=False,\n"
19 int inner_size, int last_node, int usedforsecurity);
25 static const char * const _keywords[] = {"", "digest_size", "key", "salt", "person", "fanout", "depth", "leaf_size", "node_offset", "node_depth", "inner_size", "last_node", "usedforsecurity", NULL}; in py_blake2b_new()
42 int last_node = 0; in py_blake2b_new() local
156 last_node = PyObject_IsTrue(fastargs[11]); in py_blake2b_new()
157 if (last_node < 0) { in py_blake2b_new()
169 return_value = py_blake2b_new_impl(type, data, digest_size, &key, &salt, &person, fanout, depth, leaf_size, node_offset, node_depth, inner_size, last_node, usedforsecurity); in py_blake2b_new()
/third_party/node/deps/v8/src/regexp/
H A Dregexp-bytecode-peephole.cc195 // start of the sequence in bytecode and last_node is the last
198 const BytecodeSequenceNode& last_node);
685 int start_pc, const byte* bytecode, const BytecodeSequenceNode& last_node) { in EmitOptimization()
695 uint32_t bc = last_node.OptimizedBytecode(); in EmitOptimization()
698 for (size_t arg = 0; arg < last_node.ArgumentSize(); arg++) { in EmitOptimization()
699 BytecodeArgumentMapping arg_map = last_node.ArgumentMapping(arg); in EmitOptimization()
722 RegExpBytecodeLength(last_node.OptimizedBytecode())); in EmitOptimization()
725 if (last_node.HasIgnoredArguments()) { in EmitOptimization()
726 for (auto ignored_arg = last_node.ArgumentIgnoredBegin(); in EmitOptimization()
727 ignored_arg != last_node in EmitOptimization()
684 EmitOptimization( int start_pc, const byte* bytecode, const BytecodeSequenceNode& last_node) EmitOptimization() argument
[all...]
/third_party/nghttp2/src/
H A Dshrpx_router.cc391 ssize_t Router::match_prefix(size_t *nread, const RNode **last_node, in match_prefix() argument
393 if (*last_node == nullptr) { in match_prefix()
394 *last_node = &root_; in match_prefix()
398 ::shrpx::match_prefix(nread, *last_node, std::begin(s), std::end(s)); in match_prefix()
403 *last_node = node; in match_prefix()
H A Dshrpx_router.h86 // |s|, otherwise -1. If |*last_node| is not nullptr, it specifies
90 // |*last_node| has the last matched node. One can continue to
91 // match the longer pattern using the returned |*last_node| to the
93 ssize_t match_prefix(size_t *nread, const RNode **last_node,
H A Dshrpx_worker.cc1199 const RNode *last_node = nullptr; in match_downstream_addr_group_host() local
1204 rev_wildcard_router.match_prefix(&nread, &last_node, rev_host); in match_downstream_addr_group_host()
H A Dshrpx_tls.cc2062 const RNode *last_node = nullptr; in lookup() local
2072 rev_wildcard_router_.match_prefix(&nread, &last_node, rev_host); in lookup()
/third_party/skia/third_party/externals/spirv-tools/source/util/
H A Dilist.h111 NodeType* last_node = list->sentinel_.previous_node_; in MoveBefore() local
116 last_node->next_node_ = this->node_; in MoveBefore()
117 this->node_->previous_node_ = last_node; in MoveBefore()
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/source/util/
H A Dilist.h111 NodeType* last_node = list->sentinel_.previous_node_; in MoveBefore() local
116 last_node->next_node_ = this->node_; in MoveBefore()
117 this->node_->previous_node_ = last_node; in MoveBefore()
/third_party/python/Modules/_blake2/
H A Dblake2s_impl.c84 last_node: bool = False
95 int inner_size, int last_node, int usedforsecurity) in py_blake2s_new_impl()
208 self->state.last_node = last_node; in py_blake2s_new_impl()
91 py_blake2s_new_impl(PyTypeObject *type, PyObject *data, int digest_size, Py_buffer *key, Py_buffer *salt, Py_buffer *person, int fanout, int depth, unsigned long leaf_size, unsigned long long node_offset, int node_depth, int inner_size, int last_node, int usedforsecurity) py_blake2s_new_impl() argument
H A Dblake2b_impl.c84 last_node: bool = False
95 int inner_size, int last_node, int usedforsecurity) in py_blake2b_new_impl()
208 self->state.last_node = last_node; in py_blake2b_new_impl()
91 py_blake2b_new_impl(PyTypeObject *type, PyObject *data, int digest_size, Py_buffer *key, Py_buffer *salt, Py_buffer *person, int fanout, int depth, unsigned long leaf_size, unsigned long long node_offset, int node_depth, int inner_size, int last_node, int usedforsecurity) py_blake2b_new_impl() argument
/third_party/spirv-tools/source/util/
H A Dilist.h111 NodeType* last_node = list->sentinel_.previous_node_; in MoveBefore() local
116 last_node->next_node_ = this->node_; in MoveBefore()
117 this->node_->previous_node_ = last_node; in MoveBefore()
/third_party/python/Modules/_blake2/impl/
H A Dblake2.h94 uint8_t last_node; member
120 uint8_t last_node; member
H A Dblake2b.c95 if( S->last_node ) blake2b_set_lastnode( S ); in blake2b_set_lastblock()
103 if( S->last_node ) blake2b_clear_lastnode( S ); in blake2b_clear_lastblock()
H A Dblake2b-ref.c61 if( S->last_node ) blake2b_set_lastnode( S ); in blake2b_set_lastblock()
69 if( S->last_node ) blake2b_clear_lastnode( S ); in blake2b_clear_lastblock()
H A Dblake2s-ref.c56 if( S->last_node ) blake2s_set_lastnode( S ); in blake2s_set_lastblock()
64 if( S->last_node ) blake2s_clear_lastnode( S ); in blake2s_clear_lastblock()
H A Dblake2s.c90 if( S->last_node ) blake2s_set_lastnode( S ); in blake2s_set_lastblock()
98 if( S->last_node ) blake2s_clear_lastnode( S ); in blake2s_clear_lastblock()
/third_party/python/Lib/test/
H A Dtest_hashlib.py713 last_node=True
775 last_node=True)
818 last_node=True)
/third_party/mesa3d/src/compiler/nir/
H A Dnir.h4046 nir_cf_node *last_node = exec_node_data(nir_cf_node,
4048 return nir_after_cf_node(last_node);

Completed in 21 milliseconds