Home
last modified time | relevance | path

Searched refs:n (Results 1 – 25 of 10402) sorted by relevance

12345678910>>...417

/third_party/openssl/fuzz/corpora/conf/
D5d913ffd879d5e80ab7ec465874d76fe35d2e65d9 n::=
11 n::==
12 n::=
13 n::=
14 n::=
20 n::=
22 n::==
23 n::=
24 n::=
25 n::=
[all …]
D6ceea9f3bbe043664a56902e200ae638360719b09 n::=
11 n::==
12 n::=
13 n::=
14 n::=
20 n::=
22 n::==
23 n::=
24 n::=
25 n::=
[all …]
D4283068d95a1fc3feccc691c0d82cf16cd6e87eb1n\n\n\n\n\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n\n\n\n\n\n\n\n \n\n\n\n
/third_party/musl/libc-test/src/musl/
Dpleval.c7 static void t(const char *s, unsigned long n, unsigned long want) in t() argument
9 unsigned long got = __pleval(s, n); in t()
11 t_error("__pleval(\"%s\",%lu) failed: got %lu want %lu\n", s, n, got, want); in t()
16 unsigned long n, _w; \
17 for (n=0; n<200; n++) { \
19 t(#e, n, _w); \
48 T(n % 4;); in main()
49 T(n== 1 || n == 2 ||n%9==7;); in main()
50 T((n==1)+!n+(n ==3);); in main()
51 T(n - 13 - 5 + n * 3 / 7 - 8;); in main()
[all …]
/third_party/freetype/docs/reference/assets/stylesheets/
Dmain.ca7ac06f.min.css.map1n/// Copyright (c) 2016-2021 Martin Donath <martin.donath@squidfunk.com>\n///\n/// Permission is h…
Dpalette.f1a3b89f.min.css.map1n/// Copyright (c) 2016-2021 Martin Donath <martin.donath@squidfunk.com>\n///\n/// Permission is h…
/third_party/typescript/tests/baselines/reference/
DparseBigInt.types2 // All bases should allow "n" suffix
3 const bin = 0b101, binBig = 0b101n; // 5, 5n
6 >binBig : 5n
7 >0b101n : 5n
9 const oct = 0o567, octBig = 0o567n; // 375, 375n
12 >octBig : 375n
13 >0o567n : 375n
15 const hex = 0xC0B, hexBig = 0xC0Bn; // 3083, 3083n
18 >hexBig : 3083n
19 >0xC0Bn : 3083n
[all …]
DnumberVsBigIntOperations.types3 let bigInt = 1n, num = 2;
5 >1n : 1n
9 bigInt = 1n; bigInt = 2; num = 1n; num = 2;
10 >bigInt = 1n : 1n
12 >1n : 1n
16 >num = 1n : 1n
18 >1n : 1n
23 bigInt += 1n; bigInt += 2; num += 1n; num += 2;
24 >bigInt += 1n : bigint
26 >1n : 1n
[all …]
DparseBigInt.js3 const bin = 0b101, binBig = 0b101n; // 5, 5n
4 const oct = 0o567, octBig = 0o567n; // 375, 375n
5 const hex = 0xC0B, hexBig = 0xC0Bn; // 3083, 3083n
6 const dec = 123, decBig = 123n;
10 const largeBin = 0b10101010101010101010101010101010101010101010101010101010101n; // 384307168202282…
11 const largeOct = 0o123456712345671234567n; // 1505852261029722487n
12 const largeDec = 12345678091234567890n;
13 const largeHex = 0x1234567890abcdefn; // 1311768467294899695n
23 const zero = 0b0n;
24 const oneBit = 0b1n;
[all …]
DnumberVsBigIntOperations.js3 let bigInt = 1n, num = 2;
4 bigInt = 1n; bigInt = 2; num = 1n; num = 2;
5 bigInt += 1n; bigInt += 2; num += 1n; num += 2;
6 bigInt -= 1n; bigInt -= 2; num -= 1n; num -= 2;
7 bigInt *= 1n; bigInt *= 2; num *= 1n; num *= 2;
8 bigInt /= 1n; bigInt /= 2; num /= 1n; num /= 2;
9 bigInt %= 1n; bigInt %= 2; num %= 1n; num %= 2;
10 bigInt **= 1n; bigInt **= 2; num **= 1n; num **= 2;
11 bigInt <<= 1n; bigInt <<= 2; num <<= 1n; num <<= 2;
12 bigInt >>= 1n; bigInt >>= 2; num >>= 1n; num >>= 2;
[all …]
DtaggedTemplateStringsTypeArgumentInferenceES6.js3 function noParams<T>(n: T) { }
7 function noGenericParams<T>(n: TemplateStringsArray) { }
11 function someGenerics1a<T, U>(n: T, m: number) { }
14 function someGenerics1b<T, U>(n: TemplateStringsArray, m: U) { }
18 function someGenerics2a<T>(strs: TemplateStringsArray, n: (x: T) => void) { }
19 someGenerics2a `${(n: string) => n}`;
21 function someGenerics2b<T, U>(strs: TemplateStringsArray, n: (x: T, y: U) => void) { }
22 someGenerics2b `${ (n: string, x: number) => n }`;
31 function someGenerics4<T, U>(strs: TemplateStringsArray, n: T, f: (x: U) => void) { }
37 function someGenerics5<U, T>(strs: TemplateStringsArray, n: T, f: (x: U) => void) { }
[all …]
DthisTypeInAccessors.types3 n: number;
4 >n : number
11 >explicit : { n: number; x: number; }
12 >{ n: 12, get x(this: Foo): number { return this.n; }, set x(this: Foo, n: number) { this.
14 n: 12,
15 >n : number
18 get x(this: Foo): number { return this.n; },
21 >this.n : number
23 >n : number
25 set x(this: Foo, n: number) { this.n = n; }
[all …]
DtypeArgumentInferenceWithConstraints.js9 function noGenericParams<T extends number>(n: string) { }
15 function someGenerics1<T, U extends T>(n: T, m: number) { }
22 function someGenerics2a<T extends string>(n: (x: T) => void) { }
23 someGenerics2a((n: string) => n);
24 someGenerics2a<string>((n: string) => n);
25 someGenerics2a<string>((n) => n.substr(0));
27 function someGenerics2b<T extends string, U extends number>(n: (x: T, y: U) => void) { }
28 someGenerics2b((n: string, x: number) => n);
29 someGenerics2b<string, number>((n: string, t: number) => n);
30 someGenerics2b<string, number>((n, t) => n.substr(t * t));
[all …]
DtypeArgumentInference.js9 function noGenericParams<T>(n: string) { }
15 function someGenerics1<T, U>(n: T, m: number) { }
20 function someGenerics2a<T>(n: (x: T) => void) { }
21 someGenerics2a((n: string) => n);
22 someGenerics2a<string>((n: string) => n);
23 someGenerics2a<string>((n) => n.substr(0));
25 function someGenerics2b<T, U>(n: (x: T, y: U) => void) { }
26 someGenerics2b((n: string, x: number) => n);
27 someGenerics2b<string, number>((n: string, t: number) => n);
28 someGenerics2b<string, number>((n, t) => n.substr(t * t));
[all …]
/third_party/freetype/docs/reference/assets/javascripts/lunr/min/
Dlunr.hu.min.js18n){"function"==typeof define&&define.amd?define(n):"object"==typeof exports?module.exports=n():n()… argument
Dlunr.ru.min.js18n){"function"==typeof define&&define.amd?define(n):"object"==typeof exports?module.exports=n():n()… argument
/third_party/flutter/flutter/packages/flutter/test/widgets/
Dcontainer_test.dart57 'RenderPadding#00000 relayoutBoundary=up1\n'
58 ' │ parentData: offset=Offset(0.0, 0.0) (can use size)\n'
59 ' │ constraints: BoxConstraints(0.0<=w<=800.0, 0.0<=h<=600.0)\n'
60 ' │ size: Size(63.0, 88.0)\n'
61 ' │ padding: EdgeInsets.all(5.0)\n'
62 ' │\n'
63 ' └─child: RenderConstrainedBox#00000 relayoutBoundary=up2\n'
64 ' │ parentData: offset=Offset(5.0, 5.0) (can use size)\n'
65 ' │ constraints: BoxConstraints(0.0<=w<=790.0, 0.0<=h<=590.0)\n'
66 ' │ size: Size(53.0, 78.0)\n'
[all …]
/third_party/libunwind/tests/
DLrs-race.c50 int n; in foo_0() local
52 if ((n = unw_backtrace (buf, 20)) < 3) in foo_0()
60 int n; in foo_1() local
62 if ((n = unw_backtrace (buf, 20)) < 3) in foo_1()
70 int n; in foo_2() local
72 if ((n = unw_backtrace (buf, 20)) < 3) in foo_2()
80 int n; in foo_3() local
82 if ((n = unw_backtrace (buf, 20)) < 3) in foo_3()
90 int n; in foo_4() local
92 if ((n = unw_backtrace (buf, 20)) < 3) in foo_4()
[all …]
/third_party/ffmpeg/libavfilter/
Dwindow_func.h39 int n; in generate_window_func() local
43 for (n = 0; n < N; n++) in generate_window_func()
44 lut[n] = 1.; in generate_window_func()
48 for (n = 0; n < N; n++) in generate_window_func()
49 lut[n] = 1.-fabs((n-(N-1)/2.)/((N-1)/2.)); in generate_window_func()
53 for (n = 0; n < N; n++) in generate_window_func()
54 lut[n] = .5*(1-cos(2*M_PI*n/(N-1))); in generate_window_func()
58 for (n = 0; n < N; n++) in generate_window_func()
59 lut[n] = .54-.46*cos(2*M_PI*n/(N-1)); in generate_window_func()
63 for (n = 0; n < N; n++) in generate_window_func()
[all …]
/third_party/flutter/skia/third_party/externals/wuffs/lang/ast/
Dast.go191 func (n *Node) Kind() Kind { return n.kind }
192 func (n *Node) MBounds() interval.IntRange { return n.mBounds }
193 func (n *Node) MType() *TypeExpr { return n.mType }
194 func (n *Node) SetMBounds(x interval.IntRange) { n.mBounds = x }
195 func (n *Node) SetMType(x *TypeExpr) { n.mType = x }
197 func (n *Node) AsArg() *Arg { return (*Arg)(n) }
198 func (n *Node) AsAssert() *Assert { return (*Assert)(n) }
199 func (n *Node) AsAssign() *Assign { return (*Assign)(n) }
200 func (n *Node) AsConst() *Const { return (*Const)(n) }
201 func (n *Node) AsExpr() *Expr { return (*Expr)(n) }
[all …]
/third_party/freetype/docs/reference/assets/javascripts/workers/
Dsearch.477d984a.min.js.map4n * lunr - http://lunrjs.com - A bit like Solr, but much smaller and not as bright - 2.3.9\n * Cop…
/third_party/f2fs-tools/tools/sg_write_buffer/
Dsg_lib.c68 int n; in pr2ws() local
71 n = vfprintf(sg_warnings_strm ? sg_warnings_strm : stderr, fmt, args); in pr2ws()
73 return n; in pr2ws()
94 int n; in scnpr() local
99 n = vsnprintf(cp, cp_max_len, fmt, args); in scnpr()
101 return (n < cp_max_len) ? n : (cp_max_len - 1); in scnpr()
525 int proto_id, num, k, n, normal_len, tpid_format; in sg_decode_transportid_str() local
538 for (k = 0, n = 0; bplen > 0; ++k, bp += bump, bplen -= bump) { in sg_decode_transportid_str()
542 n += scnpr(b + n, blen - n, "%sTransport Id short or not " in sg_decode_transportid_str()
545 n += scnpr(b + n, blen - n, "%sTransport Id of initiator:\n", in sg_decode_transportid_str()
[all …]
/third_party/mesa3d/src/mesa/main/
Ddlist.c701 #define ASSIGN_DOUBLE_TO_NODES(n, idx, value) \ argument
705 n[idx].ui = tmp.uint32[0]; \
706 n[idx+1].ui = tmp.uint32[1]; \
709 #define ASSIGN_UINT64_TO_NODES(n, idx, value) \ argument
713 n[idx].ui = tmp.uint32[0]; \
714 n[idx+1].ui = tmp.uint32[1]; \
717 #define ASSIGN_INT64_TO_NODES(n, idx, value) \ argument
721 n[idx].i = tmp.int32[0]; \
722 n[idx+1].i = tmp.int32[1]; \
811 Node *n = get_list_head(ctx, dlist); in is_bitmap_list() local
[all …]
/third_party/flatbuffers/go/
Dencode.go32 func GetUint8(buf []byte) (n uint8) {
33 n = uint8(buf[0])
38 func GetUint16(buf []byte) (n uint16) {
40 n |= uint16(buf[0])
41 n |= uint16(buf[1]) << 8
46 func GetUint32(buf []byte) (n uint32) {
48 n |= uint32(buf[0])
49 n |= uint32(buf[1]) << 8
50 n |= uint32(buf[2]) << 16
51 n |= uint32(buf[3]) << 24
[all …]
/third_party/freetype/docs/reference/assets/javascripts/
Dbundle.82b56eb2.min.js.map4n typeof exports === 'object' && typeof module !== 'undefined' ? factory() :\n typeof define ===…

12345678910>>...417