Home
last modified time | relevance | path

Searched refs:state (Results 1 - 25 of 8240) sorted by relevance

12345678910>>...330

/third_party/typescript/tests/baselines/reference/
H A 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);
69 var state = true; global() variable
[all...]
/third_party/skia/third_party/externals/abseil-cpp/absl/debugging/internal/
H A Ddemangle.cc169 // One-off state for demangling that's not subject to backtracking -- either
181 ParseState parse_state; // Backtrackable state copied for most frames.
189 explicit ComplexityGuard(State *state) : state_(state) { in ComplexityGuard() argument
190 ++state->recursion_depth; in ComplexityGuard()
191 ++state->steps; in ComplexityGuard()
256 static void InitState(State *state, const char *mangled, char *out, in InitState() argument
258 state->mangled_begin = mangled; in InitState()
259 state->out = out; in InitState()
260 state in InitState()
272 RemainingInput(State *state) RemainingInput() argument
279 ParseOneCharToken(State *state, const char one_char_token) ParseOneCharToken() argument
292 ParseTwoCharToken(State *state, const char *two_char_token) ParseTwoCharToken() argument
305 ParseCharClass(State *state, const char *char_class) ParseCharClass() argument
321 ParseDigit(State *state, int *digit) ParseDigit() argument
337 OneOrMore(ParseFunc parse_func, State *state) OneOrMore() argument
350 ZeroOrMore(ParseFunc parse_func, State *state) ZeroOrMore() argument
359 Append(State *state, const char *const str, const int length) Append() argument
415 EndsWith(State *state, const char chr) EndsWith() argument
422 MaybeAppendWithLength(State *state, const char *const str, const int length) MaybeAppendWithLength() argument
442 MaybeAppendDecimal(State *state, unsigned int val) MaybeAppendDecimal() argument
467 MaybeAppend(State *state, const char *const str) MaybeAppend() argument
476 EnterNestedName(State *state) EnterNestedName() argument
482 LeaveNestedName(State *state, int16_t prev_value) LeaveNestedName() argument
488 DisableAppend(State *state) DisableAppend() argument
494 RestoreAppend(State *state, bool prev_value) RestoreAppend() argument
500 MaybeIncreaseNestLevel(State *state) MaybeIncreaseNestLevel() argument
507 MaybeAppendSeparator(State *state) MaybeAppendSeparator() argument
514 MaybeCancelLastSeparator(State *state) MaybeCancelLastSeparator() argument
524 IdentifierIsAnonymousNamespace(State *state, int length) IdentifierIsAnonymousNamespace() argument
607 ParseMangledName(State *state) ParseMangledName() argument
616 ParseEncoding(State *state) ParseEncoding() argument
638 ParseName(State *state) ParseName() argument
668 ParseUnscopedName(State *state) ParseUnscopedName() argument
686 ParseRefQualifier(State *state) ParseRefQualifier() argument
694 ParseNestedName(State *state) ParseNestedName() argument
720 ParsePrefix(State *state) ParsePrefix() argument
749 ParseUnqualifiedName(State *state) ParseUnqualifiedName() argument
758 ParseSourceName(State *state) ParseSourceName() argument
775 ParseLocalSourceName(State *state) ParseLocalSourceName() argument
791 ParseUnnamedTypeName(State *state) ParseUnnamedTypeName() argument
830 ParseNumber(State *state, int *number_out) ParseNumber() argument
865 ParseFloatNumber(State *state) ParseFloatNumber() argument
883 ParseSeqId(State *state) ParseSeqId() argument
900 ParseIdentifier(State *state, int length) ParseIdentifier() argument
918 ParseOperatorName(State *state, int *arity) ParseOperatorName() argument
988 ParseSpecialName(State *state) ParseSpecialName() argument
1050 ParseCallOffset(State *state) ParseCallOffset() argument
1070 ParseNVOffset(State *state) ParseNVOffset() argument
1077 ParseVOffset(State *state) ParseVOffset() argument
1096 ParseCtorDtorName(State *state) ParseCtorDtorName() argument
1128 ParseDecltype(State *state) ParseDecltype() argument
1161 ParseType(State *state) ParseType() argument
1238 ParseCVQualifiers(State *state) ParseCVQualifiers() argument
1255 ParseBuiltinType(State *state) ParseBuiltinType() argument
1287 ParseExceptionSpec(State *state) ParseExceptionSpec() argument
1309 ParseFunctionType(State *state) ParseFunctionType() argument
1324 ParseBareFunctionType(State *state) ParseBareFunctionType() argument
1339 ParseClassEnumType(State *state) ParseClassEnumType() argument
1347 ParseArrayType(State *state) ParseArrayType() argument
1366 ParsePointerToMemberType(State *state) ParsePointerToMemberType() argument
1379 ParseTemplateParam(State *state) ParseTemplateParam() argument
1399 ParseTemplateTemplateParam(State *state) ParseTemplateTemplateParam() argument
1408 ParseTemplateArgs(State *state) ParseTemplateArgs() argument
1427 ParseTemplateArg(State *state) ParseTemplateArg() argument
1532 ParseUnresolvedType(State *state) ParseUnresolvedType() argument
1539 ParseSimpleId(State *state) ParseSimpleId() argument
1550 ParseBaseUnresolvedName(State *state) ParseBaseUnresolvedName() argument
1580 ParseUnresolvedName(State *state) ParseUnresolvedName() argument
1636 ParseExpression(State *state) ParseExpression() argument
1769 ParseExprPrimary(State *state) ParseExprPrimary() argument
1802 ParseExprCastValue(State *state) ParseExprCastValue() argument
1831 ParseLocalNameSuffix(State *state) ParseLocalNameSuffix() argument
1850 ParseLocalName(State *state) ParseLocalName() argument
1863 ParseDiscriminator(State *state) ParseDiscriminator() argument
1885 ParseSubstitution(State *state, bool accept_std) ParseSubstitution() argument
1923 ParseTopLevelMangledName(State *state) ParseTopLevelMangledName() argument
1945 Overflowed(const State *state) Overflowed() argument
1951 State state; Demangle() local
[all...]
/third_party/libwebsockets/win32port/zlib/
H A 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
135 struct inflate_state FAR *state; global() local
175 struct inflate_state FAR *state; global() local
214 struct inflate_state FAR *state; global() local
307 struct inflate_state state; makefixed() local
362 struct inflate_state FAR *state; global() local
593 struct inflate_state FAR *state; global() local
[all...]
H A Dgzread.c18 state->fd, and update state->eof, state->err, and state->msg as appropriate.
21 local int gz_load(state, buf, len, have) in gz_load()
22 gz_statep state; in gz_load()
31 ret = read(state->fd, buf + *have, len - *have);
37 gz_error(state, Z_ERRNO, zstrerror());
41 state->eof = 1;
50 local int gz_avail(state) in gz_avail()
368 gz_statep state; global() local
458 gz_statep state; global() local
486 gz_statep state; global() local
547 gz_statep state; global() local
606 gz_statep state; global() local
631 gz_statep state; global() local
[all...]
H A Dinfback.c19 local void fixedtables OF((struct inflate_state FAR *state));
35 struct inflate_state FAR *state; local
49 state = (struct inflate_state FAR *)ZALLOC(strm, 1,
51 if (state == Z_NULL) return Z_MEM_ERROR;
53 strm->state = (struct internal_state FAR *)state;
54 state->dmax = 32768U;
55 state->wbits = windowBits;
56 state->wsize = 1U << windowBits;
57 state
248 struct inflate_state FAR *state; global() local
[all...]
H A Dgzwrite.c13 /* Initialize state for writing a gzip file. Mark initialization by setting
14 state->size to non-zero. Return -1 on failure or 0 on success. */
15 local int gz_init(state) in gz_init()
16 gz_statep state; in gz_init()
19 z_streamp strm = &(state->strm);
22 state->in = malloc(state->want);
23 state->out = malloc(state->want);
24 if (state
150 gz_statep state; global() local
226 gz_statep state; global() local
284 gz_statep state; gzprintf() local
360 gz_statep state; global() local
430 gz_statep state; global() local
463 gz_statep state; global() local
504 gz_statep state; global() local
[all...]
/third_party/node/deps/v8/third_party/zlib/
H A Dgzread.c18 state->fd, and update state->eof, state->err, and state->msg as appropriate.
21 local int gz_load(state, buf, len, have) in gz_load()
22 gz_statep state; in gz_load()
35 ret = read(state->fd, buf + *have, get);
41 gz_error(state, Z_ERRNO, zstrerror());
45 state->eof = 1;
56 local int gz_avail(state) in gz_avail()
380 gz_statep state; global() local
418 gz_statep state; global() local
455 gz_statep state; global() local
489 gz_statep state; global() local
553 gz_statep state; global() local
612 gz_statep state; global() local
633 gz_statep state; global() local
[all...]
H A Dinfback.c19 local void fixedtables OF((struct inflate_state FAR *state));
35 struct inflate_state FAR *state; local
58 state = (struct inflate_state FAR *)ZALLOC(strm, 1,
60 if (state == Z_NULL) return Z_MEM_ERROR;
62 strm->state = (struct internal_state FAR *)state;
63 state->dmax = 32768U;
64 state->wbits = (uInt)windowBits;
65 state->wsize = 1U << windowBits;
66 state
257 struct inflate_state FAR *state; global() local
[all...]
H A Dgzwrite.c14 /* Initialize state for writing a gzip file. Mark initialization by setting
15 state->size to non-zero. Return -1 on a memory allocation failure, or 0 on
17 local int gz_init(state) in gz_init()
18 gz_statep state; in gz_init()
21 z_streamp strm = &(state->strm);
24 state->in = (unsigned char *)malloc(state->want << 1);
25 if (state->in == NULL) {
26 gz_error(state, Z_MEM_ERROR, "out of memory");
30 /* only need output buffer and deflate state i
251 gz_statep state; global() local
281 gz_statep state; global() local
310 gz_statep state; global() local
357 gz_statep state; global() local
387 gz_statep state; gzvprintf() local
477 gz_statep state; global() local
560 gz_statep state; global() local
593 gz_statep state; global() local
634 gz_statep state; global() local
[all...]
/third_party/skia/third_party/externals/zlib/
H A Dgzread.c18 state->fd, and update state->eof, state->err, and state->msg as appropriate.
21 local int gz_load(state, buf, len, have) in gz_load()
22 gz_statep state; in gz_load()
35 ret = read(state->fd, buf + *have, get);
41 gz_error(state, Z_ERRNO, zstrerror());
45 state->eof = 1;
56 local int gz_avail(state) in gz_avail()
380 gz_statep state; global() local
418 gz_statep state; global() local
456 gz_statep state; global() local
491 gz_statep state; global() local
555 gz_statep state; global() local
614 gz_statep state; global() local
635 gz_statep state; global() local
[all...]
H A Dinfback.c19 local void fixedtables OF((struct inflate_state FAR *state));
35 struct inflate_state FAR *state; local
58 state = (struct inflate_state FAR *)ZALLOC(strm, 1,
60 if (state == Z_NULL) return Z_MEM_ERROR;
62 strm->state = (struct internal_state FAR *)state;
63 state->dmax = 32768U;
64 state->wbits = (uInt)windowBits;
65 state->wsize = 1U << windowBits;
66 state
257 struct inflate_state FAR *state; global() local
[all...]
H A Dgzwrite.c14 /* Initialize state for writing a gzip file. Mark initialization by setting
15 state->size to non-zero. Return -1 on a memory allocation failure, or 0 on
17 local int gz_init(state) in gz_init()
18 gz_statep state; in gz_init()
21 z_streamp strm = &(state->strm);
24 state->in = (unsigned char *)malloc(state->want << 1);
25 if (state->in == NULL) {
26 gz_error(state, Z_MEM_ERROR, "out of memory");
30 /* only need output buffer and deflate state i
251 gz_statep state; global() local
281 gz_statep state; global() local
310 gz_statep state; global() local
358 gz_statep state; global() local
384 gz_statep state; gzvprintf() local
474 gz_statep state; global() local
557 gz_statep state; global() local
590 gz_statep state; global() local
631 gz_statep state; global() local
[all...]
/third_party/zlib/
H A Dgzread.c11 state->fd, and update state->eof, state->err, and state->msg as appropriate.
14 local int gz_load(gz_statep state, unsigned char *buf, unsigned len, in gz_load() argument
27 ret = read(state->fd, buf + *have, get); in gz_load()
35 gz_error(state, Z_ERRNO, zstrerror()); in gz_load()
40 state->eof = 1; in gz_load()
52 local int gz_avail(gz_statep state) in gz_avail() argument
55 z_streamp strm = &(state in gz_avail()
90 gz_look(gz_statep state) gz_look() argument
175 gz_decomp(gz_statep state) gz_decomp() argument
230 gz_fetch(gz_statep state) gz_fetch() argument
267 gz_skip(gz_statep state, z_off64_t len) gz_skip() argument
304 gz_read(gz_statep state, voidp buf, z_size_t len) gz_read() argument
398 gz_statep state; gzread() local
438 gz_statep state; gzfread() local
474 gz_statep state; gzgetc() local
509 gz_statep state; gzungetc() local
585 gz_statep state; gzgets() local
655 gz_statep state; gzdirect() local
679 gz_statep state; gzclose_r() local
[all...]
H A Dgzwrite.c10 /* Initialize state for writing a gzip file. Mark initialization by setting
11 state->size to non-zero. Return -1 on a memory allocation failure, or 0 on
13 local int gz_init(gz_statep state) in gz_init() argument
16 z_streamp strm = &(state->strm); in gz_init()
19 state->in = (unsigned char *)malloc(state->want << 1); in gz_init()
20 if (state->in == NULL) { in gz_init()
21 gz_error(state, Z_MEM_ERROR, "out of memory"); in gz_init()
25 /* only need output buffer and deflate state if compressing */ in gz_init()
26 if (!state in gz_init()
68 gz_comp(gz_statep state, int flush) gz_comp() argument
147 gz_zero(gz_statep state, z_off64_t len) gz_zero() argument
178 gz_write(gz_statep state, voidpc buf, z_size_t len) gz_write() argument
244 gz_statep state; gzwrite() local
271 gz_statep state; gzfwrite() local
297 gz_statep state; gzputc() local
341 gz_statep state; gzputs() local
370 gz_statep state; gzvprintf() local
456 gz_statep state; gzprintf() local
536 gz_statep state; gzflush() local
565 gz_statep state; gzsetparams() local
604 gz_statep state; gzclose_w() local
[all...]
H A Dinfback.c28 struct inflate_state FAR *state; in inflateBackInit_() local
51 state = (struct inflate_state FAR *)ZALLOC(strm, 1, in inflateBackInit_()
53 if (state == Z_NULL) return Z_MEM_ERROR; in inflateBackInit_()
55 strm->state = (struct internal_state FAR *)state; in inflateBackInit_()
56 state->dmax = 32768U; in inflateBackInit_()
57 state->wbits = (uInt)windowBits; in inflateBackInit_()
58 state->wsize = 1U << windowBits; in inflateBackInit_()
59 state->window = window; in inflateBackInit_()
60 state in inflateBackInit_()
76 fixedtables(struct inflate_state FAR *state) fixedtables() argument
244 struct inflate_state FAR *state; inflateBack() local
[all...]
/third_party/node/deps/zlib/
H A Dgzread.c9 state->fd, and update state->eof, state->err, and state->msg as appropriate.
12 local int gz_load(gz_statep state, unsigned char *buf, unsigned len, in gz_load() argument
22 ret = read(state->fd, buf + *have, get); in gz_load()
28 gz_error(state, Z_ERRNO, zstrerror()); in gz_load()
32 state->eof = 1; in gz_load()
43 local int gz_avail(gz_statep state) { in gz_avail() argument
45 z_streamp strm = &(state in gz_avail()
76 gz_look(gz_statep state) gz_look() argument
156 gz_decomp(gz_statep state) gz_decomp() argument
208 gz_fetch(gz_statep state) gz_fetch() argument
236 gz_skip(gz_statep state, z_off64_t len) gz_skip() argument
268 gz_read(gz_statep state, voidp buf, z_size_t len) gz_read() argument
346 gz_statep state; gzread() local
379 gz_statep state; gzfread() local
414 gz_statep state; gzgetc() local
443 gz_statep state; gzungetc() local
503 gz_statep state; gzgets() local
560 gz_statep state; gzdirect() local
579 gz_statep state; gzclose_r() local
[all...]
H A Dgzwrite.c8 /* Initialize state for writing a gzip file. Mark initialization by setting
9 state->size to non-zero. Return -1 on a memory allocation failure, or 0 on
11 local int gz_init(gz_statep state) { in gz_init() argument
13 z_streamp strm = &(state->strm); in gz_init()
16 state->in = (unsigned char *)malloc(state->want << 1); in gz_init()
17 if (state->in == NULL) { in gz_init()
18 gz_error(state, Z_MEM_ERROR, "out of memory"); in gz_init()
22 /* only need output buffer and deflate state if compressing */ in gz_init()
23 if (!state in gz_init()
65 gz_comp(gz_statep state, int flush) gz_comp() argument
143 gz_zero(gz_statep state, z_off64_t len) gz_zero() argument
173 gz_write(gz_statep state, voidpc buf, z_size_t len) gz_write() argument
238 gz_statep state; gzwrite() local
264 gz_statep state; gzfwrite() local
290 gz_statep state; gzputc() local
334 gz_statep state; gzputs() local
363 gz_statep state; gzvprintf() local
449 gz_statep state; gzprintf() local
529 gz_statep state; gzflush() local
558 gz_statep state; gzsetparams() local
597 gz_statep state; gzclose_w() local
[all...]
H A Dinfback.c28 struct inflate_state FAR *state; in inflateBackInit_() local
51 state = (struct inflate_state FAR *)ZALLOC(strm, 1, in inflateBackInit_()
53 if (state == Z_NULL) return Z_MEM_ERROR; in inflateBackInit_()
55 strm->state = (struct internal_state FAR *)state; in inflateBackInit_()
56 state->dmax = 32768U; in inflateBackInit_()
57 state->wbits = (uInt)windowBits; in inflateBackInit_()
58 state->wsize = 1U << windowBits; in inflateBackInit_()
59 state->window = window; in inflateBackInit_()
60 state in inflateBackInit_()
76 fixedtables(struct inflate_state FAR *state) fixedtables() argument
244 struct inflate_state FAR *state; inflateBack() local
[all...]
/third_party/alsa-utils/axfer/
H A 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 in xfer_libasound_parse_opt()
133 struct libasound_state *state = xfer->private_data; xfer_libasound_validate_opts() local
206 set_access_hw_param(struct libasound_state *state) set_access_hw_param() argument
229 disable_period_wakeup(struct libasound_state *state) disable_period_wakeup() argument
262 struct libasound_state *state = xfer->private_data; open_handle() local
311 prepare_waiter(struct libasound_state *state) prepare_waiter() argument
343 xfer_libasound_wait_event(struct libasound_state *state, int timeout_msec, unsigned short *revents) xfer_libasound_wait_event() argument
378 configure_hw_params(struct libasound_state *state, snd_pcm_format_t format, unsigned int samples_per_frame, unsigned int frames_per_second, unsigned int msec_per_period, unsigned int msec_per_buffer, snd_pcm_uframes_t frames_per_period, snd_pcm_uframes_t frames_per_buffer) configure_hw_params() argument
567 configure_sw_params(struct libasound_state *state, unsigned int frames_per_second, unsigned int frames_per_buffer, unsigned int msec_for_avail_min, unsigned int msec_for_start_threshold, unsigned int msec_for_stop_threshold) configure_sw_params() argument
649 struct libasound_state *state = xfer->private_data; xfer_libasound_pre_process() local
763 struct libasound_state *state = xfer->private_data; xfer_libasound_process_frames() local
794 struct libasound_state *state = xfer->private_data; xfer_libasound_pause() local
821 struct libasound_state *state = xfer->private_data; xfer_libasound_post_process() local
869 struct libasound_state *state = xfer->private_data; xfer_libasound_destroy() local
[all...]
/third_party/skia/third_party/externals/freetype/src/lzw/
H A Dftzopen.c29 ft_lzwstate_refill( FT_LzwState state ) in ft_lzwstate_refill()
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 in ft_lzwstate_refill()
213 ft_lzwstate_init( FT_LzwState state, FT_Stream source ) ft_lzwstate_init() argument
[all...]
/third_party/protobuf/csharp/src/Google.Protobuf/
H A DParsingPrimitives.cs63 public static int ParseLength(ref ReadOnlySpan<byte> buffer, ref ParserInternalState state) in ParseLength() argument
65 return (int)ParseRawVarint32(ref buffer, ref state); in ParseLength()
72 public static uint ParseTag(ref ReadOnlySpan<byte> buffer, ref ParserInternalState state) in ParseTag() argument
77 if (state.hasNextTag) in ParseTag()
79 state.lastTag = state.nextTag; in ParseTag()
80 state.hasNextTag = false; in ParseTag()
81 return state.lastTag; in ParseTag()
86 if (state.bufferPos + 2 <= state in ParseTag()
132 MaybeConsumeTag(ref ReadOnlySpan<byte> buffer, ref ParserInternalState state, uint tag) MaybeConsumeTag() argument
147 PeekTag(ref ReadOnlySpan<byte> buffer, ref ParserInternalState state) PeekTag() argument
164 ParseRawVarint64(ref ReadOnlySpan<byte> buffer, ref ParserInternalState state) ParseRawVarint64() argument
193 ParseRawVarint64SlowPath(ref ReadOnlySpan<byte> buffer, ref ParserInternalState state) ParseRawVarint64SlowPath() argument
218 ParseRawVarint32(ref ReadOnlySpan<byte> buffer, ref ParserInternalState state) ParseRawVarint32() argument
274 ParseRawVarint32SlowPath(ref ReadOnlySpan<byte> buffer, ref ParserInternalState state) ParseRawVarint32SlowPath() argument
325 ParseRawLittleEndian32(ref ReadOnlySpan<byte> buffer, ref ParserInternalState state) ParseRawLittleEndian32() argument
340 ParseRawLittleEndian32SlowPath(ref ReadOnlySpan<byte> buffer, ref ParserInternalState state) ParseRawLittleEndian32SlowPath() argument
352 ParseRawLittleEndian64(ref ReadOnlySpan<byte> buffer, ref ParserInternalState state) ParseRawLittleEndian64() argument
364 ParseRawLittleEndian64SlowPath(ref ReadOnlySpan<byte> buffer, ref ParserInternalState state) ParseRawLittleEndian64SlowPath() argument
381 ParseDouble(ref ReadOnlySpan<byte> buffer, ref ParserInternalState state) ParseDouble() argument
397 ParseFloat(ref ReadOnlySpan<byte> buffer, ref ParserInternalState state) ParseFloat() argument
410 ParseFloatSlow(ref ReadOnlySpan<byte> buffer, ref ParserInternalState state) ParseFloatSlow() argument
434 ReadRawBytes(ref ReadOnlySpan<byte> buffer, ref ParserInternalState state, int size) ReadRawBytes() argument
453 ReadRawBytesSlow(ref ReadOnlySpan<byte> buffer, ref ParserInternalState state, int size) ReadRawBytesSlow() argument
518 SkipRawBytes(ref ReadOnlySpan<byte> buffer, ref ParserInternalState state, int size) SkipRawBytes() argument
558 ReadString(ref ReadOnlySpan<byte> buffer, ref ParserInternalState state) ReadString() argument
568 ReadBytes(ref ReadOnlySpan<byte> buffer, ref ParserInternalState state) ReadBytes() argument
581 ReadRawString(ref ReadOnlySpan<byte> buffer, ref ParserInternalState state, int length) ReadRawString() argument
620 ReadStringSlow(ref ReadOnlySpan<byte> buffer, ref ParserInternalState state, int length) ReadStringSlow() argument
673 ValidateCurrentLimit(ref ReadOnlySpan<byte> buffer, ref ParserInternalState state, int size) ValidateCurrentLimit() argument
685 ReadRawByte(ref ReadOnlySpan<byte> buffer, ref ParserInternalState state) ReadRawByte() argument
769 IsDataAvailable(ref ParserInternalState state, int size) IsDataAvailable() argument
786 IsDataAvailableInSource(ref ParserInternalState state, int size) IsDataAvailableInSource() argument
797 ReadRawBytesIntoSpan(ref ReadOnlySpan<byte> buffer, ref ParserInternalState state, int length, Span<byte> byteSpan) ReadRawBytesIntoSpan() argument
[all...]
/third_party/skia/third_party/externals/dawn/src/tests/unittests/validation/
H A DVertexStateValidationTests.cpp23 const utils::ComboVertexState& state, in CreatePipeline()
34 descriptor.vertex.bufferCount = state.vertexBufferCount; in CreatePipeline()
35 descriptor.vertex.buffers = &state.cVertexBuffers[0]; in CreatePipeline()
55 utils::ComboVertexState state; in TEST_F() local
56 CreatePipeline(true, state, kDummyVertexShader); in TEST_F()
61 utils::ComboVertexState state; in TEST_F() local
63 state.vertexBufferCount = 1; in TEST_F()
64 state.cVertexBuffers[0].arrayStride = 0; in TEST_F()
65 state.cVertexBuffers[0].attributeCount = 0; in TEST_F()
66 state in TEST_F()
22 CreatePipeline(bool success, const utils::ComboVertexState& state, const char* vertexSource) CreatePipeline() argument
90 utils::ComboVertexState state; TEST_F() local
130 utils::ComboVertexState state; TEST_F() local
145 utils::ComboVertexState state; TEST_F() local
166 utils::ComboVertexState state; TEST_F() local
183 utils::ComboVertexState state; TEST_F() local
200 utils::ComboVertexState state; TEST_F() local
214 utils::ComboVertexState state; TEST_F() local
228 utils::ComboVertexState state; TEST_F() local
244 utils::ComboVertexState state; TEST_F() local
269 utils::ComboVertexState state; TEST_F() local
283 utils::ComboVertexState state; TEST_F() local
297 utils::ComboVertexState state; TEST_F() local
336 utils::ComboVertexState state; TEST_F() local
345 utils::ComboVertexState state; TEST_F() local
[all...]
/third_party/mesa3d/src/gallium/auxiliary/driver_trace/
H A 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_bac in trace_dump_rasterizer_state()
175 trace_dump_poly_stipple(const struct pipe_poly_stipple *state) trace_dump_poly_stipple() argument
197 trace_dump_viewport_state(const struct pipe_viewport_state *state) trace_dump_viewport_state() argument
216 trace_dump_scissor_state(const struct pipe_scissor_state *state) trace_dump_scissor_state() argument
237 trace_dump_clip_state(const struct pipe_clip_state *state) trace_dump_clip_state() argument
265 trace_dump_shader_state(const struct pipe_shader_state *state) trace_dump_shader_state() argument
327 trace_dump_compute_state(const struct pipe_compute_state *state) trace_dump_compute_state() argument
359 trace_dump_depth_stencil_alpha_state(const struct pipe_depth_stencil_alpha_state *state) trace_dump_depth_stencil_alpha_state() argument
402 trace_dump_rt_blend_state(const struct pipe_rt_blend_state *state) trace_dump_rt_blend_state() argument
421 trace_dump_blend_state(const struct pipe_blend_state *state) trace_dump_blend_state() argument
455 trace_dump_blend_color(const struct pipe_blend_color *state) trace_dump_blend_color() argument
472 trace_dump_stencil_ref(const struct pipe_stencil_ref *state) trace_dump_stencil_ref() argument
489 trace_dump_framebuffer_state(const struct pipe_framebuffer_state *state) trace_dump_framebuffer_state() argument
507 trace_dump_framebuffer_state_deep(const struct pipe_framebuffer_state *state) trace_dump_framebuffer_state_deep() argument
526 trace_dump_sampler_state(const struct pipe_sampler_state *state) trace_dump_sampler_state() argument
559 trace_dump_sampler_view_template(const struct pipe_sampler_view *state) trace_dump_sampler_view_template() argument
616 trace_dump_surface_template(const struct pipe_surface *state, enum pipe_texture_target target) trace_dump_surface_template() argument
663 trace_dump_transfer(const struct pipe_transfer *state) trace_dump_transfer() argument
692 trace_dump_vertex_buffer(const struct pipe_vertex_buffer *state) trace_dump_vertex_buffer() argument
713 trace_dump_vertex_element(const struct pipe_vertex_element *state) trace_dump_vertex_element() argument
739 trace_dump_constant_buffer(const struct pipe_constant_buffer *state) trace_dump_constant_buffer() argument
757 trace_dump_shader_buffer(const struct pipe_shader_buffer *state) trace_dump_shader_buffer() argument
775 trace_dump_image_view(const struct pipe_image_view *state) trace_dump_image_view() argument
815 trace_dump_memory_info(const struct pipe_memory_info *state) trace_dump_memory_info() argument
835 trace_dump_draw_info(const struct pipe_draw_info *state) trace_dump_draw_info() argument
863 trace_dump_draw_vertex_state_info(struct pipe_draw_vertex_state_info state) trace_dump_draw_vertex_state_info() argument
874 trace_dump_draw_start_count(const struct pipe_draw_start_count_bias *state) trace_dump_draw_start_count() argument
886 trace_dump_draw_indirect_info(const struct pipe_draw_indirect_info *state) trace_dump_draw_indirect_info() argument
1070 trace_dump_grid_info(const struct pipe_grid_info *state) trace_dump_grid_info() argument
[all...]
/third_party/musl/Benchmark/musl/
H A 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()
110 Bm_function_Fopen_rplus(benchmark::State &state) Bm_function_Fopen_rplus() argument
126 Bm_function_Fopen_wplus(benchmark::State &state) Bm_function_Fopen_wplus() argument
142 Bm_function_Fopen_append_plus(benchmark::State &state) Bm_function_Fopen_append_plus() argument
158 Bm_function_Fopen_rb(benchmark::State &state) Bm_function_Fopen_rb() argument
174 Bm_function_Fopen_wb(benchmark::State &state) Bm_function_Fopen_wb() argument
190 Bm_function_Fopen_ab(benchmark::State &state) Bm_function_Fopen_ab() argument
206 Bm_function_Fopen_rb_plus(benchmark::State &state) Bm_function_Fopen_rb_plus() argument
222 Bm_function_Fopen_wb_plus(benchmark::State &state) Bm_function_Fopen_wb_plus() argument
238 Bm_function_Fopen_ab_plus(benchmark::State &state) Bm_function_Fopen_ab_plus() argument
254 Bm_function_Fclose(benchmark::State &state) Bm_function_Fclose() argument
270 Bm_function_Fdopen(benchmark::State &state) Bm_function_Fdopen() argument
287 Bm_function_Vfprintf_str(benchmark::State &state) Bm_function_Vfprintf_str() argument
300 Bm_function_Vfprintf_int(benchmark::State &state) Bm_function_Vfprintf_int() argument
313 Bm_function_Vfprintf_float(benchmark::State &state) Bm_function_Vfprintf_float() argument
326 Bm_function_Vfprintf_longdouble(benchmark::State &state) Bm_function_Vfprintf_longdouble() argument
339 Bm_function_Vfprintf_unsigned(benchmark::State &state) Bm_function_Vfprintf_unsigned() argument
352 Bm_function_Vfprintf_long(benchmark::State &state) Bm_function_Vfprintf_long() argument
365 Bm_function_Vfprintf_short(benchmark::State &state) Bm_function_Vfprintf_short() argument
378 Bm_function_Vfprintf_char(benchmark::State &state) Bm_function_Vfprintf_char() argument
392 Bm_function_Fprintf_str(benchmark::State &state) Bm_function_Fprintf_str() argument
405 Bm_function_Fprintf_int(benchmark::State &state) Bm_function_Fprintf_int() argument
418 Bm_function_Fprintf_float(benchmark::State &state) Bm_function_Fprintf_float() argument
431 Bm_function_Fprintf_longdouble(benchmark::State &state) Bm_function_Fprintf_longdouble() argument
444 Bm_function_Fprintf_unsigned(benchmark::State &state) Bm_function_Fprintf_unsigned() argument
457 Bm_function_Fprintf_long(benchmark::State &state) Bm_function_Fprintf_long() argument
470 Bm_function_Fprintf_short(benchmark::State &state) Bm_function_Fprintf_short() argument
483 Bm_function_Fprintf_char(benchmark::State &state) Bm_function_Fprintf_char() argument
497 Bm_function_Vsprintf_str(benchmark::State &state) Bm_function_Vsprintf_str() argument
508 Bm_function_Vsprintf_int(benchmark::State &state) Bm_function_Vsprintf_int() argument
519 Bm_function_Vsprintf_float(benchmark::State &state) Bm_function_Vsprintf_float() argument
530 Bm_function_Vsprintf_longdouble(benchmark::State &state) Bm_function_Vsprintf_longdouble() argument
541 Bm_function_Vsprintf_unsigned(benchmark::State &state) Bm_function_Vsprintf_unsigned() argument
552 Bm_function_Vsprintf_long(benchmark::State &state) Bm_function_Vsprintf_long() argument
563 Bm_function_Vsprintf_short(benchmark::State &state) Bm_function_Vsprintf_short() argument
574 Bm_function_Vsprintf_char(benchmark::State &state) Bm_function_Vsprintf_char() argument
586 Bm_function_Vsnprintf_str(benchmark::State &state) Bm_function_Vsnprintf_str() argument
597 Bm_function_Vsnprintf_int(benchmark::State &state) Bm_function_Vsnprintf_int() argument
608 Bm_function_Vsnprintf_float(benchmark::State &state) Bm_function_Vsnprintf_float() argument
619 Bm_function_Vsnprintf_longdouble(benchmark::State &state) Bm_function_Vsnprintf_longdouble() argument
630 Bm_function_Vsnprintf_unsigned(benchmark::State &state) Bm_function_Vsnprintf_unsigned() argument
641 Bm_function_Vsnprintf_long(benchmark::State &state) Bm_function_Vsnprintf_long() argument
652 Bm_function_Vsnprintf_short(benchmark::State &state) Bm_function_Vsnprintf_short() argument
663 Bm_function_Vsnprintf_char(benchmark::State &state) Bm_function_Vsnprintf_char() argument
675 Bm_function_Flock_Funlockfile(benchmark::State &state) Bm_function_Flock_Funlockfile() argument
689 Bm_function_Flock(benchmark::State &state) Bm_function_Flock() argument
703 Bm_function_Rename(benchmark::State &state) Bm_function_Rename() argument
715 Bm_function_Fseek_set(benchmark::State &state) Bm_function_Fseek_set() argument
728 Bm_function_Fseeko_set(benchmark::State &state) Bm_function_Fseeko_set() argument
742 Bm_function_Fseek_cur(benchmark::State &state) Bm_function_Fseek_cur() argument
755 Bm_function_Fseek_end(benchmark::State &state) Bm_function_Fseek_end() argument
768 Bm_function_Fseeko_cur(benchmark::State &state) Bm_function_Fseeko_cur() argument
781 Bm_function_Fseeko_end(benchmark::State &state) Bm_function_Fseeko_end() argument
794 Bm_function_Sscanf_int(benchmark::State &state) Bm_function_Sscanf_int() argument
803 Bm_function_Sscanf_double(benchmark::State &state) Bm_function_Sscanf_double() argument
813 Bm_function_Sscanf_char(benchmark::State &state) Bm_function_Sscanf_char() argument
822 Bm_function_Sscanf_char1(benchmark::State &state) Bm_function_Sscanf_char1() argument
831 Bm_function_Sscanf_str(benchmark::State &state) Bm_function_Sscanf_str() argument
840 Bm_function_Sscanf_str1(benchmark::State &state) Bm_function_Sscanf_str1() argument
869 Bm_function_Vfscanf_str(benchmark::State &state) Bm_function_Vfscanf_str() argument
887 Bm_function_Vfscanf_int(benchmark::State &state) Bm_function_Vfscanf_int() argument
906 Bm_function_Vfscanf_double(benchmark::State &state) Bm_function_Vfscanf_double() argument
925 Bm_function_Vfscanf_float(benchmark::State &state) Bm_function_Vfscanf_float() argument
944 Bm_function_Vfscanf_char(benchmark::State &state) Bm_function_Vfscanf_char() argument
962 Bm_function_Vfscanf_iformat(benchmark::State &state) Bm_function_Vfscanf_iformat() argument
980 Bm_function_Vfscanf_oformat(benchmark::State &state) Bm_function_Vfscanf_oformat() argument
999 Bm_function_Vfscanf_uformat(benchmark::State &state) Bm_function_Vfscanf_uformat() argument
1018 Bm_function_Vfscanf_xformat(benchmark::State &state) Bm_function_Vfscanf_xformat() argument
1036 Bm_function_Vfscanf_Xformat(benchmark::State &state) Bm_function_Vfscanf_Xformat() argument
1054 Bm_function_Vfscanf_eformat(benchmark::State &state) Bm_function_Vfscanf_eformat() argument
1073 Bm_function_Vfscanf_gformat(benchmark::State &state) Bm_function_Vfscanf_gformat() argument
1092 Bm_function_Vfscanf_ldformat(benchmark::State &state) Bm_function_Vfscanf_ldformat() argument
1110 Bm_function_Vfscanf_luformat(benchmark::State &state) Bm_function_Vfscanf_luformat() argument
1128 Bm_function_Vfscanf_lxformat(benchmark::State &state) Bm_function_Vfscanf_lxformat() argument
1146 Bm_function_Vfscanf_loformat(benchmark::State &state) Bm_function_Vfscanf_loformat() argument
1164 Bm_function_Vfscanf_hdformat(benchmark::State &state) Bm_function_Vfscanf_hdformat() argument
1182 Bm_function_Vfscanf_huformat(benchmark::State &state) Bm_function_Vfscanf_huformat() argument
1200 Bm_function_Vfscanf_hhuformat(benchmark::State &state) Bm_function_Vfscanf_hhuformat() argument
1218 Bm_function_Vfscanf_hhxformat(benchmark::State &state) Bm_function_Vfscanf_hhxformat() argument
1236 Bm_function_Vfscanf_llxformat(benchmark::State &state) Bm_function_Vfscanf_llxformat() argument
1254 Bm_function_Vfscanf_lldformat(benchmark::State &state) Bm_function_Vfscanf_lldformat() argument
1272 Bm_function_Vfscanf_lluformat(benchmark::State &state) Bm_function_Vfscanf_lluformat() argument
1290 Bm_function_Fileno_unlocked(benchmark::State &state) Bm_function_Fileno_unlocked() argument
1304 Bm_function_Fseek_fflush(benchmark::State &state) Bm_function_Fseek_fflush() argument
1317 Bm_function_Sscanf_vsscanf_int(benchmark::State &state) Bm_function_Sscanf_vsscanf_int() argument
1328 Bm_function_Feof(benchmark::State &state) Bm_function_Feof() argument
1343 Bm_function_Ungetc(benchmark::State &state) Bm_function_Ungetc() argument
1357 Bm_function_Setbuf(benchmark::State &state) Bm_function_Setbuf() argument
1372 Bm_function_Getchar(benchmark::State &state) Bm_function_Getchar() argument
1381 Bm_function_Fputc(benchmark::State &state) Bm_function_Fputc() argument
1395 Bm_function_Fputs(benchmark::State &state) Bm_function_Fputs() argument
1411 Bm_function_Ftell(benchmark::State &state) Bm_function_Ftell() argument
1425 Bm_function_fread_unlocked(benchmark::State& state) Bm_function_fread_unlocked() argument
1440 Bm_function_fgets_unlocked(benchmark::State& state) Bm_function_fgets_unlocked() argument
1457 Bm_function_Renameat(benchmark::State &state) Bm_function_Renameat() argument
1478 BM_function_Snprintf_d4(benchmark::State& state) BM_function_Snprintf_d4() argument
[all...]
/third_party/pulseaudio/src/pulsecore/
H A Dconf-parser.c42 static int normal_assignment(pa_config_parser_state *state) { in normal_assignment() argument
45 pa_assert(state); in normal_assignment()
47 for (item = state->item_table; item->parse; item++) { in normal_assignment()
49 if (item->lvalue && !pa_streq(state->lvalue, item->lvalue)) in normal_assignment()
52 if (item->section && !state->section) in normal_assignment()
55 if (item->section && !pa_streq(state->section, item->section)) in normal_assignment()
58 state->data = item->data; in normal_assignment()
60 return item->parse(state); in normal_assignment()
63 pa_log("[%s:%u] Unknown lvalue '%s' in section '%s'.", state->filename, state in normal_assignment()
69 proplist_assignment(pa_config_parser_state *state) proplist_assignment() argument
82 parse_line(pa_config_parser_state *state) parse_line() argument
167 pa_config_parser_state state; pa_config_parse() local
297 pa_config_parse_int(pa_config_parser_state *state) pa_config_parse_int() argument
314 pa_config_parse_unsigned(pa_config_parser_state *state) pa_config_parse_unsigned() argument
331 pa_config_parse_size(pa_config_parser_state *state) pa_config_parse_size() argument
348 pa_config_parse_bool(pa_config_parser_state *state) pa_config_parse_bool() argument
366 pa_config_parse_not_bool(pa_config_parser_state *state) pa_config_parse_not_bool() argument
384 pa_config_parse_string(pa_config_parser_state *state) pa_config_parse_string() argument
[all...]

Completed in 13 milliseconds

12345678910>>...330