/third_party/python/Modules/_blake2/clinic/ |
H A D | blake2s_impl.c.h | 8 " 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 D | blake2b_impl.c.h | 8 " 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 D | regexp-bytecode-peephole.cc | 195 // 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 D | shrpx_router.cc | 391 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 D | shrpx_router.h | 86 // |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 D | shrpx_worker.cc | 1199 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 D | shrpx_tls.cc | 2062 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 D | ilist.h | 111 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 D | ilist.h | 111 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 D | blake2s_impl.c | 84 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 D | blake2b_impl.c | 84 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 D | ilist.h | 111 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 D | blake2.h | 94 uint8_t last_node; member 120 uint8_t last_node; member
|
H A D | blake2b.c | 95 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 D | blake2b-ref.c | 61 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 D | blake2s-ref.c | 56 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 D | blake2s.c | 90 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 D | test_hashlib.py | 713 last_node=True 775 last_node=True) 818 last_node=True)
|
/third_party/mesa3d/src/compiler/nir/ |
H A D | nir.h | 4046 nir_cf_node *last_node = exec_node_data(nir_cf_node, 4048 return nir_after_cf_node(last_node);
|