| /third_party/typescript/tests/baselines/reference/ |
| D | stringLiteralTypesInImplementationSignatures.js | 4 function foo(x: 'hi') { } 5 var f = function foo(x: 'hi') { } 6 var f2 = (x: 'hi', y: 'hi') => { } 9 foo(x: 'hi') { } 23 foo(x: 'hi') { },
|
| D | stringLiteralTypesInImplementationSignatures2.js | 5 function foo(x: 'hi') { } 9 foo(x: 'hi') { } 27 foo(x: 'hi') { },
|
| D | constructorsWithSpecializedSignatures.js | 21 constructor(x: "hi") { } 29 constructor(x: "hi") { } // error
|
| D | overloadOnConstAsTypeAnnotation.js | 2 var f: (x: 'hi') => number = (x: 'hi') => { return 1; };
|
| /third_party/python/Lib/ |
| D | bisect.py | 4 def insort_right(a, x, lo=0, hi=None, *, key=None): argument 19 def bisect_right(a, x, lo=0, hi=None, *, key=None): argument 53 def insort_left(a, x, lo=0, hi=None, *, key=None): argument 68 def bisect_left(a, x, lo=0, hi=None, *, key=None): argument
|
| /third_party/python/Modules/ |
| D | _bisectmodule.c | 19 internal_bisect_right(PyObject *list, PyObject *item, Py_ssize_t lo, Py_ssize_t hi, in internal_bisect_right() 85 Py_ssize_t lo, Py_ssize_t hi, PyObject *key) in _bisect_bisect_right_impl() 111 Py_ssize_t lo, Py_ssize_t hi, PyObject *key) in _bisect_insort_right_impl() 144 internal_bisect_left(PyObject *list, PyObject *item, Py_ssize_t lo, Py_ssize_t hi, in internal_bisect_left() 211 Py_ssize_t lo, Py_ssize_t hi, PyObject *key) in _bisect_bisect_left_impl() 238 Py_ssize_t lo, Py_ssize_t hi, PyObject *key) in _bisect_insort_left_impl()
|
| /third_party/python/Modules/_decimal/libmpdec/ |
| D | typearith.h | 52 _mpd_mul_words(mpd_uint_t *hi, mpd_uint_t *lo, mpd_uint_t a, mpd_uint_t b) in _mpd_mul_words() 63 _mpd_div_words(mpd_uint_t *q, mpd_uint_t *r, mpd_uint_t hi, mpd_uint_t lo, in _mpd_div_words() 74 _mpd_mul_words(mpd_uint_t *hi, mpd_uint_t *lo, mpd_uint_t a, mpd_uint_t b) in _mpd_mul_words() 208 _mpd_mul_words(mpd_uint_t *hi, mpd_uint_t *lo, mpd_uint_t a, mpd_uint_t b) in _mpd_mul_words() 223 _mpd_div_words(mpd_uint_t *q, mpd_uint_t *r, mpd_uint_t hi, mpd_uint_t lo, in _mpd_div_words() 243 _mpd_mul_words(mpd_uint_t *hi, mpd_uint_t *lo, mpd_uint_t a, mpd_uint_t b) in _mpd_mul_words() 309 _mpd_mul_words(mpd_uint_t *hi, mpd_uint_t *lo, mpd_uint_t a, mpd_uint_t b) in _mpd_mul_words() 320 _mpd_div_words(mpd_uint_t *q, mpd_uint_t *r, mpd_uint_t hi, mpd_uint_t lo, in _mpd_div_words() 332 _mpd_mul_words(mpd_uint_t *hi, mpd_uint_t *lo, mpd_uint_t a, mpd_uint_t b) in _mpd_mul_words() 465 _mpd_mul_words(mpd_uint_t *hi, mpd_uint_t *lo, mpd_uint_t a, mpd_uint_t b) in _mpd_mul_words() [all …]
|
| D | basearith.h | 98 _mpd_div_words_r(mpd_uint_t *q, mpd_uint_t *r, mpd_uint_t hi, mpd_uint_t lo) in _mpd_div_words_r() 142 _mpd_div_words_r(mpd_uint_t *q, mpd_uint_t *r, mpd_uint_t hi, mpd_uint_t lo) in _mpd_div_words_r() 153 mpd_uint_t hi, lo; in _mpd_singlemul() local 163 mpd_uint_t hi, lo; in _mpd_mul_2_le2() local
|
| D | basearith.c | 219 mpd_uint_t hi, lo; in _mpd_shortmul() local 245 mpd_uint_t hi, lo; in _mpd_basemul() local 274 mpd_uint_t hi, lo; in _mpd_shortdiv() local 312 mpd_uint_t hi, lo, x; in _mpd_basedivmod() local 590 mpd_uint_t hi, lo; in _mpd_shortmul_c() local 613 mpd_uint_t hi, lo; in _mpd_shortmul_b() local 639 mpd_uint_t hi, lo; in _mpd_shortdiv_b() local
|
| /third_party/typescript/tests/cases/compiler/ |
| D | noImplicitAnyIndexing.ts | 27 var hi: any = "hi"; variable 32 var z1 = emptyObj[hi]; variable 48 var mResult3 = m[hi]; variable
|
| D | noImplicitAnyIndexingSuppressed.ts | 27 var hi: any = "hi"; variable 32 var z1 = emptyObj[hi]; variable 48 var mResult3 = m[hi]; variable
|
| /third_party/benchmark/src/ |
| D | benchmark_register.h | 15 typename std::vector<T>::iterator AddPowers(std::vector<T>* dst, T lo, T hi, in AddPowers() 39 void AddNegatedPowers(std::vector<T>* dst, T lo, T hi, int mult) { in AddNegatedPowers() 59 void AddRange(std::vector<T>* dst, T lo, T hi, int mult) { in AddRange()
|
| /third_party/optimized-routines/math/test/ |
| D | mathbench.c | 221 double hi; member 234 #define D(func, lo, hi) {#func, 'd', 0, lo, hi, {.d = func}}, argument 235 #define F(func, lo, hi) {#func, 'f', 0, lo, hi, {.f = func}}, argument 236 #define VD(func, lo, hi) {#func, 'd', 'v', lo, hi, {.vd = func}}, argument 237 #define VF(func, lo, hi) {#func, 'f', 'v', lo, hi, {.vf = func}}, argument 238 #define VND(func, lo, hi) {#func, 'd', 'n', lo, hi, {.vnd = func}}, argument 239 #define VNF(func, lo, hi) {#func, 'f', 'n', lo, hi, {.vnf = func}}, argument 350 gen_linear (double lo, double hi) in gen_linear() 357 genf_linear (double lo, double hi) in genf_linear() 377 frand (double lo, double hi) in frand() [all …]
|
| /third_party/mesa3d/src/asahi/lib/ |
| D | tiling.c | 63 uint8_t hi; member 68 uint16_t hi; member 73 uint32_t hi; member 78 uint64_t hi; member
|
| /third_party/mesa3d/src/nouveau/codegen/ |
| D | nv50_ir_lowering_helper.cpp | 69 Value *lo = bld.getSSA(), *hi = bld.getSSA(); in handleABS() local 133 Instruction *hi = bld.mkOp2(insn->op, sTy, def[1], src0[1], src1[1]); in handleMAXMIN() local 163 Value *hi = bld.getSSA(); in handleMOV() local 262 Instruction *hi = bld.mkOp1(insn->op, sTy, def1, src0[1]); in handleLogOp() local
|
| /third_party/skia/third_party/externals/abseil-cpp/absl/random/ |
| D | distributions.h | 125 R lo, R hi) { in Uniform() 144 R lo, R hi) { in Uniform() 168 A lo, B hi) { in Uniform() 191 A lo, B hi) { in Uniform()
|
| /third_party/python/Modules/clinic/ |
| D | _bisectmodule.c.h | 36 Py_ssize_t hi = -1; in _bisect_bisect_right() local 119 Py_ssize_t hi = -1; in _bisect_insort_right() local 199 Py_ssize_t hi = -1; in _bisect_bisect_left() local 282 Py_ssize_t hi = -1; in _bisect_insort_left() local
|
| /third_party/musl/porting/uniproton/kernel/src/internal/ |
| D | libm.h | 42 uint64_t hi; member 55 uint64_t hi; member 196 #define EXTRACT_WORDS(hi,lo,d) \ argument 203 #define GET_HIGH_WORD(hi,d) \ argument 213 #define INSERT_WORDS(d,hi,lo) \ argument 218 #define SET_HIGH_WORD(d,hi) \ argument
|
| /third_party/musl/porting/liteos_m/kernel/src/internal/ |
| D | libm.h | 42 uint64_t hi; member 55 uint64_t hi; member 196 #define EXTRACT_WORDS(hi,lo,d) \ argument 203 #define GET_HIGH_WORD(hi,d) \ argument 213 #define INSERT_WORDS(d,hi,lo) \ argument 218 #define SET_HIGH_WORD(d,hi) \ argument
|
| /third_party/musl/porting/liteos_a/kernel/src/internal/ |
| D | libm.h | 41 uint64_t hi; member 54 uint64_t hi; member 195 #define EXTRACT_WORDS(hi,lo,d) \ argument 202 #define GET_HIGH_WORD(hi,d) \ argument 212 #define INSERT_WORDS(d,hi,lo) \ argument 217 #define SET_HIGH_WORD(d,hi) \ argument
|
| /third_party/musl/src/internal/ |
| D | libm.h | 41 uint64_t hi; member 54 uint64_t hi; member 195 #define EXTRACT_WORDS(hi,lo,d) \ argument 202 #define GET_HIGH_WORD(hi,d) \ argument 212 #define INSERT_WORDS(d,hi,lo) \ argument 217 #define SET_HIGH_WORD(d,hi) \ argument
|
| /third_party/FatFs/source/ |
| D | ffunicode.c | 15282 UINT i = 0, n, li, hi; in ff_uni2oem() local 15318 UINT i = 0, n, li, hi; in ff_oem2uni() local 15365 UINT i, n, li, hi; in ff_uni2oem() local 15417 UINT i, n, li, hi; in ff_oem2uni() local
|
| /third_party/jerryscript/jerry-libm/ |
| D | jerry-libm-internal.h | 58 int hi; member 70 int hi; member
|
| /third_party/typescript/tests/cases/conformance/scanner/ |
| D | jsdocInvalidTokens.ts | 15 var hi = 1 variable
|
| /third_party/mesa3d/src/panfrost/shared/ |
| D | pan_tiling.c | 116 uint64_t hi; member 122 uint8_t hi; member 127 uint16_t hi; member 132 uint32_t hi; member
|