/third_party/typescript/tests/baselines/reference/ |
D | controlFlowManyCallExpressionStatementsPerf.js | 4 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 …]
|
D | controlFlowManyCallExpressionStatementsPerf.types | 7 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 …]
|
D | controlFlowManyCallExpressionStatementsPerf.symbols | 7 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/skia/third_party/externals/abseil-cpp/absl/debugging/internal/ |
D | demangle.cc | 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->out_end_idx = out_size; in InitState() 261 state->recursion_depth = 0; in InitState() 262 state->steps = 0; in InitState() 264 state->parse_state.mangled_idx = 0; in InitState() [all …]
|
/third_party/abseil-cpp/absl/debugging/internal/ |
D | demangle.cc | 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->out_end_idx = out_size; in InitState() 261 state->recursion_depth = 0; in InitState() 262 state->steps = 0; in InitState() 264 state->parse_state.mangled_idx = 0; in InitState() [all …]
|
/third_party/typescript/tests/cases/compiler/ |
D | controlFlowManyCallExpressionStatementsPerf.ts | 5 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/libxml2/ |
D | xzlib.c | 89 xz_error(xz_statep state, int err, const char *msg) in xz_error() argument 92 if (state->msg != NULL) { in xz_error() 93 if (state->err != LZMA_MEM_ERROR) in xz_error() 94 xmlFree(state->msg); in xz_error() 95 state->msg = NULL; in xz_error() 99 state->err = err; in xz_error() 105 state->msg = (char *) msg; in xz_error() 110 if ((state->msg = in xz_error() 111 xmlMalloc(strlen(state->path) + strlen(msg) + 3)) == NULL) { in xz_error() 112 state->err = LZMA_MEM_ERROR; in xz_error() [all …]
|
/third_party/libwebsockets/win32port/zlib/ |
D | inflate.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; 116 state->dmax = 32768U; 117 state->head = Z_NULL; [all …]
|
D | gzread.c | 21 local int gz_load(state, buf, len, have) in gz_load() argument 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() argument 51 gz_statep state; in gz_avail() 53 z_streamp strm = &(state->strm); 55 if (state->err != Z_OK) 57 if (state->eof == 0) { [all …]
|
/third_party/zlib/ |
D | inflate.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; 128 if (state->wrap) /* to support ill-conceived Java test suite */ 129 strm->adler = state->wrap & 1; [all …]
|
D | gzread.c | 21 local int gz_load(state, buf, len, have) in gz_load() argument 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() argument 57 gz_statep state; in gz_avail() 60 z_streamp strm = &(state->strm); 62 if (state->err != Z_OK && state->err != Z_BUF_ERROR) 64 if (state->eof == 0) { [all …]
|
/third_party/flutter/skia/third_party/externals/zlib/contrib/optimizations/ |
D | inflate.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; 129 if (state->wrap) /* to support ill-conceived Java test suite */ 130 strm->adler = state->wrap & 1; [all …]
|
/third_party/skia/third_party/externals/zlib/contrib/optimizations/ |
D | inflate.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; 129 if (state->wrap) /* to support ill-conceived Java test suite */ 130 strm->adler = state->wrap & 1; [all …]
|
/third_party/node/deps/zlib/contrib/optimizations/ |
D | inflate.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; 129 if (state->wrap) /* to support ill-conceived Java test suite */ 130 strm->adler = state->wrap & 1; [all …]
|
/third_party/flutter/skia/third_party/externals/zlib/ |
D | inflate.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; 128 if (state->wrap) /* to support ill-conceived Java test suite */ 129 strm->adler = state->wrap & 1; [all …]
|
D | gzread.c | 21 local int gz_load(state, buf, len, have) in gz_load() argument 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() argument 57 gz_statep state; in gz_avail() 60 z_streamp strm = &(state->strm); 62 if (state->err != Z_OK && state->err != Z_BUF_ERROR) 64 if (state->eof == 0) { [all …]
|
/third_party/skia/third_party/externals/zlib/ |
D | inflate.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; 128 if (state->wrap) /* to support ill-conceived Java test suite */ 129 strm->adler = state->wrap & 1; [all …]
|
D | gzread.c | 21 local int gz_load(state, buf, len, have) in gz_load() argument 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() argument 57 gz_statep state; in gz_avail() 60 z_streamp strm = &(state->strm); 62 if (state->err != Z_OK && state->err != Z_BUF_ERROR) 64 if (state->eof == 0) { [all …]
|
/third_party/node/deps/zlib/ |
D | inflate.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; 128 if (state->wrap) /* to support ill-conceived Java test suite */ 129 strm->adler = state->wrap & 1; [all …]
|
D | gzread.c | 21 local int gz_load(state, buf, len, have) in gz_load() argument 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() argument 57 gz_statep state; in gz_avail() 60 z_streamp strm = &(state->strm); 62 if (state->err != Z_OK && state->err != Z_BUF_ERROR) 64 if (state->eof == 0) { [all …]
|
/third_party/boost/libs/beast/test/extern/zlib-1.2.11/ |
D | inflate.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; 128 if (state->wrap) /* to support ill-conceived Java test suite */ 129 strm->adler = state->wrap & 1; [all …]
|
D | gzread.c | 21 local int gz_load(state, buf, len, have) in gz_load() argument 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() argument 57 gz_statep state; in gz_avail() 60 z_streamp strm = &(state->strm); 62 if (state->err != Z_OK && state->err != Z_BUF_ERROR) 64 if (state->eof == 0) { [all …]
|
/third_party/boost/tools/boost_install/test/iostreams/zlib-1.2.11/ |
D | inflate.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; 128 if (state->wrap) /* to support ill-conceived Java test suite */ 129 strm->adler = state->wrap & 1; [all …]
|
D | gzread.c | 21 local int gz_load(state, buf, len, have) in gz_load() argument 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() argument 57 gz_statep state; in gz_avail() 60 z_streamp strm = &(state->strm); 62 if (state->err != Z_OK && state->err != Z_BUF_ERROR) 64 if (state->eof == 0) { [all …]
|
/third_party/skia/third_party/externals/freetype/src/lzw/ |
D | ftzopen.c | 29 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 …]
|