Home
last modified time | relevance | path

Searched +defs:module +defs:a (Results 1 – 25 of 150) sorted by relevance

123456

/third_party/python/Modules/
D_operator.c12 get_operator_state(PyObject *module) in get_operator_state()
44 _operator_truth_impl(PyObject *module, PyObject *a) in _operator_truth_impl()
61 _operator_add_impl(PyObject *module, PyObject *a, PyObject *b) in _operator_add_impl()
74 _operator_sub_impl(PyObject *module, PyObject *a, PyObject *b) in _operator_sub_impl()
87 _operator_mul_impl(PyObject *module, PyObject *a, PyObject *b) in _operator_mul_impl()
100 _operator_matmul_impl(PyObject *module, PyObject *a, PyObject *b) in _operator_matmul_impl()
113 _operator_floordiv_impl(PyObject *module, PyObject *a, PyObject *b) in _operator_floordiv_impl()
126 _operator_truediv_impl(PyObject *module, PyObject *a, PyObject *b) in _operator_truediv_impl()
139 _operator_mod_impl(PyObject *module, PyObject *a, PyObject *b) in _operator_mod_impl()
155 _operator_neg(PyObject *module, PyObject *a) in _operator_neg()
[all …]
D_bisectmodule.c84 _bisect_bisect_right_impl(PyObject *module, PyObject *a, PyObject *x, in _bisect_bisect_right_impl()
110 _bisect_insort_right_impl(PyObject *module, PyObject *a, PyObject *x, in _bisect_insort_right_impl()
210 _bisect_bisect_left_impl(PyObject *module, PyObject *a, PyObject *x, in _bisect_bisect_left_impl()
237 _bisect_insort_left_impl(PyObject *module, PyObject *a, PyObject *x, in _bisect_insort_left_impl()
D_heapqmodule.c87 PyObject* a = arr[childpos]; in siftup() local
126 _heapq_heappush_impl(PyObject *module, PyObject *heap, PyObject *item) in _heapq_heappush_impl()
179 _heapq_heappop_impl(PyObject *module, PyObject *heap) in _heapq_heappop_impl()
225 _heapq_heapreplace_impl(PyObject *module, PyObject *heap, PyObject *item) in _heapq_heapreplace_impl()
245 _heapq_heappushpop_impl(PyObject *module, PyObject *heap, PyObject *item) in _heapq_heappushpop_impl()
383 _heapq_heapify_impl(PyObject *module, PyObject *heap) in _heapq_heapify_impl()
456 PyObject* a = arr[childpos + 1]; in siftup_max() local
495 _heapq__heappop_max_impl(PyObject *module, PyObject *heap) in _heapq__heappop_max_impl()
512 _heapq__heapreplace_max_impl(PyObject *module, PyObject *heap, in _heapq__heapreplace_max_impl()
529 _heapq__heapify_max_impl(PyObject *module, PyObject *heap) in _heapq__heapify_max_impl()
Dmathmodule.c519 double x2, a, da, p, p_last, q, q_last, b, result; in m_erfc_contfrac() local
832 math_gcd(PyObject *module, PyObject * const *args, Py_ssize_t nargs) in math_gcd()
879 long_lcm(PyObject *a, PyObject *b) in long_lcm()
907 math_lcm(PyObject *module, PyObject * const *args, Py_ssize_t nargs) in math_lcm()
1202 math_ceil(PyObject *module, PyObject *number) in math_ceil()
1265 math_floor(PyObject *module, PyObject *number) in math_floor()
1432 math_fsum(PyObject *module, PyObject *seq) in math_fsum()
1733 math_isqrt(PyObject *module, PyObject *n) in math_isqrt()
1739 PyObject *a = NULL, *b; in math_isqrt() local
2060 math_factorial(PyObject *module, PyObject *arg) in math_factorial()
[all …]
Dsha1module.c112 SHA1_INT32 a,b,c,d,e,W[80],i; in sha1_compress() local
133 … #define FF_0(a,b,c,d,e,i) e = (ROLc(a, 5) + F0(b,c,d) + e + W[i] + 0x5a827999UL); b = ROLc(b, 30); in sha1_compress() argument
134 … #define FF_1(a,b,c,d,e,i) e = (ROLc(a, 5) + F1(b,c,d) + e + W[i] + 0x6ed9eba1UL); b = ROLc(b, 30); in sha1_compress() argument
135 … #define FF_2(a,b,c,d,e,i) e = (ROLc(a, 5) + F2(b,c,d) + e + W[i] + 0x8f1bbcdcUL); b = ROLc(b, 30); in sha1_compress() argument
136 … #define FF_3(a,b,c,d,e,i) e = (ROLc(a, 5) + F3(b,c,d) + e + W[i] + 0xca62c1d6UL); b = ROLc(b, 30); in sha1_compress() argument
303 sha1_get_state(PyObject *module) in sha1_get_state()
493 _sha1_sha1_impl(PyObject *module, PyObject *string, int usedforsecurity) in _sha1_sha1_impl()
534 _sha1_traverse(PyObject *module, visitproc visit, void *arg) in _sha1_traverse()
542 _sha1_clear(PyObject *module) in _sha1_clear()
550 _sha1_free(void *module) in _sha1_free()
[all …]
Dmd5module.c109 #define FF(a,b,c,d,M,s,t) \ argument
112 #define GG(a,b,c,d,M,s,t) \ argument
115 #define HH(a,b,c,d,M,s,t) \ argument
118 #define II(a,b,c,d,M,s,t) \ argument
124 MD5_INT32 i, W[16], a, b, c, d; in md5_compress() local
326 md5_get_state(PyObject *module) in md5_get_state()
515 _md5_md5_impl(PyObject *module, PyObject *string, int usedforsecurity) in _md5_md5_impl()
556 _md5_traverse(PyObject *module, visitproc visit, void *arg) in _md5_traverse()
564 _md5_clear(PyObject *module) in _md5_clear()
572 _md5_free(void *module) in _md5_free()
Dcmathmodule.c218 cmath_acos_impl(PyObject *module, Py_complex z) in cmath_acos_impl()
261 cmath_acosh_impl(PyObject *module, Py_complex z) in cmath_acosh_impl()
293 cmath_asin_impl(PyObject *module, Py_complex z) in cmath_asin_impl()
316 cmath_asinh_impl(PyObject *module, Py_complex z) in cmath_asinh_impl()
354 cmath_atan_impl(PyObject *module, Py_complex z) in cmath_atan_impl()
407 cmath_atanh_impl(PyObject *module, Py_complex z) in cmath_atanh_impl()
462 cmath_cos_impl(PyObject *module, Py_complex z) in cmath_cos_impl()
484 cmath_cosh_impl(PyObject *module, Py_complex z) in cmath_cosh_impl()
546 cmath_exp_impl(PyObject *module, Py_complex z) in cmath_exp_impl()
675 cmath_log10_impl(PyObject *module, Py_complex z) in cmath_log10_impl()
[all …]
Daudioop.c381 get_audioop_state(PyObject *module) in get_audioop_state()
389 audioop_check_size(PyObject *module, int size) in audioop_check_size()
401 audioop_check_parameters(PyObject *module, Py_ssize_t len, int size) in audioop_check_parameters()
430 audioop_getsample_impl(PyObject *module, Py_buffer *fragment, int width, in audioop_getsample_impl()
458 audioop_max_impl(PyObject *module, Py_buffer *fragment, int width) in audioop_max_impl()
488 audioop_minmax_impl(PyObject *module, Py_buffer *fragment, int width) in audioop_minmax_impl()
517 audioop_avg_impl(PyObject *module, Py_buffer *fragment, int width) in audioop_avg_impl()
546 audioop_rms_impl(PyObject *module, Py_buffer *fragment, int width) in audioop_rms_impl()
566 static double _sum2(const int16_t *a, const int16_t *b, Py_ssize_t len) in _sum2()
620 audioop_findfit_impl(PyObject *module, Py_buffer *fragment, in audioop_findfit_impl()
[all …]
D_hashopenssl.c221 get_hashlib_state(PyObject *module) in get_hashlib_state()
320 py_digest_by_name(PyObject *module, const char *name, enum Py_hash_type py_ht) in py_digest_by_name()
376 py_digest_by_digestmod(PyObject *module, PyObject *digestmod, enum Py_hash_type py_ht) { in py_digest_by_digestmod()
856 py_evp_fromname(PyObject *module, const char *digestname, PyObject *data_obj, in py_evp_fromname()
946 EVP_new_impl(PyObject *module, PyObject *name_obj, PyObject *data_obj, in EVP_new_impl()
971 _hashlib_openssl_md5_impl(PyObject *module, PyObject *data_obj, in _hashlib_openssl_md5_impl()
991 _hashlib_openssl_sha1_impl(PyObject *module, PyObject *data_obj, in _hashlib_openssl_sha1_impl()
1011 _hashlib_openssl_sha224_impl(PyObject *module, PyObject *data_obj, in _hashlib_openssl_sha224_impl()
1031 _hashlib_openssl_sha256_impl(PyObject *module, PyObject *data_obj, in _hashlib_openssl_sha256_impl()
1051 _hashlib_openssl_sha384_impl(PyObject *module, PyObject *data_obj, in _hashlib_openssl_sha384_impl()
[all …]
D_randommodule.c88 get_random_state(PyObject *module) in get_random_state()
175 uint32_t a=genrand_uint32(self)>>5, b=genrand_uint32(self)>>6; in _random_Random_random_impl() local
586 _random_exec(PyObject *module) in _random_exec()
625 _random_traverse(PyObject *module, visitproc visit, void *arg) in _random_traverse()
632 _random_clear(PyObject *module) in _random_clear()
640 _random_free(void *module) in _random_free()
/third_party/python/Modules/clinic/
D_operator.c.h18 _operator_truth(PyObject *module, PyObject *a) in _operator_truth()
46 _operator_add(PyObject *module, PyObject *const *args, Py_ssize_t nargs) in _operator_add()
49 PyObject *a; in _operator_add() local
76 _operator_sub(PyObject *module, PyObject *const *args, Py_ssize_t nargs) in _operator_sub()
79 PyObject *a; in _operator_sub() local
106 _operator_mul(PyObject *module, PyObject *const *args, Py_ssize_t nargs) in _operator_mul()
109 PyObject *a; in _operator_mul() local
136 _operator_matmul(PyObject *module, PyObject *const *args, Py_ssize_t nargs) in _operator_matmul()
139 PyObject *a; in _operator_matmul() local
166 _operator_floordiv(PyObject *module, PyObject *const *args, Py_ssize_t nargs) in _operator_floordiv()
[all …]
D_bisectmodule.c.h26 _bisect_bisect_right(PyObject *module, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames) in _bisect_bisect_right()
33 PyObject *a; in _bisect_bisect_right() local
109 _bisect_insort_right(PyObject *module, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames) in _bisect_insort_right()
116 PyObject *a; in _bisect_insort_right() local
189 _bisect_bisect_left(PyObject *module, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames) in _bisect_bisect_left()
196 PyObject *a; in _bisect_bisect_left() local
272 _bisect_insort_left(PyObject *module, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames) in _bisect_insort_left()
279 PyObject *a; in _bisect_insort_left() local
Dcmathmodule.c.h18 cmath_acos(PyObject *module, PyObject *arg) in cmath_acos()
60 cmath_acosh(PyObject *module, PyObject *arg) in cmath_acosh()
102 cmath_asin(PyObject *module, PyObject *arg) in cmath_asin()
144 cmath_asinh(PyObject *module, PyObject *arg) in cmath_asinh()
186 cmath_atan(PyObject *module, PyObject *arg) in cmath_atan()
228 cmath_atanh(PyObject *module, PyObject *arg) in cmath_atanh()
270 cmath_cos(PyObject *module, PyObject *arg) in cmath_cos()
312 cmath_cosh(PyObject *module, PyObject *arg) in cmath_cosh()
354 cmath_exp(PyObject *module, PyObject *arg) in cmath_exp()
396 cmath_log10(PyObject *module, PyObject *arg) in cmath_log10()
[all …]
Dmathmodule.c.h85 math_frexp(PyObject *module, PyObject *arg) in math_frexp()
121 math_ldexp(PyObject *module, PyObject *const *args, Py_ssize_t nargs) in math_ldexp()
162 math_modf(PyObject *module, PyObject *arg) in math_modf()
197 math_log(PyObject *module, PyObject *args) in math_log()
259 math_fmod(PyObject *module, PyObject *const *args, Py_ssize_t nargs) in math_fmod()
313 math_dist(PyObject *module, PyObject *const *args, Py_ssize_t nargs) in math_dist()
343 math_pow(PyObject *module, PyObject *const *args, Py_ssize_t nargs) in math_pow()
391 math_degrees(PyObject *module, PyObject *arg) in math_degrees()
425 math_radians(PyObject *module, PyObject *arg) in math_radians()
459 math_isfinite(PyObject *module, PyObject *arg) in math_isfinite()
[all …]
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/source/opt/
Dfeature_manager.cpp26 void FeatureManager::Analyze(Module* module) { in Analyze()
32 void FeatureManager::AddExtensions(Module* module) { in AddExtensions()
73 void FeatureManager::AddCapabilities(Module* module) { in AddCapabilities()
79 void FeatureManager::AddExtInstImportIds(Module* module) { in AddExtInstImportIds()
87 bool operator==(const FeatureManager& a, const FeatureManager& b) { in operator ==()
/third_party/spirv-tools/source/opt/
Dfeature_manager.cpp26 void FeatureManager::Analyze(Module* module) { in Analyze()
32 void FeatureManager::AddExtensions(Module* module) { in AddExtensions()
72 void FeatureManager::AddCapabilities(Module* module) { in AddCapabilities()
78 void FeatureManager::AddExtInstImportIds(Module* module) { in AddExtInstImportIds()
86 bool operator==(const FeatureManager& a, const FeatureManager& b) { in operator ==()
/third_party/skia/third_party/externals/spirv-tools/source/opt/
Dfeature_manager.cpp26 void FeatureManager::Analyze(Module* module) { in Analyze()
32 void FeatureManager::AddExtensions(Module* module) { in AddExtensions()
73 void FeatureManager::AddCapabilities(Module* module) { in AddCapabilities()
79 void FeatureManager::AddExtInstImportIds(Module* module) { in AddExtInstImportIds()
87 bool operator==(const FeatureManager& a, const FeatureManager& b) { in operator ==()
/third_party/freetype/src/svg/
Dftsvg.c67 ft_svg_preset_slot( FT_Module module, in ft_svg_preset_slot()
156 ft_svg_property_set( FT_Module module, in ft_svg_property_set()
204 ft_svg_property_get( FT_Module module, in ft_svg_property_get()
269 FT_Matrix a, b; in ft_svg_transform() local
316 #define PUT_SVG_MODULE( a ) a argument
319 #define PUT_SVG_MODULE( a ) NULL argument
/third_party/python/Lib/
Dpyclbr.py55 def __init__(self, module, name, file, lineno, end_lineno, parent): argument
70 def __init__(self, module, name, file, lineno, argument
80 def __init__(self, module, name, super_, file, lineno, argument
100 def readmodule(module, path=None): argument
112 def readmodule_ex(module, path=None): argument
122 def _readmodule(module, path, inpackage=None): argument
187 def __init__(self, module, path, file, tree, inpackage): argument
290 lineno_key = lambda a: getattr(a, 'lineno', 0) argument
/third_party/mesa3d/src/gallium/auxiliary/gallivm/
Dlp_bld_intr.c106 lp_declare_intrinsic_with_type(LLVMModuleRef module, in lp_declare_intrinsic_with_type()
124 lp_declare_intrinsic(LLVMModuleRef module, in lp_declare_intrinsic()
237 LLVMModuleRef module = LLVMGetGlobalParent(LLVMGetBasicBlockParent(LLVMGetInsertBlock(builder))); in lp_build_intrinsic() local
288 LLVMValueRef a) in lp_build_intrinsic_unary()
298 LLVMValueRef a, in lp_build_intrinsic_binary()
323 LLVMValueRef a, in lp_build_intrinsic_binary_anylength()
433 LLVMValueRef a) in lp_build_intrinsic_map_unary()
443 LLVMValueRef a, in lp_build_intrinsic_map_binary()
/third_party/libxml2/doc/
Dsearch.php231 function resSort ($a, $b) {
257 $module = mysql_result($result, $i, 3); variable
282 $module = mysql_result($result, $i, 3); variable
307 $module = mysql_result($result, $i, 3); variable
329 $module = mysql_result($result, $i, 3); variable
405 $module = mysql_result($result, $i, 3); variable
430 $module = mysql_result($result, $i, 3); variable
/third_party/typescript/tests/baselines/reference/
DinternalAliasClassInsideLocalModuleWithoutExportAccessError.js10 export module m2 { variable
29 c.prototype.foo = function (a) { argument
DinternalAliasClassInsideLocalModuleWithExport.js10 export module m2 { variable
29 c.prototype.foo = function (a) { argument
/third_party/python/Lib/test/test_warnings/
D__init__.py28 def warnings_state(module): argument
99 module = c_warnings variable in CPublicAPITests
102 module = py_warnings variable in PyPublicAPITests
318 def match(self, a): argument
377 module = c_warnings variable in CFilterTests
380 module = py_warnings variable in PyFilterTests
549 module = c_warnings variable in CWarnTests
558 module = py_warnings variable in PyWarnTests
603 module = c_warnings variable in CWCmdLineTests
607 module = py_warnings variable in PyWCmdLineTests
[all …]
/third_party/libxml2/
Dgentest.py307 def add_missing_functions(name, module): argument
321 def type_convert(str, name, info, module, function, pos): argument
543 module = enum.xpathEval('string(@file)') variable
667 def generate_test(module, node): argument
963 def compare_missing(a, b): argument

123456