/third_party/curl/tests/ |
D | valgrind.supp | 4 fun:ZSTD_decompressStream 5 fun:zstd_unencode_write 6 fun:Curl_unencode_write 7 fun:hyper_body_chunk 13 fun:ZSTD_decompressStream 14 fun:zstd_unencode_write 15 fun:Curl_unencode_write 16 fun:readwrite_data 17 fun:Curl_readwrite 18 fun:multi_runsingle [all …]
|
/third_party/python/Misc/ |
D | valgrind-python.supp | 22 fun:address_in_range 28 fun:address_in_range 34 fun:address_in_range 40 fun:address_in_range 52 fun:malloc 53 fun:PyThread_allocate_lock 54 fun:PyEval_InitThreads 60 fun:malloc 61 fun:PyThread_allocate_lock 62 fun:PyEval_ReInitThreads [all …]
|
/third_party/skia/tools/ |
D | valgrind.supp | 9 fun:start_keepalive 11 fun:main 20 fun:ioctl 56 fun:malloc 62 fun:strcpy 68 fun:calloc 74 fun:malloc 93 fun:calloc 100 fun:sendmsg 106 fun:malloc [all …]
|
/third_party/musl/libc-test/src/functionalext/common/ |
D | functionalext.h | 31 #define EXPECT_TRUE(fun, c) \ argument 34 t_error("[%s] failed\n", fun); \ 37 #define EXPECT_FALSE(fun, c) \ argument 40 t_error("[%s] failed \n", fun); \ 43 #define EXPECT_EQ(fun, a, b) \ argument 46 t_error("[%s] failed %d != %d \n", fun, a, b); \ 49 #define EXPECT_LT(fun, a, b) \ argument 52 t_error("[%s] failed (errno: %s) %d >= %d \n", #fun, strerror(errno), a, b); \ 55 #define EXPECT_MT(fun, a, b) \ argument 58 t_error("[%s] failed (errno: %s) %d >= %d \n", #fun, strerror(errno), a, b); \ [all …]
|
/third_party/typescript/tests/baselines/reference/ |
D | defaultArgsInOverloads.symbols | 2 function fun(a: string); 3 >fun : Symbol(fun, Decl(defaultArgsInOverloads.ts, 0, 0), Decl(defaultArgsInOverloads.ts, 0, 24), D… 6 function fun(a = 3); 7 >fun : Symbol(fun, Decl(defaultArgsInOverloads.ts, 0, 0), Decl(defaultArgsInOverloads.ts, 0, 24), D… 10 function fun(a = null) { } 11 >fun : Symbol(fun, Decl(defaultArgsInOverloads.ts, 0, 0), Decl(defaultArgsInOverloads.ts, 0, 24), D… 17 fun(a: string); 18 >fun : Symbol(C.fun, Decl(defaultArgsInOverloads.ts, 4, 9), Decl(defaultArgsInOverloads.ts, 5, 16),… 21 fun(a = 3); 22 >fun : Symbol(C.fun, Decl(defaultArgsInOverloads.ts, 4, 9), Decl(defaultArgsInOverloads.ts, 5, 16),… [all …]
|
D | parenthesizedContexualTyping1.js | 2 function fun<T>(g: (x: T) => T, x: T): T; 3 function fun<T>(g: (x: T) => T, h: (y: T) => T, x: T): T; 4 function fun<T>(g: (x: T) => T, x: T): T { 8 var a = fun(x => x, 10); 9 var b = fun((x => x), 10); 10 var c = fun(((x => x)), 10); 11 var d = fun((((x => x))), 10); 13 var e = fun(x => x, x => x, 10); 14 var f = fun((x => x), (x => x), 10); 15 var g = fun(((x => x)), ((x => x)), 10); [all …]
|
D | defaultArgsInOverloads.types | 2 function fun(a: string); 3 >fun : { (a: string): any; (a?: number): any; } 6 function fun(a = 3); 7 >fun : { (a: string): any; (a?: number): any; } 11 function fun(a = null) { } 12 >fun : { (a: string): any; (a?: number): any; } 19 fun(a: string); 20 >fun : { (a: string): any; (a?: number): any; } 23 fun(a = 3); 24 >fun : { (a: string): any; (a?: number): any; } [all …]
|
D | parenthesizedContexualTyping2.js | 10 function fun<T>(f: FuncType, x: T): T; 11 function fun<T>(f: FuncType, g: FuncType, x: T): T; 12 function fun<T>(...rest: any[]): T { 16 var a = fun(x => { x<number>(undefined); return x; }, 10); 17 var b = fun((x => { x<number>(undefined); return x; }), 10); 18 var c = fun(((x => { x<number>(undefined); return x; })), 10); 19 var d = fun((((x => { x<number>(undefined); return x; }))), 10); 21 var e = fun(x => { x<number>(undefined); return x; }, x => { x<number>(undefined); return x; }, 10); 22 var f = fun((x => { x<number>(undefined); return x; }),(x => { x<number>(undefined); return x; }), … 23 var g = fun(((x => { x<number>(undefined); return x; })),((x => { x<number>(undefined); return x; }… [all …]
|
D | defaultArgsInOverloads.js | 2 function fun(a: string); 3 function fun(a = 3); 4 function fun(a = null) { } function 7 fun(a: string); 8 fun(a = 3); 9 fun(a = null) { } method in C 10 static fun(a: string); 11 static fun(a = 3); 12 static fun(a = null) { } method in C 16 fun(a: string); [all …]
|
D | thisInObjectJs.types | 4 >obj : { x: number; y: number[]; fun: typeof fun; f2: () => void; f3: typeof (Anonymous function); } 5 …fun: function() { this.x = 1 this/*1*/ }, f2: function() { this.x this/*2*/ }, f3:… 16 fun: function() { 17 >fun : typeof fun 18 >function() { this.x = 1 this/*1*/ } : typeof fun 23 >this : { x: number; y: number[]; fun: typeof fun; f2: () => void; f3: typeof (Anonymous function);… 28 >this : { x: number; y: number[]; fun: typeof fun; f2: () => void; f3: typeof (Anonymous function);… 37 >this : { x: number; y: number[]; fun: typeof fun; f2: () => void; f3: typeof (Anonymous function);… 41 >this : { x: number; y: number[]; fun: typeof fun; f2: () => void; f3: typeof (Anonymous function);…
|
D | parenthesizedContexualTyping1.symbols | 2 function fun<T>(g: (x: T) => T, x: T): T; 3 >fun : Symbol(fun, Decl(parenthesizedContexualTyping1.ts, 0, 0), Decl(parenthesizedContexualTyping1… 13 function fun<T>(g: (x: T) => T, h: (y: T) => T, x: T): T; 14 >fun : Symbol(fun, Decl(parenthesizedContexualTyping1.ts, 0, 0), Decl(parenthesizedContexualTyping1… 28 function fun<T>(g: (x: T) => T, x: T): T { 29 >fun : Symbol(fun, Decl(parenthesizedContexualTyping1.ts, 0, 0), Decl(parenthesizedContexualTyping1… 44 var a = fun(x => x, 10); 46 >fun : Symbol(fun, Decl(parenthesizedContexualTyping1.ts, 0, 0), Decl(parenthesizedContexualTyping1… 50 var b = fun((x => x), 10); 52 >fun : Symbol(fun, Decl(parenthesizedContexualTyping1.ts, 0, 0), Decl(parenthesizedContexualTyping1… [all …]
|
D | parenthesizedContexualTyping1.types | 2 function fun<T>(g: (x: T) => T, x: T): T; 3 >fun : { <T>(g: (x: T) => T, x: T): T; <T>(g: (x: T) => T, h: (y: T) => T, x: T): T; } 8 function fun<T>(g: (x: T) => T, h: (y: T) => T, x: T): T; 9 >fun : { <T>(g: (x: T) => T, x: T): T; <T>(g: (x: T) => T, h: (y: T) => T, x: T): T; } 16 function fun<T>(g: (x: T) => T, x: T): T { 17 >fun : { <T>(g: (x: T) => T, x: T): T; <T>(g: (x: T) => T, h: (y: T) => T, x: T): T; } 28 var a = fun(x => x, 10); 30 >fun(x => x, 10) : number 31 >fun : { <T>(g: (x: T) => T, x: T): T; <T>(g: (x: T) => T, h: (y: T) => T, x: T): T; } 37 var b = fun((x => x), 10); [all …]
|
/third_party/libinput/test/ |
D | valgrind.suppressions | 5 fun:timer_create@@GLIBC_2.3.3 6 fun:srunner_run 7 fun:litest_run 8 fun:main 14 fun:mtdev_put_event 20 fun:g_type_register_static 26 fun:g_type_register_fundamental 32 fun:g_malloc0 37 fun:malloc 39 fun:g_get_language_names_with_category [all …]
|
/third_party/node/tools/ |
D | valgrind.supp | 5 fun:_ZN4node12_GLOBAL__N_1L20PlatformWorkerThreadEPv 12 fun:_ZN2v88platform7tracing17TracingController31GetCategoryGroupEnabledInternalEPKc 19 fun:_ZN2v86Locker8IsActiveEv 26 fun:_ZN2v86Locker10InitializeEPNS_7IsolateE 33 fun:_ZN2v88internal7Isolate15SetEmbeddedBlobEPKhj 40 fun:_ZN2v88internal4Heap14SetStackLimitsEv 47 fun:_ZN2v88internal7Isolate23CurrentEmbeddedBlobSizeEv 54 fun:_ZN2v88internal7Isolate19CurrentEmbeddedBlobEv 61 fun:epoll_ctl 62 fun:uv__io_poll [all …]
|
/third_party/ltp/tools/sparse/sparse-src/validation/ |
D | Waddress.c | 1 extern int fun(void); 8 if (fun()) return -1; in test_address() 16 if (fun) return 1; in test_address() 17 if (&fun) return 1; in test_address() 18 if (*fun) return 1; in test_address() 29 if (!fun()) return -1; in test_address_not() 37 if (!fun) return 0; in test_address_not() 38 if (!&fun) return 0; in test_address_not() 39 if (!*fun) return 0; in test_address_not() 49 if (fun() == 0) return -1; in test_address_cmp() [all …]
|
/third_party/python/Lib/test/ |
D | test_sched.py | 45 fun = lambda x: l.append(x) function 48 z = scheduler.enter(x, 1, fun, (x,)) 54 fun = lambda x: l.append(x) function 57 z = scheduler.enterabs(x, 1, fun, (x,)) 63 fun = q.put 66 scheduler.enter(1, 1, fun, (1,)) 67 scheduler.enter(3, 1, fun, (3,)) 74 z = scheduler.enter(x - 1, 1, fun, (x,)) 92 fun = lambda x: l.append(x) function 95 z = scheduler.enterabs(0.01, priority, fun, (priority,)) [all …]
|
/third_party/libabigail/tests/ |
D | test-valgrind-suppressions.supp | 47 fun:elf_version 53 fun:elf_begin 59 fun:_dlerror_run 65 fun:_ZNSo9_M_insertImEERSoT_ 71 fun:_ZNSo9_M_insertIlEERSoT_ 78 fun:_ZNSo9_M_insertIyEERSoT_ 84 fun:_ZNSo9_M_insertImEERSoT_ 85 fun:operator<< 92 fun:_Unwind_RaiseException 100 fun:_Unwind_RaiseException [all …]
|
/third_party/typescript/tests/cases/conformance/expressions/contextualTyping/ |
D | parenthesizedContexualTyping1.ts | 2 function fun<T>(g: (x: T) => T, x: T): T; function 3 function fun<T>(g: (x: T) => T, h: (y: T) => T, x: T): T; 4 function fun<T>(g: (x: T) => T, x: T): T { 8 var a = fun(x => x, 10); 9 var b = fun((x => x), 10); 10 var c = fun(((x => x)), 10); 11 var d = fun((((x => x))), 10); 13 var e = fun(x => x, x => x, 10); 14 var f = fun((x => x), (x => x), 10); 15 var g = fun(((x => x)), ((x => x)), 10); [all …]
|
D | parenthesizedContexualTyping2.ts | 9 function fun<T>(f: FuncType, x: T): T; function 10 function fun<T>(f: FuncType, g: FuncType, x: T): T; 11 function fun<T>(...rest: any[]): T { 15 var a = fun(x => { x<number>(undefined); return x; }, 10); 16 var b = fun((x => { x<number>(undefined); return x; }), 10); 17 var c = fun(((x => { x<number>(undefined); return x; })), 10); 18 var d = fun((((x => { x<number>(undefined); return x; }))), 10); 20 var e = fun(x => { x<number>(undefined); return x; }, x => { x<number>(undefined); return x; }, 10); 21 var f = fun((x => { x<number>(undefined); return x; }),(x => { x<number>(undefined); return x; }), … 22 var g = fun(((x => { x<number>(undefined); return x; })),((x => { x<number>(undefined); return x; }… [all …]
|
/third_party/ltp/tools/sparse/sparse-src/validation/backend/ |
D | degenerate-ptr.c | 3 extern int fun(int); 22 fvp(fun); in call() 23 fvp(&fun); in call() 24 ffp(fun); in call() 25 ffp(&fun); in call() 42 vp = fun; in local() 43 vp = &fun; in local() 44 fp = fun; in local() 45 fp = &fun; in local() 63 vp = fun; in global() [all …]
|
/third_party/typescript/tests/cases/compiler/ |
D | defaultArgsInOverloads.ts | 1 function fun(a: string); function 2 function fun(a = 3); 3 function fun(a = null) { } 6 fun(a: string); method in C 7 fun(a = 3); 8 fun(a = null) { } 9 static fun(a: string); method in C 10 static fun(a = 3); 11 static fun(a = null) { } 15 fun(a: string); method [all …]
|
/third_party/ltp/tools/sparse/sparse-src/validation/linear/ |
D | call-indirect.c | 1 int gg(int (*fun)(void)) { return fun(); } in gg() 3 int g0(int (*fun)(void)) { return (fun)(); } in g0() 4 int g1(int (*fun)(void)) { return (*fun)(); } // C99,C11 6.5.3.2p4 in g1() 5 int g2(int (*fun)(void)) { return (**fun)(); } // C99,C11 6.5.3.2p4 in g2() 6 int g3(int (*fun)(void)) { return (***fun)(); } // C99,C11 6.5.3.2p4 in g3()
|
/third_party/ffmpeg/tests/ |
D | fate-valgrind.supp | 6 fun:inflateReset2 7 fun:inflateInit2_ 14 fun:__GI___strncasecmp_l 15 fun:____strtod_l_internal 16 fun:av_strtod 21 fun:__GI___strncasecmp_l 22 fun:____strtod_l_internal 23 fun:av_strtod 28 fun:__GI___strncasecmp_l 29 fun:____strtod_l_internal [all …]
|
/third_party/optimized-routines/string/test/ |
D | memmove.c | 18 static const struct fun struct 21 void *(*fun) (void *, const void *, size_t); member 50 test (const struct fun *fun, int dalign, int salign, int len) in test() argument 73 p = fun->fun (d, s, len); in test() 75 ERR ("%s(%p,..) returned %p\n", fun->name, d, p); in test() 80 ERR ("%s(align %d, align %d, %d) failed\n", fun->name, dalign, salign, in test() 90 test_overlap (const struct fun *fun, int dalign, int salign, int len) in test_overlap() argument 113 s = tag_buffer (s, len, fun->test_mte); in test_overlap() 114 d = tag_buffer (d, len, fun->test_mte); in test_overlap() 115 p = fun->fun (d, s, len); in test_overlap() [all …]
|
D | strchr.c | 19 static const struct fun struct 22 char *(*fun) (const char *s, int c); member 50 test (const struct fun *fun, int align, int seekpos, int len) in test() argument 75 s = tag_buffer (s, len + 1, fun->test_mte); in test() 76 p = fun->fun (s, seekchar); in test() 77 untag_buffer (s, len + 1, fun->test_mte); in test() 83 fun->name, s, seekchar, len, p, f, seekpos); in test() 87 s = tag_buffer (s, len + 1, fun->test_mte); in test() 88 p = fun->fun (s, 0); in test() 89 untag_buffer (s, len + 1, fun->test_mte); in test() [all …]
|