Home
last modified time | relevance | path

Searched full:state (Results 1 – 25 of 8730) sorted by relevance

12345678910>>...350

/third_party/typescript/tests/baselines/reference/
DcontrolFlowManyCallExpressionStatementsPerf.types7 let state = true;
8 >state : boolean
11 if (state) {
12 >state : true
14 test(state as any && state);
15 >test(state as any && state) : boolean
17 >state as any && state : any
18 >state as any : any
19 >state : true
20 >state : true
[all …]
DcontrolFlowManyCallExpressionStatementsPerf.js4 let state = true;
6 if (state) {
7 test(state as any && state);
8 test(state as any && state);
9 test(state as any && state);
10 test(state as any && state);
11 test(state as any && state);
12 test(state as any && state);
13 test(state as any && state);
14 test(state as any && state);
[all …]
DcontrolFlowManyCallExpressionStatementsPerf.symbols7 let state = true;
8 >state : Symbol(state, Decl(controlFlowManyCallExpressionStatementsPerf.ts, 2, 3))
10 if (state) {
11 >state : Symbol(state, Decl(controlFlowManyCallExpressionStatementsPerf.ts, 2, 3))
13 test(state as any && state);
15 >state : Symbol(state, Decl(controlFlowManyCallExpressionStatementsPerf.ts, 2, 3))
16 >state : Symbol(state, Decl(controlFlowManyCallExpressionStatementsPerf.ts, 2, 3))
18 test(state as any && state);
20 >state : Symbol(state, Decl(controlFlowManyCallExpressionStatementsPerf.ts, 2, 3))
21 >state : Symbol(state, Decl(controlFlowManyCallExpressionStatementsPerf.ts, 2, 3))
[all …]
/third_party/typescript/tests/cases/compiler/
DcontrolFlowManyCallExpressionStatementsPerf.ts5 let state = true; variable
7 if (state) {
8 test(state as any && state);
9 test(state as any && state);
10 test(state as any && state);
11 test(state as any && state);
12 test(state as any && state);
13 test(state as any && state);
14 test(state as any && state);
15 test(state as any && state);
[all …]
/third_party/lz4/ossfuzz/
Dround_trip_stream_fuzzer.c51 typedef void (*round_trip_t)(state_t* state);
60 state_t state; in state_create() local
62 state.seed = seed; in state_create()
64 state.data.buf = (char const*)data; in state_create()
65 state.data.size = size; in state_create()
66 state.data.pos = 0; in state_create()
69 state.compressed = cursor_create(1024 + 2 * LZ4_compressBound(size)); in state_create()
70 state.roundTrip = cursor_create(size); in state_create()
72 state.cstream = LZ4_createStream(); in state_create()
73 FUZZ_ASSERT(state.cstream); in state_create()
[all …]
/third_party/rust/crates/syn/src/gen/
Dhash.rs11 fn hash<H>(&self, state: &mut H) in hash()
15 self.name.hash(state); in hash()
21 fn hash<H>(&self, state: &mut H) in hash()
25 self.colon2_token.hash(state); in hash()
26 self.args.hash(state); in hash()
32 fn hash<H>(&self, state: &mut H) in hash()
36 self.attrs.hash(state); in hash()
37 self.pat.hash(state); in hash()
38 self.guard.hash(state); in hash()
39 self.body.hash(state); in hash()
[all …]
/third_party/musl/Benchmark/musl/
Dlibc_math.cpp36 static void Bm_function_Copysignl_Allpositive(benchmark::State &state) in Bm_function_Copysignl_Allpositive() argument
40 for (auto _ : state) { in Bm_function_Copysignl_Allpositive()
45 static void Bm_function_Copysignl_Allnegative(benchmark::State &state) in Bm_function_Copysignl_Allnegative() argument
49 for (auto _ : state) { in Bm_function_Copysignl_Allnegative()
54 static void Bm_function_Copysignl_Np(benchmark::State &state) in Bm_function_Copysignl_Np() argument
58 for (auto _ : state) { in Bm_function_Copysignl_Np()
63 static void Bm_function_Copysignl_Pn(benchmark::State &state) in Bm_function_Copysignl_Pn() argument
67 for (auto _ : state) { in Bm_function_Copysignl_Pn()
73 static void Bm_function_Fmodl(benchmark::State &state) in Bm_function_Fmodl() argument
75 long double x = DIVIDEND_VALUES[state.range(0)]; in Bm_function_Fmodl()
[all …]
Dlibc_stdio.cpp62 static void Bm_function_Fopen_read(benchmark::State &state) in Bm_function_Fopen_read() argument
64 for (auto _ : state) { in Bm_function_Fopen_read()
70 state.PauseTiming(); in Bm_function_Fopen_read()
74 state.ResumeTiming(); in Bm_function_Fopen_read()
78 static void Bm_function_Fopen_write(benchmark::State &state) in Bm_function_Fopen_write() argument
80 for (auto _ : state) { in Bm_function_Fopen_write()
86 state.PauseTiming(); in Bm_function_Fopen_write()
90 state.ResumeTiming(); in Bm_function_Fopen_write()
94 static void Bm_function_Fopen_append(benchmark::State &state) in Bm_function_Fopen_append() argument
96 for (auto _ : state) { in Bm_function_Fopen_append()
[all …]
Dlibc_ctype.cpp28 static void Bm_function_Tolower_a(benchmark::State &state) in Bm_function_Tolower_a() argument
31 for (auto _ : state) { in Bm_function_Tolower_a()
34 state.SetItemsProcessed(state.iterations()); in Bm_function_Tolower_a()
37 static void Bm_function_Tolower_A(benchmark::State &state) in Bm_function_Tolower_A() argument
40 for (auto _ : state) { in Bm_function_Tolower_A()
43 state.SetItemsProcessed(state.iterations()); in Bm_function_Tolower_A()
46 static void Bm_function_Tolower_all_ascii(benchmark::State &state) in Bm_function_Tolower_all_ascii() argument
48 for (auto _ : state) { in Bm_function_Tolower_all_ascii()
53 state.SetItemsProcessed(state.iterations()); in Bm_function_Tolower_all_ascii()
56 static void Bm_function_Isspace_space(benchmark::State &state) in Bm_function_Isspace_space() argument
[all …]
/third_party/skia/third_party/externals/abseil-cpp/absl/debugging/internal/
Ddemangle.cc151 // State needed for demangling. This struct is copied in almost every stack
169 // One-off state for demangling that's not subject to backtracking -- either
181 ParseState parse_state; // Backtrackable state copied for most frames.
182 } State; typedef
189 explicit ComplexityGuard(State *state) : state_(state) { in ComplexityGuard() argument
190 ++state->recursion_depth; in ComplexityGuard()
191 ++state->steps; in ComplexityGuard()
222 State *state_;
256 static void InitState(State *state, const char *mangled, char *out, in InitState() argument
258 state->mangled_begin = mangled; in InitState()
[all …]
/third_party/skia/third_party/externals/freetype/src/lzw/
Dftzopen.c29 ft_lzwstate_refill( FT_LzwState state ) in ft_lzwstate_refill() argument
34 if ( state->in_eof ) in ft_lzwstate_refill()
37 count = FT_Stream_TryRead( state->source, in ft_lzwstate_refill()
38 state->buf_tab, in ft_lzwstate_refill()
39 state->num_bits ); /* WHY? */ in ft_lzwstate_refill()
41 state->buf_size = (FT_UInt)count; in ft_lzwstate_refill()
42 state->buf_total += count; in ft_lzwstate_refill()
43 state->in_eof = FT_BOOL( count < state->num_bits ); in ft_lzwstate_refill()
44 state->buf_offset = 0; in ft_lzwstate_refill()
46 state->buf_size <<= 3; in ft_lzwstate_refill()
[all …]
/third_party/skia/third_party/externals/brotli/csharp/org/brotli/dec/
DDecode.cs62 private static void DecodeMetaBlockLength(Org.Brotli.Dec.BitReader br, Org.Brotli.Dec.State state) in DecodeMetaBlockLength() argument
64 state.inputEnd = Org.Brotli.Dec.BitReader.ReadBits(br, 1) == 1; in DecodeMetaBlockLength()
65 state.metaBlockLength = 0; in DecodeMetaBlockLength()
66 state.isUncompressed = false; in DecodeMetaBlockLength()
67 state.isMetadata = false; in DecodeMetaBlockLength()
68 if (state.inputEnd && Org.Brotli.Dec.BitReader.ReadBits(br, 1) != 0) in DecodeMetaBlockLength()
75 state.isMetadata = true; in DecodeMetaBlockLength()
92 state.metaBlockLength |= bits << (i * 8); in DecodeMetaBlockLength()
104 state.metaBlockLength |= bits << (i * 4); in DecodeMetaBlockLength()
107 state.metaBlockLength++; in DecodeMetaBlockLength()
[all …]
/third_party/libwebsockets/win32port/zlib/
Dinflate.c26 * - Change strm->next_out[-state->offset] to *(strm->next_out - state->offset)
30 * - Add comments on state->bits assertion in inffast.c
95 local void fixedtables OF((struct inflate_state FAR *state));
106 struct inflate_state FAR *state; local
108 if (strm == Z_NULL || strm->state == Z_NULL) return Z_STREAM_ERROR;
109 state = (struct inflate_state FAR *)strm->state;
110 strm->total_in = strm->total_out = state->total = 0;
113 state->mode = HEAD;
114 state->last = 0;
115 state->havedict = 0;
[all …]
/third_party/node/deps/v8/third_party/zlib/contrib/optimizations/
Dinflate.c26 * - Change strm->next_out[-state->offset] to *(strm->next_out - state->offset)
30 * - Add comments on state->bits assertion in inffast.c
97 local void fixedtables OF((struct inflate_state FAR *state));
109 struct inflate_state FAR *state; local
113 state = (struct inflate_state FAR *)strm->state;
114 if (state == Z_NULL || state->strm != strm ||
115 state->mode < HEAD || state->mode > SYNC)
123 struct inflate_state FAR *state; local
126 state = (struct inflate_state FAR *)strm->state;
127 strm->total_in = strm->total_out = state->total = 0;
[all …]
/third_party/node/deps/v8/third_party/zlib/
Dinflate.c26 * - Change strm->next_out[-state->offset] to *(strm->next_out - state->offset)
30 * - Add comments on state->bits assertion in inffast.c
96 local void fixedtables OF((struct inflate_state FAR *state));
108 struct inflate_state FAR *state; local
112 state = (struct inflate_state FAR *)strm->state;
113 if (state == Z_NULL || state->strm != strm ||
114 state->mode < HEAD || state->mode > SYNC)
122 struct inflate_state FAR *state; local
125 state = (struct inflate_state FAR *)strm->state;
126 strm->total_in = strm->total_out = state->total = 0;
[all …]
/third_party/node/deps/zlib/contrib/optimizations/
Dinflate.c26 * - Change strm->next_out[-state->offset] to *(strm->next_out - state->offset)
30 * - Add comments on state->bits assertion in inffast.c
96 struct inflate_state FAR *state; in inflateStateCheck() local
100 state = (struct inflate_state FAR *)strm->state; in inflateStateCheck()
101 if (state == Z_NULL || state->strm != strm || in inflateStateCheck()
102 state->mode < HEAD || state->mode > SYNC) in inflateStateCheck()
108 struct inflate_state FAR *state; in inflateResetKeep() local
111 state = (struct inflate_state FAR *)strm->state; in inflateResetKeep()
112 strm->total_in = strm->total_out = state->total = 0; in inflateResetKeep()
114 if (state->wrap) /* to support ill-conceived Java test suite */ in inflateResetKeep()
[all …]
/third_party/node/deps/zlib/
Dinflate.c26 * - Change strm->next_out[-state->offset] to *(strm->next_out - state->offset)
30 * - Add comments on state->bits assertion in inffast.c
95 struct inflate_state FAR *state; in inflateStateCheck() local
99 state = (struct inflate_state FAR *)strm->state; in inflateStateCheck()
100 if (state == Z_NULL || state->strm != strm || in inflateStateCheck()
101 state->mode < HEAD || state->mode > SYNC) in inflateStateCheck()
107 struct inflate_state FAR *state; in inflateResetKeep() local
110 state = (struct inflate_state FAR *)strm->state; in inflateResetKeep()
111 strm->total_in = strm->total_out = state->total = 0; in inflateResetKeep()
113 if (state->wrap) /* to support ill-conceived Java test suite */ in inflateResetKeep()
[all …]
/third_party/zlib/
Dinflate.c26 * - Change strm->next_out[-state->offset] to *(strm->next_out - state->offset)
30 * - Add comments on state->bits assertion in inffast.c
96 struct inflate_state FAR *state; in inflateStateCheck() local
100 state = (struct inflate_state FAR *)strm->state; in inflateStateCheck()
101 if (state == Z_NULL || state->strm != strm || in inflateStateCheck()
102 state->mode < HEAD || state->mode > SYNC) in inflateStateCheck()
108 struct inflate_state FAR *state; in inflateResetKeep() local
111 state = (struct inflate_state FAR *)strm->state; in inflateResetKeep()
112 strm->total_in = strm->total_out = state->total = 0; in inflateResetKeep()
114 if (state->wrap) /* to support ill-conceived Java test suite */ in inflateResetKeep()
[all …]
/third_party/skia/third_party/externals/zlib/contrib/optimizations/
Dinflate.c26 * - Change strm->next_out[-state->offset] to *(strm->next_out - state->offset)
30 * - Add comments on state->bits assertion in inffast.c
97 local void fixedtables OF((struct inflate_state FAR *state));
109 struct inflate_state FAR *state; local
113 state = (struct inflate_state FAR *)strm->state;
114 if (state == Z_NULL || state->strm != strm ||
115 state->mode < HEAD || state->mode > SYNC)
123 struct inflate_state FAR *state; local
126 state = (struct inflate_state FAR *)strm->state;
127 strm->total_in = strm->total_out = state->total = 0;
[all …]
/third_party/skia/third_party/externals/zlib/
Dinflate.c26 * - Change strm->next_out[-state->offset] to *(strm->next_out - state->offset)
30 * - Add comments on state->bits assertion in inffast.c
96 local void fixedtables OF((struct inflate_state FAR *state));
108 struct inflate_state FAR *state; local
112 state = (struct inflate_state FAR *)strm->state;
113 if (state == Z_NULL || state->strm != strm ||
114 state->mode < HEAD || state->mode > SYNC)
122 struct inflate_state FAR *state; local
125 state = (struct inflate_state FAR *)strm->state;
126 strm->total_in = strm->total_out = state->total = 0;
[all …]
/third_party/mesa3d/src/gallium/auxiliary/driver_trace/
Dtr_dump_state.c108 void trace_dump_rasterizer_state(const struct pipe_rasterizer_state *state) in trace_dump_rasterizer_state() argument
113 if (!state) { in trace_dump_rasterizer_state()
120 trace_dump_member(bool, state, flatshade); in trace_dump_rasterizer_state()
121 trace_dump_member(bool, state, light_twoside); in trace_dump_rasterizer_state()
122 trace_dump_member(bool, state, clamp_vertex_color); in trace_dump_rasterizer_state()
123 trace_dump_member(bool, state, clamp_fragment_color); in trace_dump_rasterizer_state()
124 trace_dump_member(uint, state, front_ccw); in trace_dump_rasterizer_state()
125 trace_dump_member(uint, state, cull_face); in trace_dump_rasterizer_state()
126 trace_dump_member(uint, state, fill_front); in trace_dump_rasterizer_state()
127 trace_dump_member(uint, state, fill_back); in trace_dump_rasterizer_state()
[all …]
/third_party/vk-gl-cts/android/cts/main/vk-master-2022-03-01/shader-object/
Dmisc.txt129 dEQP-VK.shader_object.misc.state.shaders.vert.alphaToOne.disabled
130 dEQP-VK.shader_object.misc.state.shaders.vert.alphaToOne.enabled
131 dEQP-VK.shader_object.misc.state.shaders.vert.depth.none
132 dEQP-VK.shader_object.misc.state.shaders.vert.depth.bounds_disabled
133 dEQP-VK.shader_object.misc.state.shaders.vert.depth.bounds_enabled
134 dEQP-VK.shader_object.misc.state.shaders.vert.depth.clamp
135 dEQP-VK.shader_object.misc.state.shaders.vert.depth.clip
136 dEQP-VK.shader_object.misc.state.shaders.vert.depth.clip_control
137 dEQP-VK.shader_object.misc.state.shaders.vert.depth.bias
138 dEQP-VK.shader_object.misc.state.shaders.vert.discard_rectangles.disabled
[all …]
/third_party/vk-gl-cts/android/cts/main/vk-master-2024-03-01/shader-object/
Dmisc.txt129 dEQP-VK.shader_object.misc.state.pipeline.mesh_frag.alphaToOne.disabled
130 dEQP-VK.shader_object.misc.state.pipeline.mesh_frag.alphaToOne.enabled
131 dEQP-VK.shader_object.misc.state.pipeline.mesh_frag.color_blend.disabled
132 dEQP-VK.shader_object.misc.state.pipeline.mesh_frag.color_blend.enabled
133 dEQP-VK.shader_object.misc.state.pipeline.mesh_frag.color_write.disabled
134 dEQP-VK.shader_object.misc.state.pipeline.mesh_frag.color_write.false
135 dEQP-VK.shader_object.misc.state.pipeline.mesh_frag.color_write.true
136 dEQP-VK.shader_object.misc.state.pipeline.mesh_frag.conservative_rasterization.disabled
137 dEQP-VK.shader_object.misc.state.pipeline.mesh_frag.conservative_rasterization.enabled
138 dEQP-VK.shader_object.misc.state.pipeline.mesh_frag.conservative_rasterization.overestimate
[all …]
/third_party/vk-gl-cts/external/vulkancts/mustpass/main/vk-default/shader-object/
Dmisc.txt129 dEQP-VK.shader_object.misc.state.pipeline.mesh_frag.alphaToOne.disabled
130 dEQP-VK.shader_object.misc.state.pipeline.mesh_frag.alphaToOne.enabled
131 dEQP-VK.shader_object.misc.state.pipeline.mesh_frag.color_blend.disabled
132 dEQP-VK.shader_object.misc.state.pipeline.mesh_frag.color_blend.enabled
133 dEQP-VK.shader_object.misc.state.pipeline.mesh_frag.color_write.disabled
134 dEQP-VK.shader_object.misc.state.pipeline.mesh_frag.color_write.false
135 dEQP-VK.shader_object.misc.state.pipeline.mesh_frag.color_write.true
136 dEQP-VK.shader_object.misc.state.pipeline.mesh_frag.conservative_rasterization.disabled
137 dEQP-VK.shader_object.misc.state.pipeline.mesh_frag.conservative_rasterization.enabled
138 dEQP-VK.shader_object.misc.state.pipeline.mesh_frag.conservative_rasterization.overestimate
[all …]
/third_party/alsa-utils/axfer/
Dxfer-libasound.c65 struct libasound_state *state = xfer->private_data; in xfer_libasound_init() local
68 err = snd_output_stdio_attach(&state->log, stderr, 0); in xfer_libasound_init()
72 err = snd_pcm_hw_params_malloc(&state->hw_params); in xfer_libasound_init()
76 return snd_pcm_sw_params_malloc(&state->sw_params); in xfer_libasound_init()
82 struct libasound_state *state = xfer->private_data; in xfer_libasound_parse_opt() local
86 state->node_literal = arg_duplicate_string(optarg, &err); in xfer_libasound_parse_opt()
88 state->nonblock = true; in xfer_libasound_parse_opt()
90 state->mmap = true; in xfer_libasound_parse_opt()
92 state->msec_per_period = arg_parse_decimal_num(optarg, &err); in xfer_libasound_parse_opt()
94 state->msec_per_buffer = arg_parse_decimal_num(optarg, &err); in xfer_libasound_parse_opt()
[all …]

12345678910>>...350