/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/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/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()
|
D | BitTreeDecoder.java | 30 int symbol = 0; in ReverseDecode() local 45 int symbol = 0; in ReverseDecode() local
|
/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/python/cpython3/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/state_trackers/clover/core/ |
D | module.hpp | 107 struct symbol { struct 108 symbol(const std::string &name, resource_id section, in symbol() function 111 symbol() : name(), section(0), offset(0), args() { } in symbol() function 113 std::string name; 114 resource_id section; 115 size_t offset; 116 std::vector<argument> args;
|
/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/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/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/mesa3d/src/mesa/program/ |
D | symbol_table.c | 29 struct symbol { struct 34 * Link to the next symbol in the table with the same name argument 39 struct symbol *next_with_same_name; argument 47 struct symbol *next_with_same_scope; argument 67 struct symbol *symbols; argument
|
/external/python/cpython3/Lib/test/ |
D | test_codeop.py | 22 def assertValid(self, str, symbol='single'): argument 45 def assertIncomplete(self, str, symbol='single'): argument 49 def assertInvalid(self, str, symbol='single', is_syntax=1): argument
|
/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
|
/external/python/cpython2/Lib/test/ |
D | test_codeop.py | 22 def assertValid(self, str, symbol='single'): argument 45 def assertIncomplete(self, str, symbol='single'): argument 49 def assertInvalid(self, str, symbol='single', is_syntax=1): argument
|
/external/catch2/include/internal/ |
D | catch_tostring.cpp | 244 std::string ratio_string<std::atto>::symbol() { return "a"; } in symbol() function in Catch::ratio_string::atto 245 std::string ratio_string<std::femto>::symbol() { return "f"; } in symbol() function in Catch::ratio_string::femto 246 std::string ratio_string<std::pico>::symbol() { return "p"; } in symbol() function in Catch::ratio_string::pico 247 std::string ratio_string<std::nano>::symbol() { return "n"; } in symbol() function in Catch::ratio_string::nano 248 std::string ratio_string<std::micro>::symbol() { return "u"; } in symbol() function in Catch::ratio_string::micro 249 std::string ratio_string<std::milli>::symbol() { return "m"; } in symbol() function in Catch::ratio_string::milli
|
/external/grpc-grpc/src/csharp/Grpc.Core/Internal/ |
D | UnmanagedLibrary.cs | 187 internal static extern IntPtr dlsym(IntPtr handle, string symbol); in dlsym() 196 internal static extern IntPtr dlsym(IntPtr handle, string symbol); in dlsym() 212 internal static extern IntPtr dlsym(IntPtr handle, string symbol); in dlsym() 226 internal static extern IntPtr dlsym(IntPtr handle, string symbol); in dlsym()
|
/external/autotest/client/common_lib/test_utils/ |
D | mock.py | 135 def __init__(self, symbol, return_obj, *args, **dargs): argument 172 def __init__(self, symbol, return_val, *args, **dargs): argument 192 def __init__(self, symbol, default_return_val=None, argument 232 def __init__(self, symbol, original_function, default_return_val=None, argument 362 def create_mock_function(self, symbol, default_return_val=None): argument 391 def stub_with(self, namespace, symbol, new_attribute): argument 409 def stub_function(self, namespace, symbol): argument 414 def stub_class_method(self, cls, symbol): argument 419 def stub_class(self, namespace, symbol): argument 425 def stub_function_to_return(self, namespace, symbol, object_to_return): argument [all …]
|
/external/brotli/c/enc/ |
D | utf8_util.c | 18 int* symbol, const uint8_t* input, size_t size) { in BrotliParseAsUTF8() 74 int symbol; in BrotliIsMostlyUTF8() local
|
/external/u-boot/scripts/kconfig/ |
D | expr.h | 83 struct symbol { struct 85 struct symbol *next; argument 91 enum symbol_type type; argument 94 * The calculated value of the symbol. The SYMBOL_VALID bit is set in argument 98 struct symbol_value curr; argument 104 struct symbol_value def[S_DEF_COUNT]; argument 136 #define SYMBOL_CONST 0x0001 /* symbol is const */ argument
|
/external/xz-java/src/org/tukaani/xz/rangecoder/ |
D | RangeEncoder.java | 128 public void encodeBitTree(short[] probs, int symbol) throws IOException { in encodeBitTree() 144 public static int getBitTreePrice(short[] probs, int symbol) { in getBitTreePrice() 157 public void encodeReverseBitTree(short[] probs, int symbol) in encodeReverseBitTree() 170 public static int getReverseBitTreePrice(short[] probs, int symbol) { in getReverseBitTreePrice()
|
/external/v8/src/runtime/ |
D | runtime-symbol.cc | 17 Handle<Symbol> symbol = isolate->factory()->NewPrivateSymbol(); in RUNTIME_FUNCTION() local 29 Handle<Symbol> symbol = isolate->factory()->NewPrivateFieldSymbol(); in RUNTIME_FUNCTION() local
|
/external/tensorflow/tensorflow/compiler/xla/service/cpu/ |
D | custom_call_target_registry.h | 60 #define REGISTER_CUSTOM_CALL_TARGET_WITH_SYM_HELPER(symbol, address, counter) \ argument 65 #define REGISTER_CUSTOM_CALL_TARGET_WITH_SYM(symbol, address) \ argument
|
/external/toybox/scripts/ |
D | config2help.c | 114 struct symbol { struct 115 struct symbol *next; argument 116 int enabled, help_indent; 117 char *name, *depends; 118 struct double_list *help;
|
/external/syzkaller/syz-manager/ |
D | cover.go | 26 type symbol struct { struct 27 start uint64 28 end uint64 29 name string
|
/external/icu/icu4c/source/test/intltest/ |
D | tsdtfmsy.cpp | 44 DateFormatSymbols *symbol; in TestGetMonths() local 63 DateFormatSymbols *symbol; in TestGetMonths2() local 88 DateFormatSymbols *symbol; in TestGetWeekdays2() local 116 DateFormatSymbols *symbol; in TestGetEraNames() local 147 DateFormatSymbols *symbol=new DateFormatSymbols(Locale::getEnglish(), status); in TestGetSetSpecificItems() local
|