/third_party/node/deps/v8/src/debug/wasm/gdb-server/ |
H A D | target.cc | 511 std::vector<std::string> toks = StringSplit(str, ":;"); in ProcessQueryPacket() local 512 if (toks[0] == "WasmCallStack") { in ProcessQueryPacket() 526 if (toks[0] == "WasmGlobal") { in ProcessQueryPacket() 527 if (toks.size() == 3) { in ProcessQueryPacket() 529 static_cast<uint32_t>(strtol(toks[1].data(), nullptr, 10)); in ProcessQueryPacket() 531 static_cast<uint32_t>(strtol(toks[2].data(), nullptr, 10)); in ProcessQueryPacket() 547 if (toks[0] == "WasmLocal") { in ProcessQueryPacket() 548 if (toks.size() == 3) { in ProcessQueryPacket() 550 static_cast<uint32_t>(strtol(toks[1].data(), nullptr, 10)); in ProcessQueryPacket() 552 static_cast<uint32_t>(strtol(toks[ in ProcessQueryPacket() [all...] |
/third_party/skia/third_party/externals/spirv-tools/utils/vscode/src/parser/ |
H A D | parser.go | 173 toks []*Token // all the lexed tokens 239 l.toks = append(l.toks, tok) 279 l.toks = append(l.toks, tok) 296 l.toks = append(l.toks, tok) 315 l.toks = append(l.toks, tok) 335 l.toks [all...] |
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/utils/vscode/src/parser/ |
H A D | parser.go | 173 toks []*Token // all the lexed tokens 239 l.toks = append(l.toks, tok) 279 l.toks = append(l.toks, tok) 296 l.toks = append(l.toks, tok) 315 l.toks = append(l.toks, tok) 335 l.toks [all...] |
/third_party/spirv-tools/utils/vscode/src/parser/ |
H A D | parser.go | 173 toks []*Token // all the lexed tokens 239 l.toks = append(l.toks, tok) 279 l.toks = append(l.toks, tok) 296 l.toks = append(l.toks, tok) 315 l.toks = append(l.toks, tok) 335 l.toks [all...] |
/third_party/mesa3d/src/gallium/drivers/etnaviv/ |
H A D | etnaviv_compiler_cmdline.c | 103 struct tgsi_token toks[65536]; in main() local 150 if (!tgsi_text_translate(ptr, toks, ARRAY_SIZE(toks))) in main() 153 tgsi_parse_init(&parse, toks); in main() 156 s.tokens = toks; in main()
|
/third_party/skia/third_party/externals/swiftshader/tests/regres/deqp/ |
H A D | deqp.go | 402 toks := deqpRE.FindStringSubmatch(out) 403 if len(toks) < 3 { 409 switch toks[1] { 420 if toks[2] != "Fail" { 421 err = toks[2] 426 if toks[2] != "InternalError" { 427 err = toks[2]
|
/third_party/mesa3d/src/gallium/drivers/freedreno/ir3/ |
H A D | ir3_cmdline.c | 378 struct tgsi_token toks[65536]; in main() local 391 if (!tgsi_text_translate(ptr, toks, ARRAY_SIZE(toks))) in main() 395 tgsi_dump(toks, 0); in main() 397 nir = tgsi_to_nir_noscreen(toks, nir_options); in main()
|
/third_party/mesa3d/src/gallium/drivers/freedreno/ |
H A D | freedreno_program.c | 115 struct tgsi_token toks[32]; in assemble_tgsi() local 117 .tokens = toks, in assemble_tgsi() 120 bool ret = tgsi_text_translate(src, toks, ARRAY_SIZE(toks)); in assemble_tgsi()
|
/third_party/ffmpeg/libavcodec/ |
H A D | truemotion2.c | 289 int len, toks, pos; in tm2_read_stream() local 311 toks = bytestream2_get_be32(&gb); in tm2_read_stream() 312 if (toks & 1) { in tm2_read_stream() 343 toks >>= 1; in tm2_read_stream() 345 if ((toks < 0) || (toks > 0xFFFFFF)) { in tm2_read_stream() 346 av_log(ctx->avctx, AV_LOG_ERROR, "Incorrect number of tokens: %i\n", toks); in tm2_read_stream() 350 ret = av_reallocp_array(&ctx->tokens[stream_id], toks, sizeof(int)); in tm2_read_stream() 355 ctx->tok_lens[stream_id] = toks; in tm2_read_stream() 364 for (i = 0; i < toks; in tm2_read_stream() [all...] |
/third_party/skia/third_party/externals/spirv-tools/utils/vscode/src/ |
H A D | langsvr.go | 111 toks := f.res.Tokens 113 i := sort.Search(len(toks), func(i int) bool { return p.LessThan(toks[i].Range.End) }) 114 if i == len(toks) { 117 if toks[i].Range.Contains(p) { 118 return toks[i]
|
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/utils/vscode/src/ |
H A D | langsvr.go | 111 toks := f.res.Tokens 113 i := sort.Search(len(toks), func(i int) bool { return p.LessThan(toks[i].Range.End) }) 114 if i == len(toks) { 117 if toks[i].Range.Contains(p) { 118 return toks[i]
|
/third_party/selinux/libselinux/src/ |
H A D | avc.c | 598 static unsigned long toks = 10 * 5 * HZ; 605 toks += now - last_msg; 607 if (toks > AVC_MSG_BURST) 608 toks = AVC_MSG_BURST; 609 if (toks >= AVC_MSG_COST) { 612 toks -= AVC_MSG_COST;
|
/third_party/spirv-tools/utils/vscode/src/ |
H A D | langsvr.go | 111 toks := f.res.Tokens 113 i := sort.Search(len(toks), func(i int) bool { return p.LessThan(toks[i].Range.End) }) 114 if i == len(toks) { 117 if toks[i].Range.Contains(p) { 118 return toks[i]
|
/third_party/rust/crates/bindgen/bindgen/codegen/ |
H A D | impl_debug.rs | 29 for (i, (fstring, toks)) in processed_fields.enumerate() { in gen_debug_impl() 33 tokens.extend(toks); in gen_debug_impl()
|
/third_party/vk-gl-cts/external/vulkan-docs/src/scripts/ |
H A D | parse_dependency.py | 105 def push_first(toks): 108 - toks - first element is the token to push""" 110 exprStack.append(toks[0])
|
/third_party/vulkan-headers/registry/ |
H A D | parse_dependency.py | 105 def push_first(toks): 108 - toks - first element is the token to push""" 110 exprStack.append(toks[0])
|
/third_party/mesa3d/src/gallium/frontends/nine/ |
H A D | nine_ff.c | 174 const struct tgsi_token *toks = ureg_get_tokens(ureg, NULL); in nine_ureg_tgsi_dump() local 175 tgsi_dump(toks, 0); in nine_ureg_tgsi_dump() 176 ureg_free_tokens(toks); in nine_ureg_tgsi_dump()
|
H A D | nine_shader.c | 4141 const struct tgsi_token *toks = ureg_get_tokens(tx->ureg, NULL); in nine_translate_shader() local 4142 tgsi_dump(toks, 0); in nine_translate_shader() 4143 ureg_free_tokens(toks); in nine_translate_shader()
|
/third_party/skia/third_party/externals/microhttpd/doc/ |
H A D | texinfo.tex | 5488 % \the<toks register> to achieve this: TeX expands \the<toks> only once, 5489 % simply yielding the contents of <toks register>. (We also do this for 7446 % In that case, the hook is \the\toks N-1, and we simply set \toks N-1 to the 7489 {\noexpand\noexpand\noexpand\the\toks\the\paramno}% 7586 % value into a new token list register \toks#N 7643 \def\texinonouternewtoks{\alloc@ 5\toks \toksdef \@cclvi}
|