Home
last modified time | relevance | path

Searched refs:inner_size (Results 1 - 7 of 7) 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()
41 int inner_size = 0; in py_blake2s_new() local
147 inner_size = _PyLong_AsInt(fastargs[10]); in py_blake2s_new()
148 if (inner_size == -1 && PyErr_Occurred()) { 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()
41 int inner_size = 0; in py_blake2b_new() local
147 inner_size = _PyLong_AsInt(fastargs[10]); in py_blake2b_new()
148 if (inner_size == -1 && PyErr_Occurred()) { 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/python/Modules/_blake2/
H A Dblake2s_impl.c83 inner_size: int = 0
95 int inner_size, int last_node, int usedforsecurity) in py_blake2s_new_impl()
181 if (inner_size < 0 || inner_size > BLAKE2S_OUTBYTES) { in py_blake2s_new_impl()
183 "inner_size must be between 0 and is %d", in py_blake2s_new_impl()
187 self->param.inner_length = inner_size; 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.c83 inner_size: int = 0
95 int inner_size, int last_node, int usedforsecurity) in py_blake2b_new_impl()
181 if (inner_size < 0 || inner_size > BLAKE2B_OUTBYTES) { in py_blake2b_new_impl()
183 "inner_size must be between 0 and is %d", in py_blake2b_new_impl()
187 self->param.inner_length = inner_size; 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/node/deps/v8/src/base/
H A Demulated-virtual-address-subspace.h85 size_t inner_size) const { in Contains()
87 ((inner_start + inner_size) <= (outer_start + outer_size)); in Contains()
/third_party/python/Lib/test/
H A Dtest_hashlib.py683 constructor(inner_size=i)
684 self.assertRaises(ValueError, constructor, inner_size=-1)
685 self.assertRaises(ValueError, constructor, inner_size=digest_size+1)
712 inner_size=7,
774 inner_size=7,
817 inner_size=7,
/third_party/skia/third_party/externals/imgui/
H A Dimgui_widgets.cpp3978 ImVec2 inner_size = frame_size; in InputTextEx() local
4009 inner_size.x -= draw_window->ScrollbarSizes.x; in InputTextEx()
4245 const int row_count_per_page = ImMax((int)((inner_size.y - style.FramePadding.y) / g.FontSize), 1); in InputTextEx()
4544 const ImVec4 clip_rect(frame_bb.Min.x, frame_bb.Min.y, frame_bb.Min.x + inner_size.x, frame_bb.Min.y + inner_size.y); // Not using frame_bb.Max because we have adjusted size in InputTextEx()
4625 text_size = ImVec2(inner_size.x, line_count * g.FontSize); in InputTextEx()
4634 const float scroll_increment_x = inner_size.x * 0.25f; in InputTextEx()
4635 const float visible_width = inner_size.x - style.FramePadding.x; in InputTextEx()
4652 else if (cursor_offset.y - inner_size.y >= scroll_y) in InputTextEx()
4653 scroll_y = cursor_offset.y - inner_size in InputTextEx()
[all...]

Completed in 13 milliseconds