Home
last modified time | relevance | path

Searched refs:Tokens (Results 1 - 25 of 28) sorted by relevance

12

/third_party/skia/third_party/externals/swiftshader/third_party/subzero/src/
H A DIceRangeSpec.cpp51 auto Tokens = RangeSpec::tokenize(Token, RangeSpec::DELIM_RANGE); in getRange() local
52 if (Tokens.size() == 1) { in getRange()
53 *First = std::stoul(Tokens[0]); in getRange()
55 } else if (Tokens.size() == 2) { in getRange()
56 *First = Tokens[0].empty() ? 0 : std::stoul(Tokens[0]); in getRange()
57 *Last = Tokens[1].empty() ? RangeSpec::RangeMax : std::stoul(Tokens[1]); in getRange()
99 std::vector<std::string> Tokens; in tokenize() local
105 Tokens in tokenize()
115 auto Tokens = tokenize(Spec, DELIM_LIST); init() local
[all...]
/third_party/skia/third_party/externals/spirv-tools/utils/vscode/src/parser/
H A Dparser.go431 inst.Tokens = []*Token{p.tok(i)}
440 inst.Tokens = []*Token{p.tok(i), p.tok(i + 1), p.tok(i + 2)}
471 inst.Tokens = append(inst.Tokens, op.Tokens...)
476 inst.Tokens = append(inst.Tokens, op.Tokens...)
482 inst.Tokens = append(inst.Tokens, o
[all...]
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/utils/vscode/src/parser/
H A Dparser.go431 inst.Tokens = []*Token{p.tok(i)}
440 inst.Tokens = []*Token{p.tok(i), p.tok(i + 1), p.tok(i + 2)}
471 inst.Tokens = append(inst.Tokens, op.Tokens...)
476 inst.Tokens = append(inst.Tokens, op.Tokens...)
482 inst.Tokens = append(inst.Tokens, o
[all...]
/third_party/spirv-tools/utils/vscode/src/parser/
H A Dparser.go431 inst.Tokens = []*Token{p.tok(i)}
440 inst.Tokens = []*Token{p.tok(i), p.tok(i + 1), p.tok(i + 2)}
471 inst.Tokens = append(inst.Tokens, op.Tokens...)
476 inst.Tokens = append(inst.Tokens, op.Tokens...)
482 inst.Tokens = append(inst.Tokens, o
[all...]
/third_party/mesa3d/src/gallium/drivers/i915/
H A Di915_fpc_optimize.c304 current = &tokens->Tokens[i]; in liveness_analysis()
326 current = &tokens->Tokens[i]; in liveness_analysis()
398 union i915_full_token *current = &tokens->Tokens[index - 1]; in i915_fpc_optimize_mov_before_tex()
399 union i915_full_token *next = &tokens->Tokens[index]; in i915_fpc_optimize_mov_before_tex()
592 union i915_full_token *current = &tokens->Tokens[index - 1]; in i915_fpc_optimize_useless_mov_after_inst()
593 union i915_full_token *next = &tokens->Tokens[index]; in i915_fpc_optimize_useless_mov_after_inst()
595 // &out_tokens->Tokens[i-1], &out_tokens->Tokens[i]); in i915_fpc_optimize_useless_mov_after_inst()
640 out_tokens->Tokens = in i915_optimize()
652 copy_token(&out_tokens->Tokens[ in i915_optimize()
[all...]
H A Di915_fpc.h280 union i915_full_token *Tokens; member
H A Di915_fpc_translate.c943 i915_translate_token(p, &tokens->Tokens[i], fs); in i915_translate_instructions()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/
H A DIfConversion.cpp257 std::vector<std::unique_ptr<IfcvtToken>> &Tokens);
262 std::vector<std::unique_ptr<IfcvtToken>> &Tokens);
483 std::vector<std::unique_ptr<IfcvtToken>> Tokens; in runOnMachineFunction() local
491 AnalyzeBlocks(MF, Tokens); in runOnMachineFunction()
492 while (!Tokens.empty()) { in runOnMachineFunction()
493 std::unique_ptr<IfcvtToken> Token = std::move(Tokens.back()); in runOnMachineFunction()
494 Tokens.pop_back(); in runOnMachineFunction()
602 Tokens.clear(); in runOnMachineFunction()
1212 MachineBasicBlock &MBB, std::vector<std::unique_ptr<IfcvtToken>> &Tokens) { in AnalyzeBlock()
1322 Tokens in AnalyzeBlock()
1211 AnalyzeBlock( MachineBasicBlock &MBB, std::vector<std::unique_ptr<IfcvtToken>> &Tokens) AnalyzeBlock() argument
1432 AnalyzeBlocks( MachineFunction &MF, std::vector<std::unique_ptr<IfcvtToken>> &Tokens) AnalyzeBlocks() argument
[all...]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Support/
H A DGlobPattern.cpp138 Pat.Tokens.push_back(*BV); in create()
150 return matchOne(Tokens, S); in match()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Support/
H A DGlobPattern.h38 std::vector<BitVector> Tokens; member in llvm::GlobPattern
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AVR/AsmParser/
H A DAVRAsmParser.cpp647 AsmToken Tokens[2]; in parseLiteralValues() local
648 size_t ReadCount = Parser.getLexer().peekTokens(Tokens); in parseLiteralValues()
650 Tokens[0].getKind() == AsmToken::Minus && in parseLiteralValues()
651 Tokens[1].getKind() == AsmToken::Identifier) { in parseLiteralValues()
/third_party/mesa3d/src/gallium/auxiliary/tgsi/
H A Dtgsi_parse.h110 const struct tgsi_token *Tokens; member
H A Dtgsi_parse.c46 ctx->Tokens = tokens; in tgsi_parse_init()
92 copy_token(token, &ctx->Tokens[ctx->Position]); in next_token()
H A Dtgsi_exec.h317 const struct tgsi_token *Tokens; /**< Declarations, instructions */ member
H A Dtgsi_scan.c890 info->num_tokens = tgsi_num_tokens(parse.Tokens); in tgsi_scan_shader()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/Hexagon/AsmParser/
H A DHexagonAsmParser.cpp1044 SmallVector<AsmToken, 4> Tokens; in parseExpression() local
1049 Tokens.emplace_back(Lexer.getTok()); in parseExpression()
1051 switch (Tokens.back().getKind()) { in parseExpression()
1053 if (Tokens.size() > 1) in parseExpression()
1054 if ((Tokens.end() - 2)->getKind() == AsmToken::TokenKind::Plus) { in parseExpression()
1055 Tokens.insert(Tokens.end() - 2, in parseExpression()
1069 while (!Tokens.empty()) { in parseExpression()
1070 Lexer.UnLex(Tokens.back()); in parseExpression()
1071 Tokens in parseExpression()
[all...]
/third_party/mesa3d/src/gallium/drivers/softpipe/
H A Dsp_fs_exec.c181 if (machine->Tokens == var->tokens) { in exec_delete()
H A Dsp_compute.c132 if (machine->Tokens == cs->tokens) { in cs_delete()
/third_party/python/Tools/peg_generator/
H A DMakefile14 TOKENS = ../../Grammar/Tokens
/third_party/skia/third_party/externals/spirv-tools/utils/vscode/src/
H A Dlangsvr.go111 toks := f.res.Tokens
370 for _, t := range f.res.Tokens {
393 for _, t := range f.res.Tokens {
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/utils/vscode/src/
H A Dlangsvr.go111 toks := f.res.Tokens
370 for _, t := range f.res.Tokens {
393 for _, t := range f.res.Tokens {
/third_party/spirv-tools/utils/vscode/src/
H A Dlangsvr.go111 toks := f.res.Tokens
370 for _, t := range f.res.Tokens {
393 for _, t := range f.res.Tokens {
/third_party/mesa3d/src/gallium/auxiliary/draw/
H A Ddraw_vs_exec.c75 if (evs->machine->Tokens != shader->state.tokens) { in vs_exec_prepare()
H A Ddraw_gs.c710 if (!use_llvm && shader && shader->machine->Tokens != shader->state.tokens) { in draw_geometry_shader_prepare()
957 if (draw->gs.tgsi.machine && draw->gs.tgsi.machine->Tokens == dgs->state.tokens) in draw_delete_geometry_shader()
958 draw->gs.tgsi.machine->Tokens = NULL; in draw_delete_geometry_shader()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AMDGPU/AsmParser/
H A DAMDGPUAsmParser.cpp1345 void peekTokens(MutableArrayRef<AsmToken> Tokens);
5425 AMDGPUAsmParser::peekTokens(MutableArrayRef<AsmToken> Tokens) {
5426 auto TokCount = getLexer().peekTokens(Tokens);
5428 for (auto Idx = TokCount; Idx < Tokens.size(); ++Idx)
5429 Tokens[Idx] = AsmToken(AsmToken::Error, "");
6997 // Tokens like "glc" would be parsed as immediate operands in ParseOperand().

Completed in 28 milliseconds

12