/external/starlark-go/starlarkstruct/ |
D | struct_test.go | 53 type symbol struct{ name string } argument 57 func (sym *symbol) Name() string { return sym.name } 58 func (sym *symbol) String() string { return sym.name } 59 func (sym *symbol) Type() string { return "symbol" } 60 func (sym *symbol) Freeze() {} // immutable 61 func (sym *symbol) Truth() starlark.Bool { return starlark.True } 62 func (sym *symbol) Hash() (uint32, error) { return 0, fmt.Errorf("unhashable: %s", sym.Type()) } 64 …al(thread *starlark.Thread, args starlark.Tuple, kwargs []starlark.Tuple) (starlark.Value, error) {
|
/external/llvm-project/compiler-rt/lib/sanitizer_common/ |
D | sanitizer_asm.h | 46 # define ASM_HIDDEN(symbol) .hidden symbol argument 47 # define ASM_TYPE_FUNCTION(symbol) .type symbol, %function argument 48 # define ASM_SIZE(symbol) .size symbol, .-symbol argument 49 # define ASM_SYMBOL(symbol) symbol argument 50 # define ASM_SYMBOL_INTERCEPTOR(symbol) symbol argument 51 # define ASM_WRAPPER_NAME(symbol) __interceptor_##symbol argument 53 # define ASM_HIDDEN(symbol) argument 54 # define ASM_TYPE_FUNCTION(symbol) argument 55 # define ASM_SIZE(symbol) argument 56 # define ASM_SYMBOL(symbol) _##symbol argument [all …]
|
/external/compiler-rt/lib/sanitizer_common/ |
D | sanitizer_asm.h | 47 # define ASM_HIDDEN(symbol) .hidden symbol argument 48 # define ASM_TYPE_FUNCTION(symbol) .type symbol, @function argument 49 # define ASM_SIZE(symbol) .size symbol, .-symbol argument 50 # define ASM_TSAN_SYMBOL(symbol) symbol argument 51 # define ASM_TSAN_SYMBOL_INTERCEPTOR(symbol) symbol argument 53 # define ASM_HIDDEN(symbol) argument 54 # define ASM_TYPE_FUNCTION(symbol) argument 55 # define ASM_SIZE(symbol) argument 56 # define ASM_TSAN_SYMBOL(symbol) _##symbol argument 57 # define ASM_TSAN_SYMBOL_INTERCEPTOR(symbol) _wrap_##symbol argument
|
/external/llvm-project/mlir/lib/IR/ |
D | SymbolTable.cpp | 27 static Optional<StringRef> getNameIfSymbol(Operation *symbol) { in getNameIfSymbol() 32 static Optional<StringRef> getNameIfSymbol(Operation *symbol, in getNameIfSymbol() 43 collectValidReferencesFor(Operation *symbol, StringRef symbolName, in collectValidReferencesFor() 140 void SymbolTable::erase(Operation *symbol) { in erase() 156 void SymbolTable::insert(Operation *symbol, Block::iterator insertPt) { in insert() 186 StringRef SymbolTable::getSymbolName(Operation *symbol) { in getSymbolName() 192 void SymbolTable::setSymbolName(Operation *symbol, StringRef name) { in setSymbolName() 198 SymbolTable::Visibility SymbolTable::getSymbolVisibility(Operation *symbol) { in getSymbolVisibility() 211 void SymbolTable::setSymbolVisibility(Operation *symbol, Visibility vis) { in setSymbolVisibility() 256 SymbolOpInterface symbol = dyn_cast<SymbolOpInterface>(op); in walkSymbolTables() local [all …]
|
/external/llvm-project/flang/include/flang/Semantics/ |
D | tools.h | 84 inline bool IsStmtFunction(const Symbol &symbol) { in IsStmtFunction() 125 inline bool IsPointer(const Symbol &symbol) { in IsPointer() 128 inline bool IsAllocatable(const Symbol &symbol) { in IsAllocatable() 131 inline bool IsAllocatableOrPointer(const Symbol &symbol) { in IsAllocatableOrPointer() 134 inline bool IsNamedConstant(const Symbol &symbol) { in IsNamedConstant() 137 inline bool IsOptional(const Symbol &symbol) { in IsOptional() 140 inline bool IsIntentIn(const Symbol &symbol) { in IsIntentIn() 143 inline bool IsIntentInOut(const Symbol &symbol) { in IsIntentInOut() 146 inline bool IsIntentOut(const Symbol &symbol) { in IsIntentOut() 149 inline bool IsProtected(const Symbol &symbol) { in IsProtected() [all …]
|
/external/libgav1/libgav1/src/utils/ |
D | entropy_decoder.cc | 63 void UpdateCdf(uint16_t* const cdf, const int symbol_count, const int symbol) { in UpdateCdf() 171 void UpdateCdf5(uint16_t* const cdf, const int symbol) { in UpdateCdf5() 198 void UpdateCdf7To9(uint16_t* const cdf, const int symbol) { in UpdateCdf7To9() 219 void UpdateCdf7(uint16_t* const cdf, const int symbol) { in UpdateCdf7() 223 void UpdateCdf8(uint16_t* const cdf, const int symbol) { in UpdateCdf8() 227 void UpdateCdf9(uint16_t* const cdf, const int symbol) { in UpdateCdf9() 232 void UpdateCdf11(uint16_t* const cdf, const int symbol) { in UpdateCdf11() 269 void UpdateCdf13(uint16_t* const cdf, const int symbol) { in UpdateCdf13() 302 void UpdateCdf16(uint16_t* const cdf, const int symbol) { in UpdateCdf16() 354 void UpdateCdf5(uint16_t* const cdf, const int symbol) { in UpdateCdf5() [all …]
|
/external/llvm-project/flang/lib/Semantics/ |
D | tools.cpp | 46 const Scope &GetTopLevelUnitContaining(const Symbol &symbol) { in GetTopLevelUnitContaining() 70 const Scope &GetProgramUnitContaining(const Symbol &symbol) { in GetProgramUnitContaining() 155 bool IsGenericDefinedOp(const Symbol &symbol) { in IsGenericDefinedOp() 185 bool IsUseAssociated(const Symbol &symbol, const Scope &scope) { in IsUseAssociated() 198 bool DoesScopeContain(const Scope *maybeAncestor, const Symbol &symbol) { in DoesScopeContain() 202 static const Symbol &FollowHostAssoc(const Symbol &symbol) { in FollowHostAssoc() 212 bool IsHostAssociated(const Symbol &symbol, const Scope &scope) { in IsHostAssociated() 218 bool IsInStmtFunction(const Symbol &symbol) { in IsInStmtFunction() 225 bool IsStmtFunctionDummy(const Symbol &symbol) { in IsStmtFunctionDummy() 229 bool IsStmtFunctionResult(const Symbol &symbol) { in IsStmtFunctionResult() [all …]
|
D | mod-file.cpp | 73 SubprogramSymbolCollector(const Symbol &symbol, const Scope &scope) in SubprogramSymbolCollector() 96 for (const Symbol &symbol : evaluate::CollectSymbols(expr)) { in DoExpr() local 118 auto *symbol{scope.symbol()}; in WriteOne() local 134 void ModFileWriter::Write(const Symbol &symbol) { in Write() 149 std::string ModFileWriter::GetAsString(const Symbol &symbol) { in GetAsString() 186 for (const Symbol &symbol : sorted) { in PutSymbols() local 189 for (const Symbol &symbol : uses) { in PutSymbols() local 204 llvm::raw_ostream &typeBindings, const Symbol &symbol) { in PutSymbol() 313 void ModFileWriter::PutSubprogram(const Symbol &symbol) { in PutSubprogram() 383 static bool IsIntrinsicOp(const Symbol &symbol) { in IsIntrinsicOp() [all …]
|
/external/grpc-grpc/src/compiler/ |
D | objective_c_generator_helpers.h | 52 inline ::grpc::string PreprocConditional(::grpc::string symbol, bool invert) { in PreprocConditional() 57 inline ::grpc::string PreprocIf(const ::grpc::string& symbol, in PreprocIf() 63 inline ::grpc::string PreprocIfNot(const ::grpc::string& symbol, in PreprocIfNot() 69 inline ::grpc::string PreprocIfElse(const ::grpc::string& symbol, in PreprocIfElse() 76 inline ::grpc::string PreprocIfNotElse(const ::grpc::string& symbol, in PreprocIfNotElse()
|
/external/python/cpython3/Tools/c-analyzer/c_analyzer/symbols/ |
D | find.py | 20 def _resolve_known(symbol, knownvars): argument 54 def resolve(symbol): argument 68 def resolve(symbol): argument 71 def resolve(symbol): argument 78 def resolve(symbol): argument 115 def symbol(symbol, filenames, known=None, *, argument
|
/external/lzma/Java/SevenZip/Compression/RangeCoder/ |
D | BitTreeEncoder.java | 20 public void Encode(Encoder rangeEncoder, int symbol) throws IOException in Encode() 32 public void ReverseEncode(Encoder rangeEncoder, int symbol) throws IOException in ReverseEncode() 44 public int GetPrice(int symbol) in GetPrice() 58 public int ReverseGetPrice(int symbol) in ReverseGetPrice() 73 int NumBitLevels, int symbol) in ReverseGetPrice() 88 Encoder rangeEncoder, int NumBitLevels, int symbol) throws IOException in ReverseEncode()
|
/external/python/cpython3/Lib/ |
D | codeop.py | 69 def _maybe_compile(compiler, source, filename, symbol): argument 110 def _compile(source, filename, symbol): argument 113 def compile_command(source, filename="<input>", symbol="single"): argument 142 def __call__(self, source, filename, symbol): argument 159 def __call__(self, source, filename="<input>", symbol="single"): argument
|
/external/rust/crates/grpcio-sys/grpc/src/compiler/ |
D | objective_c_generator_helpers.h | 62 inline ::std::string PreprocConditional(::std::string symbol, bool invert) { in PreprocConditional() 67 inline ::std::string PreprocIf(const ::std::string& symbol, in PreprocIf() 73 inline ::std::string PreprocIfNot(const ::std::string& symbol, in PreprocIfNot() 79 inline ::std::string PreprocIfElse(const ::std::string& symbol, in PreprocIfElse() 86 inline ::std::string PreprocIfNotElse(const ::std::string& symbol, in PreprocIfNotElse()
|
/external/python/cpython2/Lib/ |
D | codeop.py | 68 def _maybe_compile(compiler, source, filename, symbol): argument 101 def _compile(source, filename, symbol): argument 104 def compile_command(source, filename="<input>", symbol="single"): argument 132 def __call__(self, source, filename, symbol): argument 149 def __call__(self, source, filename="<input>", symbol="single"): argument
|
/external/mesa3d/src/gallium/frontends/clover/core/ |
D | module.hpp | 130 struct symbol { struct 131 symbol(const std::string &name, const std::string &attributes, in symbol() function 139 symbol() : name(), attributes(), reqd_work_group_size({0, 0, 0}), in symbol() function 142 std::string name; 143 std::string attributes; 144 std::vector<::size_t> reqd_work_group_size; 145 resource_id section; 146 size_t offset; 147 std::vector<argument> args;
|
/external/llvm-project/mlir/include/mlir/IR/ |
D | SymbolTable.h | 117 static T lookupNearestSymbolFrom(Operation *from, StringRef symbol) { in lookupNearestSymbolFrom() 121 static T lookupNearestSymbolFrom(Operation *from, SymbolRefAttr symbol) { in lookupNearestSymbolFrom() 246 T lookupNearestSymbolFrom(Operation *from, StringRef symbol) { in lookupNearestSymbolFrom() 250 T lookupNearestSymbolFrom(Operation *from, SymbolRefAttr symbol) { in lookupNearestSymbolFrom() 295 Operation *lookupSymbol(SymbolRefAttr symbol) { in lookupSymbol() 299 T lookupSymbol(SymbolRefAttr symbol) { in lookupSymbol()
|
/external/swiftshader/src/OpenGL/compiler/ |
D | ValidateLimitations.cpp | 21 bool IsLoopIndex(const TIntermSymbol* symbol, const TLoopStack& stack) { in IsLoopIndex() 29 void MarkLoopForUnroll(const TIntermSymbol* symbol, TLoopStack& stack) { in MarkLoopForUnroll() 57 virtual void visitSymbol(TIntermSymbol* symbol) { in visitSymbol() 84 virtual void visitSymbol(TIntermSymbol* symbol) { in visitSymbol() 258 TIntermSymbol* symbol = declInit->getLeft()->getAsSymbolNode(); in validateForLoopInit() local 300 TIntermSymbol* symbol = binOp->getLeft()->getAsSymbolNode(); in validateForLoopCond() local 358 TIntermSymbol* symbol = nullptr; in validateForLoopExpr() local 421 TIntermSymbol* symbol = params[i]->getAsSymbolNode(); in validateFunctionCall() local 432 TSymbol* symbol = symbolTable.find(node->getName(), GetGlobalParseContext()->getShaderVersion()); in validateFunctionCall() local 456 const TIntermSymbol* symbol = operand->getAsSymbolNode(); in validateOperation() local
|
/external/angle/src/compiler/translator/ |
D | ValidateOutputs.cpp | 24 void error(const TIntermSymbol &symbol, const char *reason, TDiagnostics *diagnostics) in error() 59 void ValidateOutputsTraverser::visitSymbol(TIntermSymbol *symbol) in visitSymbol() 97 for (const auto &symbol : mOutputs) in validate() local 149 for (const auto &symbol : mUnspecifiedLocationOutputs) in validate() local 160 for (const auto &symbol : mYuvOutputs) in validate() local
|
/external/libxml2/ |
D | xmlmodule.c | 119 xmlModuleSymbol(xmlModulePtr module, const char *name, void **symbol) in xmlModuleSymbol() 248 xmlModulePlatformSymbol(void *handle, const char *name, void **symbol) in xmlModulePlatformSymbol() 292 xmlModulePlatformSymbol(void *handle, const char *name, void **symbol) in xmlModulePlatformSymbol() 341 xmlModulePlatformSymbol(void *handle, const char *name, void **symbol) in xmlModulePlatformSymbol() 348 *symbol = GetProcAddressA(handle, name); in xmlModulePlatformSymbol() local 400 xmlModulePlatformSymbol(void *handle, const char *name, void **symbol) in xmlModulePlatformSymbol() 455 xmlModulePlatformSymbol(void *handle, const char *name, void **symbol) in xmlModulePlatformSymbol()
|
/external/lzma/C/ |
D | Ppmd7Dec.c | 57 UInt32 symbol; in Range_DecodeBit() local 93 Byte symbol; in Ppmd7_DecodeSymbol() local 106 Byte symbol; in Ppmd7_DecodeSymbol() local 129 Byte symbol; in Ppmd7_DecodeSymbol() local 174 Byte symbol; in Ppmd7_DecodeSymbol() local
|
/external/mesa3d/src/mesa/program/ |
D | symbol_table.c | 30 struct symbol { struct 35 * Link to the next symbol in the table with the same name argument 40 struct symbol *next_with_same_name; argument 48 struct symbol *next_with_same_scope; argument 68 struct symbol *symbols; argument
|
/external/llvm-project/lld/test/COFF/ |
D | comdat-selection.s | 21 .globl symbol symbol 22 symbol: label
|
D | comdat-gcc-compatibility.s | 11 .globl symbol symbol 12 symbol: label
|
D | comdat-selection-associative-largest.s | 16 .globl symbol symbol 17 symbol: label
|
/external/toybox/kconfig/ |
D | expr.h | 71 struct symbol { struct 72 struct symbol *next; argument 75 enum symbol_type type; argument 76 struct symbol_value curr; argument 77 struct symbol_value def[4]; argument 85 #define for_all_symbols(i, sym) for (i = 0; i < 257; i++) for (sym = symbol_hash[i]; sym; sym = sym… argument
|