Home
last modified time | relevance | path

Searched refs:self (Results 2951 - 2975 of 6774) sorted by relevance

1...<<111112113114115116117118119120>>...271

/third_party/python/Objects/
H A Dodictobject.c887 odict_inplace_or(PyObject *self, PyObject *other) in odict_inplace_or() argument
889 if (mutablemapping_update_arg(self, other) < 0) { in odict_inplace_or()
892 Py_INCREF(self); in odict_inplace_or()
893 return self; in odict_inplace_or()
997 OrderedDict_setdefault_impl(PyODictObject *self, PyObject *key, in OrderedDict_setdefault_impl() argument
1003 if (PyODict_CheckExact(self)) { in OrderedDict_setdefault_impl()
1004 result = PyODict_GetItemWithError(self, key); /* borrowed */ in OrderedDict_setdefault_impl()
1008 assert(_odict_find_node(self, key) == NULL); in OrderedDict_setdefault_impl()
1009 if (PyODict_SetItem((PyObject *)self, key, default_value) >= 0) { in OrderedDict_setdefault_impl()
1019 int exists = PySequence_Contains((PyObject *)self, ke in OrderedDict_setdefault_impl()
1083 OrderedDict_pop_impl(PyODictObject *self, PyObject *key, PyObject *default_value) OrderedDict_pop_impl() argument
1107 OrderedDict_popitem_impl(PyODictObject *self, int last) OrderedDict_popitem_impl() argument
1265 OrderedDict_move_to_end_impl(PyODictObject *self, PyObject *key, int last) OrderedDict_move_to_end_impl() argument
1354 odict_dealloc(PyODictObject *self) odict_dealloc() argument
1372 odict_repr(PyODictObject *self) odict_repr() argument
1518 odict_init(PyObject *self, PyObject *args, PyObject *kwds) odict_init() argument
2132 mutablemapping_add_pairs(PyObject *self, PyObject *pairs) mutablemapping_add_pairs() argument
2194 mutablemapping_update_arg(PyObject *self, PyObject *arg) mutablemapping_update_arg() argument
2257 mutablemapping_update(PyObject *self, PyObject *args, PyObject *kwargs) mutablemapping_update() argument
[all...]
H A Dbytesobject.c1489 bytes_contains(PyObject *self, PyObject *arg) in bytes_contains() argument
1491 return _Py_bytes_contains(PyBytes_AS_STRING(self), PyBytes_GET_SIZE(self), arg); in bytes_contains()
1596 bytes_subscript(PyBytesObject* self, PyObject* item) in bytes_subscript() argument
1603 i += PyBytes_GET_SIZE(self); in bytes_subscript()
1604 if (i < 0 || i >= PyBytes_GET_SIZE(self)) { in bytes_subscript()
1609 return _PyLong_FromUnsignedChar((unsigned char)self->ob_sval[i]); in bytes_subscript()
1621 slicelength = PySlice_AdjustIndices(PyBytes_GET_SIZE(self), &start, in bytes_subscript()
1628 slicelength == PyBytes_GET_SIZE(self) && in bytes_subscript()
1629 PyBytes_CheckExact(self)) { in bytes_subscript()
1662 bytes_buffer_getbuffer(PyBytesObject *self, Py_buffer *view, int flags) bytes_buffer_getbuffer() argument
1697 bytes___bytes___impl(PyBytesObject *self) bytes___bytes___impl() argument
1729 bytes_split_impl(PyBytesObject *self, PyObject *sep, Py_ssize_t maxsplit) bytes_split_impl() argument
1768 bytes_partition_impl(PyBytesObject *self, Py_buffer *sep) bytes_partition_impl() argument
1795 bytes_rpartition_impl(PyBytesObject *self, Py_buffer *sep) bytes_rpartition_impl() argument
1814 bytes_rsplit_impl(PyBytesObject *self, PyObject *sep, Py_ssize_t maxsplit) bytes_rsplit_impl() argument
1853 bytes_join(PyBytesObject *self, PyObject *iterable_of_bytes) bytes_join() argument
1868 bytes_find(PyBytesObject *self, PyObject *args) bytes_find() argument
1874 bytes_index(PyBytesObject *self, PyObject *args) bytes_index() argument
1881 bytes_rfind(PyBytesObject *self, PyObject *args) bytes_rfind() argument
1888 bytes_rindex(PyBytesObject *self, PyObject *args) bytes_rindex() argument
1895 do_xstrip(PyBytesObject *self, int striptype, PyObject *sepobj) do_xstrip() argument
1936 do_strip(PyBytesObject *self, int striptype) do_strip() argument
1966 do_argstrip(PyBytesObject *self, int striptype, PyObject *bytes) do_argstrip() argument
1986 bytes_strip_impl(PyBytesObject *self, PyObject *bytes) bytes_strip_impl() argument
2004 bytes_lstrip_impl(PyBytesObject *self, PyObject *bytes) bytes_lstrip_impl() argument
2022 bytes_rstrip_impl(PyBytesObject *self, PyObject *bytes) bytes_rstrip_impl() argument
2030 bytes_count(PyBytesObject *self, PyObject *args) bytes_count() argument
2051 bytes_translate_impl(PyBytesObject *self, PyObject *table, PyObject *deletechars) bytes_translate_impl() argument
2209 bytes_replace_impl(PyBytesObject *self, Py_buffer *old, Py_buffer *new, Py_ssize_t count) bytes_replace_impl() argument
2233 bytes_removeprefix_impl(PyBytesObject *self, Py_buffer *prefix) bytes_removeprefix_impl() argument
2271 bytes_removesuffix_impl(PyBytesObject *self, Py_buffer *suffix) bytes_removesuffix_impl() argument
2297 bytes_startswith(PyBytesObject *self, PyObject *args) bytes_startswith() argument
2303 bytes_endswith(PyBytesObject *self, PyObject *args) bytes_endswith() argument
2325 bytes_decode_impl(PyBytesObject *self, const char *encoding, const char *errors) bytes_decode_impl() argument
2345 bytes_splitlines_impl(PyBytesObject *self, int keepends) bytes_splitlines_impl() argument
2479 bytes_hex_impl(PyBytesObject *self, PyObject *sep, int bytes_per_sep) bytes_hex_impl() argument
2558 bytes_mod(PyObject *self, PyObject *arg) bytes_mod() argument
2887 bytes_alloc(PyTypeObject *self, Py_ssize_t nitems) bytes_alloc() argument
[all...]
/kernel/linux/linux-6.6/tools/testing/selftests/tc-testing/
H A Dtdc.py29 def __init__(self, missing_pg):
30 self.missing_pg = missing_pg
33 def __init__(self, stage, output, message):
34 self.stage = stage
35 self.output = output
36 self.message = message
39 def __init__(self, argparser):
41 self.plugins = {}
42 self.plugin_instances = []
43 self
[all...]
/third_party/python/Lib/
H A Ddis.py154 def __repr__(self):
292 def _disassemble(self, lineno_width=3, mark_as_current=False, offset_width=4):
302 if self.starts_line is not None:
304 fields.append(lineno_fmt % self.starts_line)
313 if self.is_jump_target:
318 fields.append(repr(self.offset).rjust(offset_width))
320 fields.append(self.opname.ljust(_OPNAME_WIDTH))
322 if self.arg is not None:
323 fields.append(repr(self.arg).rjust(_OPARG_WIDTH))
325 if self
[all...]
H A Ddataclasses.py179 def __repr__(self):
201 def __init__(self, name):
202 self.name = name
203 def __repr__(self):
204 return self.name
234 def wrapper(self):
235 key = id(self), _thread.get_ident()
240 result = user_function(self)
249 def __init__(self, type):
250 self
[all...]
H A Dtimeit.py102 def __init__(self, stmt="pass", setup="pass", timer=default_timer,
105 self.timer = timer
132 self.src = src # Save for traceback display
135 self.inner = local_ns["inner"]
137 def print_exc(self, file=None):
155 if self.src is not None:
156 linecache.cache[dummy_src_name] = (len(self.src),
158 self.src.split("\n"),
164 def timeit(self, number=default_number):
178 timing = self
[all...]
/third_party/python/PC/
H A D_msi.c424 _msi_Database_Close_impl(msiobj *self) in _msi_Database_Close_impl() argument
428 if ((status = MsiCloseHandle(self->h)) != ERROR_SUCCESS) { in _msi_Database_Close_impl()
431 self->h = 0; in _msi_Database_Close_impl()
444 _msi_Record_GetFieldCount_impl(msiobj *self) in _msi_Record_GetFieldCount_impl() argument
447 return PyLong_FromLong(MsiRecordGetFieldCount(self->h)); in _msi_Record_GetFieldCount_impl()
459 _msi_Record_GetInteger_impl(msiobj *self, unsigned int field) in _msi_Record_GetInteger_impl() argument
464 status = MsiRecordGetInteger(self->h, field); in _msi_Record_GetInteger_impl()
481 _msi_Record_GetString_impl(msiobj *self, unsigned int field) in _msi_Record_GetString_impl() argument
490 status = MsiRecordGetStringW(self->h, field, res, &size); in _msi_Record_GetString_impl()
495 status = MsiRecordGetStringW(self in _msi_Record_GetString_impl()
512 _msi_Record_ClearData_impl(msiobj *self) _msi_Record_ClearData_impl() argument
532 _msi_Record_SetString_impl(msiobj *self, int field, const Py_UNICODE *value) _msi_Record_SetString_impl() argument
553 _msi_Record_SetStream_impl(msiobj *self, int field, const Py_UNICODE *value) _msi_Record_SetStream_impl() argument
574 _msi_Record_SetInteger_impl(msiobj *self, int field, int value) _msi_Record_SetInteger_impl() argument
668 _msi_SummaryInformation_GetProperty_impl(msiobj *self, int field) _msi_SummaryInformation_GetProperty_impl() argument
728 _msi_SummaryInformation_GetPropertyCount_impl(msiobj *self) _msi_SummaryInformation_GetPropertyCount_impl() argument
753 _msi_SummaryInformation_SetProperty_impl(msiobj *self, int field, PyObject *data) _msi_SummaryInformation_SetProperty_impl() argument
799 _msi_SummaryInformation_Persist_impl(msiobj *self) _msi_SummaryInformation_Persist_impl() argument
875 _msi_View_Execute(msiobj *self, PyObject *oparams) _msi_View_Execute() argument
903 _msi_View_Fetch_impl(msiobj *self) _msi_View_Fetch_impl() argument
929 _msi_View_GetColumnInfo_impl(msiobj *self, int kind) _msi_View_GetColumnInfo_impl() argument
953 _msi_View_Modify_impl(msiobj *self, int kind, PyObject *data) _msi_View_Modify_impl() argument
976 _msi_View_Close_impl(msiobj *self) _msi_View_Close_impl() argument
1052 _msi_Database_OpenView_impl(msiobj *self, const Py_UNICODE *sql) _msi_Database_OpenView_impl() argument
1079 _msi_Database_Commit_impl(msiobj *self) _msi_Database_Commit_impl() argument
1100 _msi_Database_GetSummaryInformation_impl(msiobj *self, int count) _msi_Database_GetSummaryInformation_impl() argument
[all...]
/kernel/linux/linux-5.10/scripts/gdb/linux/
H A Ddevice.py100 def __init__(self):
101 super(LxDeviceListBus, self).__init__('lx-device-list-bus', gdb.COMMAND_DATA)
103 def invoke(self, arg, from_tty):
120 def __init__(self):
121 super(LxDeviceListClass, self).__init__('lx-device-list-class', gdb.COMMAND_DATA)
123 def invoke(self, arg, from_tty):
138 def __init__(self):
139 super(LxDeviceListTree, self).__init__('lx-device-list-tree', gdb.COMMAND_DATA)
141 def invoke(self, arg, from_tty):
153 def __init__(self)
[all...]
/kernel/linux/linux-6.6/scripts/gdb/linux/
H A Ddevice.py100 def __init__(self):
101 super(LxDeviceListBus, self).__init__('lx-device-list-bus', gdb.COMMAND_DATA)
103 def invoke(self, arg, from_tty):
120 def __init__(self):
121 super(LxDeviceListClass, self).__init__('lx-device-list-class', gdb.COMMAND_DATA)
123 def invoke(self, arg, from_tty):
138 def __init__(self):
139 super(LxDeviceListTree, self).__init__('lx-device-list-tree', gdb.COMMAND_DATA)
141 def invoke(self, arg, from_tty):
153 def __init__(self)
[all...]
/third_party/protobuf/python/google/protobuf/pyext/
H A Dmessage.h178 // The caller must fill self->message, self->owner and eventually self->parent.
190 CMessage* self, const FieldDescriptor* field_descriptor);
196 int DeleteRepeatedField(CMessage* self,
201 int InternalSetScalar(CMessage* self,
216 bool SetCompositeField(CMessage* self, const FieldDescriptor* field,
219 bool SetSubmessage(CMessage* self, CMessage* submessage);
225 PyObject* Clear(CMessage* self);
231 int ClearFieldByDescriptor(CMessage* self, cons
[all...]
/third_party/python/Objects/stringlib/clinic/
H A Dtransmogrify.h.h6 "expandtabs($self, /, tabsize=8)\n"
17 stringlib_expandtabs_impl(PyObject *self, int tabsize);
20 stringlib_expandtabs(PyObject *self, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames) in stringlib_expandtabs() argument
41 return_value = stringlib_expandtabs_impl(self, tabsize); in stringlib_expandtabs()
48 "ljust($self, width, fillchar=b\' \', /)\n"
59 stringlib_ljust_impl(PyObject *self, Py_ssize_t width, char fillchar);
62 stringlib_ljust(PyObject *self, PyObject *const *args, Py_ssize_t nargs) in stringlib_ljust() argument
97 return_value = stringlib_ljust_impl(self, width, fillchar); in stringlib_ljust()
104 "rjust($self, width, fillchar=b\' \', /)\n"
115 stringlib_rjust_impl(PyObject *self, Py_ssize_
118 stringlib_rjust(PyObject *self, PyObject *const *args, Py_ssize_t nargs) stringlib_rjust() argument
174 stringlib_center(PyObject *self, PyObject *const *args, Py_ssize_t nargs) stringlib_center() argument
230 stringlib_zfill(PyObject *self, PyObject *arg) stringlib_zfill() argument
[all...]
/base/hiviewdfx/hiview/build/
H A Dgen_plugin_build.py143 def __init__(self, target_os, product, platform, arch, ram, rom):
144 self.target_os = target_os
145 self.product = product
146 self.platform = platform
147 self.arch = arch
148 self.ram = self.get_memory_size(ram)
149 self.rom = self.get_memory_size(rom)
152 def get_memory_size(self, memory_detai
[all...]
/test/testfwk/developer_test/src/core/command/
H A Dconsole.py66 def __init__(self):
85 def _params_post_processing(self, options):
88 test_args = self._parse_combination_param(options.testargs)
380 def handler_ctrl_c(self, signalnum, frame):
383 def handler_ctrl_z(self, signalnum, frame):
386 def command_parser(self, args):
390 options, _, valid_param = self.argument_parser(para_list)
401 if "productform" in self.wizard_dic.keys():
402 productform = self.wizard_dic["productform"]
408 self
[all...]
/third_party/python/Modules/
H A D_curses_panel.c189 _curses_panel_panel_bottom_impl(PyCursesPanelObject *self, PyTypeObject *cls) in _curses_panel_panel_bottom_impl() argument
193 return PyCursesCheckERR(state, bottom_panel(self->pan), "bottom"); in _curses_panel_panel_bottom_impl()
207 _curses_panel_panel_hide_impl(PyCursesPanelObject *self, PyTypeObject *cls) in _curses_panel_panel_hide_impl() argument
211 return PyCursesCheckERR(state, hide_panel(self->pan), "hide"); in _curses_panel_panel_hide_impl()
223 _curses_panel_panel_show_impl(PyCursesPanelObject *self, PyTypeObject *cls) in _curses_panel_panel_show_impl() argument
227 return PyCursesCheckERR(state, show_panel(self->pan), "show"); in _curses_panel_panel_show_impl()
239 _curses_panel_panel_top_impl(PyCursesPanelObject *self, PyTypeObject *cls) in _curses_panel_panel_top_impl() argument
243 return PyCursesCheckERR(state, top_panel(self->pan), "top"); in _curses_panel_panel_top_impl()
298 _curses_panel_panel_above_impl(PyCursesPanelObject *self) in _curses_panel_panel_above_impl() argument
304 pan = panel_above(self in _curses_panel_panel_above_impl()
329 _curses_panel_panel_below_impl(PyCursesPanelObject *self) _curses_panel_panel_below_impl() argument
358 _curses_panel_panel_hidden_impl(PyCursesPanelObject *self) _curses_panel_panel_hidden_impl() argument
379 _curses_panel_panel_move_impl(PyCursesPanelObject *self, PyTypeObject *cls, int y, int x) _curses_panel_panel_move_impl() argument
394 _curses_panel_panel_window_impl(PyCursesPanelObject *self) _curses_panel_panel_window_impl() argument
412 _curses_panel_panel_replace_impl(PyCursesPanelObject *self, PyTypeObject *cls, PyCursesWindowObject *win) _curses_panel_panel_replace_impl() argument
447 _curses_panel_panel_set_userptr_impl(PyCursesPanelObject *self, PyTypeObject *cls, PyObject *obj) _curses_panel_panel_set_userptr_impl() argument
476 _curses_panel_panel_userptr_impl(PyCursesPanelObject *self, PyTypeObject *cls) _curses_panel_panel_userptr_impl() argument
[all...]
/third_party/python/Lib/test/libregrtest/
H A Druntest.py22 self,
27 self.name = name
28 self.duration_sec = duration_sec
29 self.xml_data = xml_data
31 def __str__(self) -> str:
32 return f"{self.name} finished"
36 def __str__(self) -> str:
37 return f"{self.name} passed"
42 self,
50 self
[all...]
/third_party/vk-gl-cts/scripts/
H A Drun_nightly.py87 def __init__(self, name, buildConfig, generator, binaryName, testset, args = [], exclude = [], ignore = []):
88 self.name = name
89 self.buildConfig = buildConfig
90 self.generator = generator
91 self.binaryName = binaryName
92 self.testset = testset
93 self.args = args
94 self.exclude = exclude
95 self.ignore = ignore
97 def getBinaryPath(self, basePat
[all...]
/base/security/crypto_framework/plugin/openssl_plugin/crypto_operation/cipher/src/
H A Dcipher_sm2_openssl.c85 static HcfResult GetSm2CipherSpecString(HcfCipherGeneratorSpi *self, CipherSpecItem item, char **returnString) in GetSm2CipherSpecString() argument
87 if (self == NULL || returnString == NULL) { in GetSm2CipherSpecString()
91 if (!HcfIsClassMatch((HcfObjectBase *)self, EngineGetClass())) { in GetSm2CipherSpecString()
103 static HcfResult GetSm2CipherSpecUint8Array(HcfCipherGeneratorSpi *self, CipherSpecItem item, HcfBlob *returnUint8Array) in GetSm2CipherSpecUint8Array() argument
105 (void)self; in GetSm2CipherSpecUint8Array()
111 static HcfResult SetSm2CipherSpecUint8Array(HcfCipherGeneratorSpi *self, CipherSpecItem item, HcfBlob blob) in SetSm2CipherSpecUint8Array() argument
113 (void)self; in SetSm2CipherSpecUint8Array()
119 static HcfResult EngineInit(HcfCipherGeneratorSpi *self, enum HcfCryptoMode opMode, in EngineInit() argument
123 if (self == NULL || key == NULL) { in EngineInit()
127 if (!HcfIsClassMatch((HcfObjectBase *)self, sel in EngineInit()
150 EngineUpdate(HcfCipherGeneratorSpi *self, HcfBlob *input, HcfBlob *output) EngineUpdate() argument
222 EngineDoFinal(HcfCipherGeneratorSpi *self, HcfBlob *input, HcfBlob *output) EngineDoFinal() argument
[all...]
/kernel/linux/linux-6.6/tools/testing/selftests/drivers/sdsi/
H A Dsdsi_test.py41 def test_driver_loaded(self):
48 def read_value(self, file):
53 def get_dev_folder(self, socket):
56 def test_sysfs_files_exist(self, socket):
57 folder = self.get_dev_folder(socket)
65 def test_sysfs_file_permissions(self, socket):
66 folder = self.get_dev_folder(socket)
78 def test_sysfs_file_ownership(self, socket):
79 folder = self.get_dev_folder(socket)
101 def test_sysfs_file_sizes(self, socke
[all...]
/third_party/node/deps/brotli/c/enc/
H A Dhash_longest_match_quickly_inc.h47 HasherCommon* common, HashLongestMatchQuickly* BROTLI_RESTRICT self, in Initialize()
49 self->common = common; in Initialize()
52 self->buckets_ = (uint32_t*)common->extra; in Initialize()
56 HashLongestMatchQuickly* BROTLI_RESTRICT self, BROTLI_BOOL one_shot, in Prepare()
58 uint32_t* BROTLI_RESTRICT buckets = self->buckets_; in Prepare()
96 HashLongestMatchQuickly* BROTLI_RESTRICT self, in Store()
100 self->buckets_[key] = (uint32_t)ix; in Store()
104 self->buckets_[(key + off) & BUCKET_MASK] = (uint32_t)ix; in Store()
109 HashLongestMatchQuickly* BROTLI_RESTRICT self, in StoreRange()
114 FN(Store)(self, dat in StoreRange()
46 Initialize( HasherCommon* common, HashLongestMatchQuickly* BROTLI_RESTRICT self, const BrotliEncoderParams* params) Initialize() argument
55 Prepare( HashLongestMatchQuickly* BROTLI_RESTRICT self, BROTLI_BOOL one_shot, size_t input_size, const uint8_t* BROTLI_RESTRICT data) Prepare() argument
95 Store( HashLongestMatchQuickly* BROTLI_RESTRICT self, const uint8_t* BROTLI_RESTRICT data, const size_t mask, const size_t ix) Store() argument
108 StoreRange( HashLongestMatchQuickly* BROTLI_RESTRICT self, const uint8_t* BROTLI_RESTRICT data, const size_t mask, const size_t ix_start, const size_t ix_end) StoreRange() argument
118 StitchToPreviousBlock( HashLongestMatchQuickly* BROTLI_RESTRICT self, size_t num_bytes, size_t position, const uint8_t* ringbuffer, size_t ringbuffer_mask) StitchToPreviousBlock() argument
132 PrepareDistanceCache( HashLongestMatchQuickly* BROTLI_RESTRICT self, int* BROTLI_RESTRICT distance_cache) PrepareDistanceCache() argument
147 FindLongestMatch( HashLongestMatchQuickly* BROTLI_RESTRICT self, const BrotliEncoderDictionary* dictionary, const uint8_t* BROTLI_RESTRICT data, const size_t ring_buffer_mask, const int* BROTLI_RESTRICT distance_cache, const size_t cur_ix, const size_t max_length, const size_t max_backward, const size_t dictionary_distance, const size_t max_distance, HasherSearchResult* BROTLI_RESTRICT out) FindLongestMatch() argument
[all...]
/third_party/libinput/tools/
H A Dtest_tool_option_parsing.py73 def __init__(self, subtool=None):
74 self.libinput_tool = "@TOOL_PATH@"
75 self.subtool = subtool
77 def run_command(self, args):
78 args = [self.libinput_tool] + args
79 if self.subtool is not None:
80 args.insert(1, self.subtool)
84 def run_command_success(self, args):
85 rc, stdout, stderr = self.run_command(args)
91 def run_command_invalid(self, arg
[all...]
/third_party/python/Tools/scripts/
H A Dgenerate_global_objects.py135 def __init__(self, file):
136 self.level = 0
137 self.file = file
138 self.continuation = [False]
141 def indent(self):
142 save_level = self.level
144 self.level += 1
147 self.level = save_level
149 def write(self, arg):
151 if self
[all...]
/third_party/skia/third_party/externals/brotli/c/enc/
H A Dhash_longest_match_quickly_inc.h47 HasherCommon* common, HashLongestMatchQuickly* BROTLI_RESTRICT self, in Initialize()
49 self->common = common; in Initialize()
52 self->buckets_ = (uint32_t*)common->extra; in Initialize()
56 HashLongestMatchQuickly* BROTLI_RESTRICT self, BROTLI_BOOL one_shot, in Prepare()
58 uint32_t* BROTLI_RESTRICT buckets = self->buckets_; in Prepare()
96 HashLongestMatchQuickly* BROTLI_RESTRICT self, in Store()
100 self->buckets_[key] = (uint32_t)ix; in Store()
104 self->buckets_[(key + off) & BUCKET_MASK] = (uint32_t)ix; in Store()
109 HashLongestMatchQuickly* BROTLI_RESTRICT self, in StoreRange()
114 FN(Store)(self, dat in StoreRange()
46 Initialize( HasherCommon* common, HashLongestMatchQuickly* BROTLI_RESTRICT self, const BrotliEncoderParams* params) Initialize() argument
55 Prepare( HashLongestMatchQuickly* BROTLI_RESTRICT self, BROTLI_BOOL one_shot, size_t input_size, const uint8_t* BROTLI_RESTRICT data) Prepare() argument
95 Store( HashLongestMatchQuickly* BROTLI_RESTRICT self, const uint8_t* BROTLI_RESTRICT data, const size_t mask, const size_t ix) Store() argument
108 StoreRange( HashLongestMatchQuickly* BROTLI_RESTRICT self, const uint8_t* BROTLI_RESTRICT data, const size_t mask, const size_t ix_start, const size_t ix_end) StoreRange() argument
118 StitchToPreviousBlock( HashLongestMatchQuickly* BROTLI_RESTRICT self, size_t num_bytes, size_t position, const uint8_t* ringbuffer, size_t ringbuffer_mask) StitchToPreviousBlock() argument
132 PrepareDistanceCache( HashLongestMatchQuickly* BROTLI_RESTRICT self, int* BROTLI_RESTRICT distance_cache) PrepareDistanceCache() argument
147 FindLongestMatch( HashLongestMatchQuickly* BROTLI_RESTRICT self, const BrotliEncoderDictionary* dictionary, const uint8_t* BROTLI_RESTRICT data, const size_t ring_buffer_mask, const int* BROTLI_RESTRICT distance_cache, const size_t cur_ix, const size_t max_length, const size_t max_backward, const size_t dictionary_distance, const size_t max_distance, HasherSearchResult* BROTLI_RESTRICT out) FindLongestMatch() argument
[all...]
/third_party/python/Lib/lib2to3/
H A Dbtm_utils.py21 def __init__(self, type=None, name=None):
22 self.type = type
23 self.name = name
24 self.children = []
25 self.leaf = False
26 self.parent = None
27 self.alternatives = []
28 self.group = []
30 def __repr__(self):
31 return str(self
[all...]
/base/security/crypto_framework/interfaces/inner_api/crypto_operation/
H A Dcipher.h58 HcfResult (*init)(HcfCipher *self, enum HcfCryptoMode opMode,
61 HcfResult (*update)(HcfCipher *self, HcfBlob *input, HcfBlob *output);
63 HcfResult (*doFinal)(HcfCipher *self, HcfBlob *input, HcfBlob *output);
65 const char *(*getAlgorithm)(HcfCipher *self);
67 HcfResult (*setCipherSpecUint8Array)(HcfCipher *self, CipherSpecItem item, HcfBlob blob);
69 HcfResult (*getCipherSpecString)(HcfCipher *self, CipherSpecItem item, char **returnString);
71 HcfResult (*getCipherSpecUint8Array)(HcfCipher *self, CipherSpecItem item, HcfBlob *returnUint8Array);
/base/security/device_auth/services/session_manager/inc/session/v2/auth_sub_session/
H A Dauth_sub_session.h32 int32_t (*start)(AuthSubSession *self, CJson **returnSendMsg);
33 int32_t (*process)(AuthSubSession *self, const CJson *receviedMsg, CJson **returnSendMsg);
34 int32_t (*setPsk)(AuthSubSession *self, const Uint8Buff *psk);
35 int32_t (*setSelfProtectedMsg)(AuthSubSession *self, const Uint8Buff *selfMsg);
36 int32_t (*setPeerProtectedMsg)(AuthSubSession *self, const Uint8Buff *peerMsg);
37 int32_t (*getSessionKey)(AuthSubSession *self, Uint8Buff *returnSessionKey);
38 void (*destroy)(AuthSubSession *self);

Completed in 17 milliseconds

1...<<111112113114115116117118119120>>...271