Home
last modified time | relevance | path

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

12345678910>>...725

/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...]
/kernel/linux/linux-5.10/arch/arc/kernel/
H A Ddisasm.c19 * findings in *state
21 void __kprobes disasm_instr(unsigned long addr, struct disasm_state *state, in disasm_instr() argument
32 memset(state, 0, sizeof(struct disasm_state)); in disasm_instr()
48 state->major_opcode = (word1 >> 11) & 0x1F; in disasm_instr()
51 if (state->major_opcode < 0x0B) { in disasm_instr()
54 state->instr_len = 4; in disasm_instr()
56 state->words[0] = (word1 << 16) | word0; in disasm_instr()
58 state->instr_len = 2; in disasm_instr()
59 state->words[0] = word1; in disasm_instr()
63 word1 = *((uint16_t *)(addr + state in disasm_instr()
[all...]
/kernel/linux/linux-6.6/arch/arc/kernel/
H A Ddisasm.c19 * findings in *state
21 void __kprobes disasm_instr(unsigned long addr, struct disasm_state *state, in disasm_instr() argument
32 memset(state, 0, sizeof(struct disasm_state)); in disasm_instr()
48 state->major_opcode = (word1 >> 11) & 0x1F; in disasm_instr()
51 if (state->major_opcode < 0x0B) { in disasm_instr()
54 state->instr_len = 4; in disasm_instr()
56 state->words[0] = (word1 << 16) | word0; in disasm_instr()
58 state->instr_len = 2; in disasm_instr()
59 state->words[0] = word1; in disasm_instr()
63 word1 = *((uint16_t *)(addr + state in disasm_instr()
[all...]
/device/soc/rockchip/rk3588/kernel/drivers/staging/android/fiq_debugger/
H A Dfiq_debugger.c172 void fiq_debugger_enable_wakeup_irq(struct fiq_debugger_state *state) {} in fiq_debugger_enable_wakeup_irq() argument
174 void fiq_debugger_disable_wakeup_irq(struct fiq_debugger_state *state) {} in fiq_debugger_disable_wakeup_irq() argument
177 void fiq_debugger_enable_wakeup_irq(struct fiq_debugger_state *state) in fiq_debugger_enable_wakeup_irq() argument
179 if (state->wakeup_irq < 0) in fiq_debugger_enable_wakeup_irq()
181 enable_irq(state->wakeup_irq); in fiq_debugger_enable_wakeup_irq()
182 if (!state->wakeup_irq_no_set_wake) in fiq_debugger_enable_wakeup_irq()
183 enable_irq_wake(state->wakeup_irq); in fiq_debugger_enable_wakeup_irq()
186 void fiq_debugger_disable_wakeup_irq(struct fiq_debugger_state *state) in fiq_debugger_disable_wakeup_irq() argument
188 if (state->wakeup_irq < 0) in fiq_debugger_disable_wakeup_irq()
190 disable_irq_nosync(state in fiq_debugger_disable_wakeup_irq()
196 fiq_debugger_have_fiq(struct fiq_debugger_state *state) fiq_debugger_have_fiq() argument
201 fiq_debugger_force_irq(struct fiq_debugger_state *state) fiq_debugger_force_irq() argument
218 fiq_debugger_uart_enable(struct fiq_debugger_state *state) fiq_debugger_uart_enable() argument
226 fiq_debugger_uart_disable(struct fiq_debugger_state *state) fiq_debugger_uart_disable() argument
234 fiq_debugger_uart_flush(struct fiq_debugger_state *state) fiq_debugger_uart_flush() argument
240 fiq_debugger_putc(struct fiq_debugger_state *state, char c) fiq_debugger_putc() argument
246 fiq_debugger_puts(struct fiq_debugger_state *state, char *s) fiq_debugger_puts() argument
256 fiq_debugger_prompt(struct fiq_debugger_state *state) fiq_debugger_prompt() argument
262 fiq_debugger_dump_kernel_log(struct fiq_debugger_state *state) fiq_debugger_dump_kernel_log() argument
282 struct fiq_debugger_state *state; fiq_debugger_printf() local
298 struct fiq_debugger_state *state = cookie; fiq_debugger_printf_nfiq() local
315 fiq_debugger_dump_irqs(struct fiq_debugger_state *state) fiq_debugger_dump_irqs() argument
337 fiq_debugger_do_ps(struct fiq_debugger_state *state) fiq_debugger_do_ps() argument
364 fiq_debugger_begin_syslog_dump(struct fiq_debugger_state *state) fiq_debugger_begin_syslog_dump() argument
369 fiq_debugger_end_syslog_dump(struct fiq_debugger_state *state) fiq_debugger_end_syslog_dump() argument
375 fiq_debugger_begin_syslog_dump(struct fiq_debugger_state *state) fiq_debugger_begin_syslog_dump() argument
380 fiq_debugger_end_syslog_dump(struct fiq_debugger_state *state) fiq_debugger_end_syslog_dump() argument
388 fiq_debugger_do_sysrq(struct fiq_debugger_state *state, char rq) fiq_debugger_do_sysrq() argument
401 fiq_debugger_do_kgdb(struct fiq_debugger_state *state) fiq_debugger_do_kgdb() argument
414 fiq_debugger_schedule_work(struct fiq_debugger_state *state, char *cmd) fiq_debugger_schedule_work() argument
434 struct fiq_debugger_state *state; fiq_debugger_work() local
464 fiq_debugger_irq_exec(struct fiq_debugger_state *state, char *cmd) fiq_debugger_irq_exec() argument
533 fiq_debugger_help(struct fiq_debugger_state *state) fiq_debugger_help() argument
573 fiq_debugger_take_affinity(struct fiq_debugger_state *state, int cpu) fiq_debugger_take_affinity() argument
582 fiq_debugger_take_affinity(struct fiq_debugger_state *state, int cpu) fiq_debugger_take_affinity() argument
587 fiq_debugger_switch_cpu(struct fiq_debugger_state *state, int cpu) fiq_debugger_switch_cpu() argument
623 fiq_debugger_fiq_exec(struct fiq_debugger_state *state, const char *cmd, const struct pt_regs *regs, void *svc_sp) fiq_debugger_fiq_exec() argument
721 struct fiq_debugger_state *state = from_timer(state, t, sleep_timer); fiq_debugger_sleep_timer_expired() local
740 fiq_debugger_handle_wakeup(struct fiq_debugger_state *state) fiq_debugger_handle_wakeup() argument
759 struct fiq_debugger_state *state = dev; fiq_debugger_wakeup_irq_handler() local
769 fiq_debugger_handle_console_irq_context(struct fiq_debugger_state *state) fiq_debugger_handle_console_irq_context() argument
786 fiq_debugger_handle_irq_context(struct fiq_debugger_state *state) fiq_debugger_handle_irq_context() argument
805 fiq_debugger_getc(struct fiq_debugger_state *state) fiq_debugger_getc() argument
813 fiq_debugger_cmd_check_back(struct fiq_debugger_state *state, char c) fiq_debugger_cmd_check_back() argument
872 fiq_debugger_cmd_tab(struct fiq_debugger_state *state) fiq_debugger_cmd_tab() argument
912 fiq_debugger_handle_uart_interrupt(struct fiq_debugger_state *state, int this_cpu, const struct pt_regs *regs, void *svc_sp) fiq_debugger_handle_uart_interrupt() argument
1063 struct fiq_debugger_state *state = fiq_debugger_fiq() local
1078 struct fiq_debugger_state *state = state_tf; fiq_debugger_fiq() local
1099 struct fiq_debugger_state *state = dev; fiq_debugger_uart_irq() local
1121 struct fiq_debugger_state *state = dev; fiq_debugger_signal_irq() local
1134 struct fiq_debugger_state *state = fiq_debugger_resume() local
1151 struct fiq_debugger_state *state; fiq_debugger_console_write() local
1189 struct fiq_debugger_state *state = states[line]; fiq_tty_open() local
1204 struct fiq_debugger_state *state = states[line]; fiq_tty_write() local
1233 struct fiq_debugger_state *state = states[line]; fiq_tty_poll_get_char() local
1256 struct fiq_debugger_state *state = states[line]; fiq_tty_poll_put_char() local
1268 struct fiq_debugger_state *state; fiq_tty_proc_show() local
1354 fiq_debugger_tty_init_one(struct fiq_debugger_state *state) fiq_debugger_tty_init_one() argument
1396 struct fiq_debugger_state *state = platform_get_drvdata(pdev); fiq_debugger_dev_suspend() local
1406 struct fiq_debugger_state *state = platform_get_drvdata(pdev); fiq_debugger_dev_resume() local
1417 struct fiq_debugger_state *state; fiq_debugger_probe() local
[all...]
/device/soc/rockchip/common/vendor/drivers/staging/android/fiq_debugger/
H A Dfiq_debugger.c171 static inline void fiq_debugger_enable_wakeup_irq(struct fiq_debugger_state *state) in fiq_debugger_enable_wakeup_irq() argument
174 static inline void fiq_debugger_disable_wakeup_irq(struct fiq_debugger_state *state) in fiq_debugger_disable_wakeup_irq() argument
178 static inline void fiq_debugger_enable_wakeup_irq(struct fiq_debugger_state *state) in fiq_debugger_enable_wakeup_irq() argument
180 if (state->wakeup_irq < 0) { in fiq_debugger_enable_wakeup_irq()
183 enable_irq(state->wakeup_irq); in fiq_debugger_enable_wakeup_irq()
184 if (!state->wakeup_irq_no_set_wake) { in fiq_debugger_enable_wakeup_irq()
185 enable_irq_wake(state->wakeup_irq); in fiq_debugger_enable_wakeup_irq()
188 static inline void fiq_debugger_disable_wakeup_irq(struct fiq_debugger_state *state) in fiq_debugger_disable_wakeup_irq() argument
190 if (state->wakeup_irq < 0) { in fiq_debugger_disable_wakeup_irq()
193 disable_irq_nosync(state in fiq_debugger_disable_wakeup_irq()
200 fiq_debugger_have_fiq(struct fiq_debugger_state *state) fiq_debugger_have_fiq() argument
206 fiq_debugger_force_irq(struct fiq_debugger_state *state) fiq_debugger_force_irq() argument
229 fiq_debugger_uart_enable(struct fiq_debugger_state *state) fiq_debugger_uart_enable() argument
239 fiq_debugger_uart_disable(struct fiq_debugger_state *state) fiq_debugger_uart_disable() argument
249 fiq_debugger_uart_flush(struct fiq_debugger_state *state) fiq_debugger_uart_flush() argument
256 fiq_debugger_putc(struct fiq_debugger_state *state, char c) fiq_debugger_putc() argument
263 fiq_debugger_puts(struct fiq_debugger_state *state, char *s) fiq_debugger_puts() argument
274 fiq_debugger_prompt(struct fiq_debugger_state *state) fiq_debugger_prompt() argument
280 fiq_debugger_dump_kernel_log(struct fiq_debugger_state *state) fiq_debugger_dump_kernel_log() argument
296 struct fiq_debugger_state *state; fiq_debugger_printf() local
311 struct fiq_debugger_state *state = cookie; fiq_debugger_printf_nfiq() local
328 fiq_debugger_dump_irqs(struct fiq_debugger_state *state) fiq_debugger_dump_irqs() argument
349 fiq_debugger_do_ps(struct fiq_debugger_state *state) fiq_debugger_do_ps() argument
377 fiq_debugger_begin_syslog_dump(struct fiq_debugger_state *state) fiq_debugger_begin_syslog_dump() argument
382 fiq_debugger_end_syslog_dump(struct fiq_debugger_state *state) fiq_debugger_end_syslog_dump() argument
388 fiq_debugger_begin_syslog_dump(struct fiq_debugger_state *state) fiq_debugger_begin_syslog_dump() argument
393 fiq_debugger_end_syslog_dump(struct fiq_debugger_state *state) fiq_debugger_end_syslog_dump() argument
401 fiq_debugger_do_sysrq(struct fiq_debugger_state *state, char rq) fiq_debugger_do_sysrq() argument
414 fiq_debugger_do_kgdb(struct fiq_debugger_state *state) fiq_debugger_do_kgdb() argument
427 fiq_debugger_schedule_work(struct fiq_debugger_state *state, char *cmd) fiq_debugger_schedule_work() argument
446 struct fiq_debugger_state *state; fiq_debugger_work() local
477 fiq_debugger_irq_exec(struct fiq_debugger_state *state, char *cmd) fiq_debugger_irq_exec() argument
537 fiq_debugger_help(struct fiq_debugger_state *state) fiq_debugger_help() argument
574 struct fiq_debugger_state *state = info; fiq_debugger_take_affinity() local
589 fiq_debugger_switch_cpu(struct fiq_debugger_state *state, int cpu) fiq_debugger_switch_cpu() argument
623 fiq_debugger_fiq_exec(struct fiq_debugger_state *state, const char *cmd, const struct pt_regs *regs, void *svc_sp) fiq_debugger_fiq_exec() argument
723 struct fiq_debugger_state *state = from_timer(state, t, sleep_timer); fiq_debugger_sleep_timer_expired() local
741 fiq_debugger_handle_wakeup(struct fiq_debugger_state *state) fiq_debugger_handle_wakeup() argument
760 struct fiq_debugger_state *state = dev; fiq_debugger_wakeup_irq_handler() local
770 fiq_debugger_handle_console_irq_context(struct fiq_debugger_state *state) fiq_debugger_handle_console_irq_context() argument
788 fiq_debugger_handle_irq_context(struct fiq_debugger_state *state) fiq_debugger_handle_irq_context() argument
808 fiq_debugger_getc(struct fiq_debugger_state *state) fiq_debugger_getc() argument
817 fiq_debugger_cmd_check_back(struct fiq_debugger_state *state, char c) fiq_debugger_cmd_check_back() argument
874 fiq_debugger_cmd_tab(struct fiq_debugger_state *state) fiq_debugger_cmd_tab() argument
918 fiq_debugger_handle_uart_interrupt(struct fiq_debugger_state *state, int this_cpu, const struct pt_regs *regs, void *svc_sp) fiq_debugger_handle_uart_interrupt() argument
1065 struct fiq_debugger_state *state = container_of(h, struct fiq_debugger_state, handler); fiq_debugger_fiq() local
1079 struct fiq_debugger_state *state = state_tf; fiq_debugger_fiq() local
1101 struct fiq_debugger_state *state = dev; fiq_debugger_uart_irq() local
1122 struct fiq_debugger_state *state = dev; fiq_debugger_signal_irq() local
1136 struct fiq_debugger_state *state = container_of(h, struct fiq_debugger_state, handler); fiq_debugger_resume() local
1152 struct fiq_debugger_state *state; fiq_debugger_console_write() local
1192 struct fiq_debugger_state *state = states[line]; fiq_tty_open() local
1207 struct fiq_debugger_state *state = states[line]; fiq_tty_write() local
1238 struct fiq_debugger_state *state = states[line]; fiq_tty_poll_get_char() local
1262 struct fiq_debugger_state *state = states[line]; fiq_tty_poll_put_char() local
1274 struct fiq_debugger_state *state; fiq_tty_proc_show() local
1359 fiq_debugger_tty_init_one(struct fiq_debugger_state *state) fiq_debugger_tty_init_one() argument
1400 struct fiq_debugger_state *state = platform_get_drvdata(pdev); fiq_debugger_dev_suspend() local
1411 struct fiq_debugger_state *state = platform_get_drvdata(pdev); fiq_debugger_dev_resume() local
1423 struct fiq_debugger_state *state; fiq_debugger_probe() 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...]
/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 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 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...]
/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...]
/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...]
/kernel/linux/linux-5.10/lib/zlib_inflate/
H A Dinflate.c35 struct inflate_state *state; in zlib_inflateReset() local
37 if (strm == NULL || strm->state == NULL) return Z_STREAM_ERROR; in zlib_inflateReset()
38 state = (struct inflate_state *)strm->state; in zlib_inflateReset()
39 strm->total_in = strm->total_out = state->total = 0; in zlib_inflateReset()
42 state->mode = HEAD; in zlib_inflateReset()
43 state->last = 0; in zlib_inflateReset()
44 state->havedict = 0; in zlib_inflateReset()
45 state->dmax = 32768U; in zlib_inflateReset()
46 state in zlib_inflateReset()
61 struct inflate_state *state; zlib_inflateInit2() local
97 zlib_fixedtables(struct inflate_state *state) zlib_fixedtables() argument
122 struct inflate_state *state; zlib_updatewindow() local
167 struct inflate_state *state; zlib_inflateSyncPacket() local
333 struct inflate_state *state; zlib_inflate() local
787 struct inflate_state *state = (struct inflate_state *)z->state; zlib_inflateIncomp() local
[all...]
/kernel/linux/linux-6.6/lib/zlib_inflate/
H A Dinflate.c35 struct inflate_state *state; in zlib_inflateReset() local
37 if (strm == NULL || strm->state == NULL) return Z_STREAM_ERROR; in zlib_inflateReset()
38 state = (struct inflate_state *)strm->state; in zlib_inflateReset()
39 strm->total_in = strm->total_out = state->total = 0; in zlib_inflateReset()
42 state->mode = HEAD; in zlib_inflateReset()
43 state->last = 0; in zlib_inflateReset()
44 state->havedict = 0; in zlib_inflateReset()
45 state->dmax = 32768U; in zlib_inflateReset()
46 state in zlib_inflateReset()
61 struct inflate_state *state; zlib_inflateInit2() local
97 zlib_fixedtables(struct inflate_state *state) zlib_fixedtables() argument
122 struct inflate_state *state; zlib_updatewindow() local
167 struct inflate_state *state; zlib_inflateSyncPacket() local
333 struct inflate_state *state; zlib_inflate() local
787 struct inflate_state *state = (struct inflate_state *)z->state; zlib_inflateIncomp() local
[all...]
/kernel/linux/linux-5.10/drivers/media/tuners/
H A Dmxl5005s.c298 static u16 MXL_GetMasterControl(u8 *MasterReg, int state);
339 struct mxl5005s_state *state = fe->tuner_priv; in mxl5005s_SetRfFreqHz() local
354 ByteTable[0] |= state->config->AgcMasterByte; in mxl5005s_SetRfFreqHz()
371 state->config->AgcMasterByte; in mxl5005s_SetRfFreqHz()
387 state->config->AgcMasterByte ; in mxl5005s_SetRfFreqHz()
404 struct mxl5005s_state *state = fe->tuner_priv; in MXL5005_RegisterInit() local
405 state->TunerRegs_Num = TUNER_REGS_NUM ; in MXL5005_RegisterInit()
407 state->TunerRegs[0].Reg_Num = 9 ; in MXL5005_RegisterInit()
408 state->TunerRegs[0].Reg_Val = 0x40 ; in MXL5005_RegisterInit()
410 state in MXL5005_RegisterInit()
724 struct mxl5005s_state *state = fe->tuner_priv; MXL5005_ControlInit() local
1694 struct mxl5005s_state *state = fe->tuner_priv; MXL5005_TunerConfig() local
1722 struct mxl5005s_state *state = fe->tuner_priv; MXL_SynthIFLO_Calc() local
1735 struct mxl5005s_state *state = fe->tuner_priv; MXL_SynthRFTGLO_Calc() local
1768 struct mxl5005s_state *state = fe->tuner_priv; MXL_BlockInit() local
2106 struct mxl5005s_state *state = fe->tuner_priv; MXL_IFSynthInit() local
2310 struct mxl5005s_state *state = fe->tuner_priv; MXL_TuneRF() local
3416 struct mxl5005s_state *state = fe->tuner_priv; MXL_ControlWrite_Group() local
3496 struct mxl5005s_state *state = fe->tuner_priv; MXL_RegRead() local
3511 struct mxl5005s_state *state = fe->tuner_priv; MXL_ControlRead() local
3560 struct mxl5005s_state *state = fe->tuner_priv; MXL_RegWriteBit() local
3664 MXL_GetMasterControl(u8 *MasterReg, int state) MXL_GetMasterControl() argument
3681 struct mxl5005s_state *state = fe->tuner_priv; MXL_VCORange_Test() local
3830 struct mxl5005s_state *state = fe->tuner_priv; MXL_Hystersis_Test() local
3849 struct mxl5005s_state *state = fe->tuner_priv; mxl5005s_reset() local
3877 struct mxl5005s_state *state = fe->tuner_priv; mxl5005s_writereg() local
3918 struct mxl5005s_state *state = fe->tuner_priv; mxl5005s_init() local
3928 struct mxl5005s_state *state = fe->tuner_priv; mxl5005s_reconfigure() local
3958 struct mxl5005s_state *state = fe->tuner_priv; mxl5005s_AssignTunerMode() local
3986 struct mxl5005s_state *state = fe->tuner_priv; mxl5005s_set_params() local
4041 struct mxl5005s_state *state = fe->tuner_priv; mxl5005s_get_frequency() local
4051 struct mxl5005s_state *state = fe->tuner_priv; mxl5005s_get_bandwidth() local
4061 struct mxl5005s_state *state = fe->tuner_priv; mxl5005s_get_if_frequency() local
4097 struct mxl5005s_state *state = NULL; mxl5005s_attach() local
[all...]
/device/soc/rockchip/common/sdk_linux/drivers/gpu/drm/
H A Ddrm_atomic_state_helper.c42 * DOC: atomic state reset and initialization
45 * and correct atomic software state for all connectors, CRTCs and planes
47 * suspend. One way to solve this is to have a hardware state read-out
48 * infrastructure which reconstructs the full software state (e.g. the i915
51 * The simpler solution is to just reset the software state to everything off,
55 * On the upside the precise state tracking of atomic simplifies system suspend
63 * __drm_atomic_helper_crtc_state_reset - reset the CRTC state
64 * @crtc_state: atomic CRTC state, must not be NULL
68 * values. This is useful for drivers that subclass the CRTC state.
77 * __drm_atomic_helper_crtc_reset - reset state o
129 __drm_atomic_helper_crtc_duplicate_state(struct drm_crtc *crtc, struct drm_crtc_state *state) __drm_atomic_helper_crtc_duplicate_state() argument
175 struct drm_crtc_state *state; drm_atomic_helper_crtc_duplicate_state() local
198 __drm_atomic_helper_crtc_destroy_state(struct drm_crtc_state *state) __drm_atomic_helper_crtc_destroy_state() argument
238 drm_atomic_helper_crtc_destroy_state(struct drm_crtc *crtc, struct drm_crtc_state *state) drm_atomic_helper_crtc_destroy_state() argument
314 __drm_atomic_helper_plane_duplicate_state(struct drm_plane *plane, struct drm_plane_state *state) __drm_atomic_helper_plane_duplicate_state() argument
337 struct drm_plane_state *state; drm_atomic_helper_plane_duplicate_state() local
360 __drm_atomic_helper_plane_destroy_state(struct drm_plane_state *state) __drm_atomic_helper_plane_destroy_state() argument
386 drm_atomic_helper_plane_destroy_state(struct drm_plane *plane, struct drm_plane_state *state) drm_atomic_helper_plane_destroy_state() argument
459 struct drm_connector_state *state = connector->state; drm_atomic_helper_connector_tv_reset() local
476 __drm_atomic_helper_connector_duplicate_state(struct drm_connector *connector, struct drm_connector_state *state) __drm_atomic_helper_connector_duplicate_state() argument
502 struct drm_connector_state *state; drm_atomic_helper_connector_duplicate_state() local
525 __drm_atomic_helper_connector_destroy_state(struct drm_connector_state *state) __drm_atomic_helper_connector_destroy_state() argument
551 drm_atomic_helper_connector_destroy_state(struct drm_connector *connector, struct drm_connector_state *state) drm_atomic_helper_connector_destroy_state() argument
566 __drm_atomic_helper_private_obj_duplicate_state(struct drm_private_obj *obj, struct drm_private_state *state) __drm_atomic_helper_private_obj_duplicate_state() argument
580 __drm_atomic_helper_bridge_duplicate_state(struct drm_bridge *bridge, struct drm_bridge_state *state) __drm_atomic_helper_bridge_duplicate_state() argument
624 drm_atomic_helper_bridge_destroy_state(struct drm_bridge *bridge, struct drm_bridge_state *state) drm_atomic_helper_bridge_destroy_state() argument
640 __drm_atomic_helper_bridge_reset(struct drm_bridge *bridge, struct drm_bridge_state *state) __drm_atomic_helper_bridge_reset() argument
[all...]
/kernel/linux/linux-6.6/drivers/media/tuners/
H A Dmxl5005s.c298 static u16 MXL_GetMasterControl(u8 *MasterReg, int state);
339 struct mxl5005s_state *state = fe->tuner_priv; in mxl5005s_SetRfFreqHz() local
354 ByteTable[0] |= state->config->AgcMasterByte; in mxl5005s_SetRfFreqHz()
371 state->config->AgcMasterByte; in mxl5005s_SetRfFreqHz()
387 state->config->AgcMasterByte ; in mxl5005s_SetRfFreqHz()
404 struct mxl5005s_state *state = fe->tuner_priv; in MXL5005_RegisterInit() local
405 state->TunerRegs_Num = TUNER_REGS_NUM ; in MXL5005_RegisterInit()
407 state->TunerRegs[0].Reg_Num = 9 ; in MXL5005_RegisterInit()
408 state->TunerRegs[0].Reg_Val = 0x40 ; in MXL5005_RegisterInit()
410 state in MXL5005_RegisterInit()
724 struct mxl5005s_state *state = fe->tuner_priv; MXL5005_ControlInit() local
1694 struct mxl5005s_state *state = fe->tuner_priv; MXL5005_TunerConfig() local
1722 struct mxl5005s_state *state = fe->tuner_priv; MXL_SynthIFLO_Calc() local
1735 struct mxl5005s_state *state = fe->tuner_priv; MXL_SynthRFTGLO_Calc() local
1768 struct mxl5005s_state *state = fe->tuner_priv; MXL_BlockInit() local
2106 struct mxl5005s_state *state = fe->tuner_priv; MXL_IFSynthInit() local
2310 struct mxl5005s_state *state = fe->tuner_priv; MXL_TuneRF() local
3416 struct mxl5005s_state *state = fe->tuner_priv; MXL_ControlWrite_Group() local
3488 struct mxl5005s_state *state = fe->tuner_priv; MXL_RegRead() local
3503 struct mxl5005s_state *state = fe->tuner_priv; MXL_ControlRead() local
3552 struct mxl5005s_state *state = fe->tuner_priv; MXL_RegWriteBit() local
3656 MXL_GetMasterControl(u8 *MasterReg, int state) MXL_GetMasterControl() argument
3673 struct mxl5005s_state *state = fe->tuner_priv; MXL_VCORange_Test() local
3822 struct mxl5005s_state *state = fe->tuner_priv; MXL_Hystersis_Test() local
3841 struct mxl5005s_state *state = fe->tuner_priv; mxl5005s_reset() local
3869 struct mxl5005s_state *state = fe->tuner_priv; mxl5005s_writereg() local
3910 struct mxl5005s_state *state = fe->tuner_priv; mxl5005s_init() local
3920 struct mxl5005s_state *state = fe->tuner_priv; mxl5005s_reconfigure() local
3964 struct mxl5005s_state *state = fe->tuner_priv; mxl5005s_AssignTunerMode() local
3992 struct mxl5005s_state *state = fe->tuner_priv; mxl5005s_set_params() local
4047 struct mxl5005s_state *state = fe->tuner_priv; mxl5005s_get_frequency() local
4057 struct mxl5005s_state *state = fe->tuner_priv; mxl5005s_get_bandwidth() local
4067 struct mxl5005s_state *state = fe->tuner_priv; mxl5005s_get_if_frequency() local
4103 struct mxl5005s_state *state = NULL; mxl5005s_attach() local
[all...]
/kernel/linux/linux-5.10/drivers/gpu/drm/
H A Ddrm_atomic_state_helper.c42 * DOC: atomic state reset and initialization
45 * and correct atomic software state for all connectors, CRTCs and planes
47 * suspend. One way to solve this is to have a hardware state read-out
48 * infrastructure which reconstructs the full software state (e.g. the i915
51 * The simpler solution is to just reset the software state to everything off,
55 * On the upside the precise state tracking of atomic simplifies system suspend
63 * __drm_atomic_helper_crtc_state_reset - reset the CRTC state
64 * @crtc_state: atomic CRTC state, must not be NULL
68 * values. This is useful for drivers that subclass the CRTC state.
79 * __drm_atomic_helper_crtc_reset - reset state o
131 __drm_atomic_helper_crtc_duplicate_state(struct drm_crtc *crtc, struct drm_crtc_state *state) __drm_atomic_helper_crtc_duplicate_state() argument
170 struct drm_crtc_state *state; drm_atomic_helper_crtc_duplicate_state() local
191 __drm_atomic_helper_crtc_destroy_state(struct drm_crtc_state *state) __drm_atomic_helper_crtc_destroy_state() argument
227 drm_atomic_helper_crtc_destroy_state(struct drm_crtc *crtc, struct drm_crtc_state *state) drm_atomic_helper_crtc_destroy_state() argument
303 __drm_atomic_helper_plane_duplicate_state(struct drm_plane *plane, struct drm_plane_state *state) __drm_atomic_helper_plane_duplicate_state() argument
327 struct drm_plane_state *state; drm_atomic_helper_plane_duplicate_state() local
348 __drm_atomic_helper_plane_destroy_state(struct drm_plane_state *state) __drm_atomic_helper_plane_destroy_state() argument
371 drm_atomic_helper_plane_destroy_state(struct drm_plane *plane, struct drm_plane_state *state) drm_atomic_helper_plane_destroy_state() argument
448 struct drm_connector_state *state = connector->state; drm_atomic_helper_connector_tv_reset() local
466 __drm_atomic_helper_connector_duplicate_state(struct drm_connector *connector, struct drm_connector_state *state) __drm_atomic_helper_connector_duplicate_state() argument
492 struct drm_connector_state *state; drm_atomic_helper_connector_duplicate_state() local
514 __drm_atomic_helper_connector_destroy_state(struct drm_connector_state *state) __drm_atomic_helper_connector_destroy_state() argument
537 drm_atomic_helper_connector_destroy_state(struct drm_connector *connector, struct drm_connector_state *state) drm_atomic_helper_connector_destroy_state() argument
553 __drm_atomic_helper_private_obj_duplicate_state(struct drm_private_obj *obj, struct drm_private_state *state) __drm_atomic_helper_private_obj_duplicate_state() argument
568 __drm_atomic_helper_bridge_duplicate_state(struct drm_bridge *bridge, struct drm_bridge_state *state) __drm_atomic_helper_bridge_duplicate_state() argument
613 drm_atomic_helper_bridge_destroy_state(struct drm_bridge *bridge, struct drm_bridge_state *state) drm_atomic_helper_bridge_destroy_state() argument
630 __drm_atomic_helper_bridge_reset(struct drm_bridge *bridge, struct drm_bridge_state *state) __drm_atomic_helper_bridge_reset() 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...]

Completed in 15 milliseconds

12345678910>>...725