Searched defs:symbol (Results 1 - 25 of 240) sorted by relevance

12345678910

/external/llvm/test/MC/Mips/
H A Dmacro-dla-32bit.s156 symbol: # CHECK-LABEL: symbol: label
H A Dmacro-dla.s633 symbol: # CHECK-LABEL: symbol: label
707 #dla $5, symbol
/external/v8/src/runtime/
H A Druntime-symbol.cc20 Handle<Symbol> symbol = isolate->factory()->NewSymbol(); local
21 if (name->IsString()) symbol->set_name(*name);
22 return *symbol;
31 Handle<Symbol> symbol = isolate->factory()->NewPrivateSymbol(); local
32 if (name->IsString()) symbol->set_name(*name);
33 return *symbol;
40 CONVERT_ARG_CHECKED(Symbol, symbol, 0);
41 return symbol->name();
48 CONVERT_ARG_HANDLE_CHECKED(Symbol, symbol, 0);
51 if (symbol
[all...]
/external/chromium-trace/catapult/common/py_utils/py_utils/refactor/annotated_symbol/
H A Dclass_definition.py5 import symbol namespace
20 if symbol_type != symbol.stmt:
24 if compound_statement.type != symbol.compound_stmt:
28 if statement.type == symbol.classdef:
30 elif (statement.type == symbol.decorated and
31 statement.children[-1].type == symbol.classdef):
H A Dfunction_definition.py5 import symbol namespace
20 if symbol_type != symbol.stmt:
24 if compound_statement.type != symbol.compound_stmt:
28 if statement.type == symbol.funcdef:
30 elif (statement.type == symbol.decorated and
31 statement.children[-1].type == symbol.funcdef):
H A Dreference.py6 import symbol namespace
23 if nodes[0].type != symbol.atom:
31 if nodes[i].type != symbol.trailer:
75 self._children.append(snippet.Symbol(symbol.trailer, token_snippets))
/external/elfutils/libebl/
H A Deblsymboltypename.c1 /* Return symbol type name.
39 ebl_symbol_type_name (Ebl *ebl, int symbol, char *buf, size_t len) argument
43 res = ebl != NULL ? ebl->symbol_type_name (symbol, buf, len) : NULL;
58 if (symbol < STT_NUM)
59 res = stt_names[symbol];
64 if (symbol >= STT_LOPROC && symbol <= STT_HIPROC)
65 snprintf (buf, len, "LOPROC+%d", symbol - STT_LOPROC);
66 else if (symbol == STT_GNU_IFUNC
70 else if (symbol >
[all...]
/external/iptables/extensions/
H A Dtos_values.c29 const struct tos_symbol_info *symbol; local
34 for (symbol = tos_symbol_names; symbol->name != NULL; ++symbol)
35 if (value == symbol->value) {
36 printf(" %s%s", prefix, symbol->name);
/external/python/cpython2/PC/
H A Dtestpy.py15 import symbol namespace
17 print """Could not import the standard "symbol" module. If this is
/external/python/cpython3/PC/
H A Dtestpy.py15 import symbol namespace
17 print("""Could not import the standard "symbol" module. If this is
/external/tensorflow/tensorflow/compiler/xla/service/cpu/
H A Dcustom_call_target_registry.cc26 void CustomCallTargetRegistry::Register(const std::string& symbol, argument
29 registered_symbols_[symbol] = address;
32 void* CustomCallTargetRegistry::Lookup(const std::string& symbol) const {
34 auto it = registered_symbols_.find(symbol);
/external/libxml2/doc/
H A Dlibxml-doc.el28 ;; (autoload 'libxmldoc-lookup-symbol "~/elisp/libxml-doc"
31 ;; (autoload 'libxmldoc-lookup-symbol "libxml-doc"
44 ;; call M-x libxmldoc-lookup-symbol: this will prompt with completion and
46 ;; point matches a symbol, that is used instead. You can also call
47 ;; libxmldoc-lookup-symbol noninteractively and pass the symbol.
61 ;; Wed Jun 21 01:45:29 2000: added libxmldoc-lookup-symbol-at-point
62 ;; Wed Jun 21 23:37:58 2000: libxmldoc-lookup-symbol now uses
63 ;; (thing-at-point 'word) if it matches a symbol
68 ;; - Changed the 'word match from thing-at-point into 'symbol
[all...]
/external/brotli/c/enc/
H A Dutf8_util.c18 int* symbol, const uint8_t* input, size_t size) {
21 *symbol = input[0];
22 if (*symbol > 0) {
30 *symbol = (((input[0] & 0x1f) << 6) |
32 if (*symbol > 0x7f) {
41 *symbol = (((input[0] & 0x0f) << 12) |
44 if (*symbol > 0x7ff) {
54 *symbol = (((input[0] & 0x07) << 18) |
58 if (*symbol > 0xffff && *symbol <
17 BrotliParseAsUTF8( int* symbol, const uint8_t* input, size_t size) argument
74 int symbol; local
[all...]
/external/easymock/src/org/easymock/
H A DLogicalOperator.java48 private String symbol; field in class:LogicalOperator
50 private LogicalOperator(String symbol) { argument
51 this.symbol = symbol;
55 return symbol;
/external/google-breakpad/src/common/android/
H A Dbreakpad_getcontext.S325 #define NESTED(symbol, framesize, rpc) \
326 .globl symbol; \
328 .type symbol,@function; \
329 .ent symbol,0; \
330 symbol: .frame sp, framesize, rpc; label
/external/libxcam/modules/isp/
H A Dhybrid_analyzer_loader.cpp29 HybridAnalyzerLoader::HybridAnalyzerLoader (const char *lib_path, const char *symbol) argument
30 : AnalyzerLoader (lib_path, symbol)
85 XCAM_LOG_DEBUG ("get symbol failed from lib");
94 XCAM_LOG_DEBUG ("get symbol failed, XCam3ADescription size is:%" PRIu32 ", but expect:%" PRIuS,
104 XCAM_LOG_DEBUG ("some functions in symbol not set from lib");
/external/libxcam/xcore/
H A Danalyzer_loader.cpp26 AnalyzerLoader::AnalyzerLoader (const char *lib_path, const char *symbol) argument
31 XCAM_ASSERT (symbol);
32 _symbol = strndup (symbol, XCAM_MAX_STR_SIZE);
57 XCAM_LOG_WARNING ("get symbol(%s) from lib:%s failed", _symbol, XCAM_STR (lib_path));
94 XCAM_LOG_DEBUG ("get symbol(%s) failed from lib(%s), reason:%s", _symbol, XCAM_STR (_path), dlerror ());
H A Ddynamic_analyzer_loader.cpp29 DynamicAnalyzerLoader::DynamicAnalyzerLoader (const char *lib_path, const char *symbol) argument
30 : AnalyzerLoader (lib_path, symbol)
64 XCAM_LOG_DEBUG ("get symbol failed from lib");
73 XCAM_LOG_DEBUG ("get symbol failed, XCam3ADescription size is:%" PRIu32 ", but expect:%" PRIuS,
83 XCAM_LOG_DEBUG ("some functions in symbol not set from lib");
/external/lzma/Java/SevenZip/Compression/RangeCoder/
H A DBitTreeEncoder.java20 public void Encode(Encoder rangeEncoder, int symbol) throws IOException argument
26 int bit = (symbol >>> bitIndex) & 1;
32 public void ReverseEncode(Encoder rangeEncoder, int symbol) throws IOException argument
37 int bit = symbol & 1;
40 symbol >>= 1;
44 public int GetPrice(int symbol) argument
51 int bit = (symbol >>> bitIndex) & 1;
58 public int ReverseGetPrice(int symbol) argument
64 int bit = symbol & 1;
65 symbol >>>
72 ReverseGetPrice(short[] Models, int startIndex, int NumBitLevels, int symbol) argument
87 ReverseEncode(short[] Models, int startIndex, Encoder rangeEncoder, int NumBitLevels, int symbol) argument
[all...]
/external/mesa3d/src/mesa/drivers/dri/
H A Dgen-symbol-redefs.py31 # ./gen-symbol-redefs.py i915/.libs/libi915_dri.a old_ i915 i830
32 # ./gen-symbol-redefs.py r200/.libs/libr200_dri.a r200_ r200
54 symbol = m.group(1) variable
56 has_good_prefix = re.match(args.newprefix, symbol) != None
58 if re.match(prefix, symbol):
65 if re.match("__driDriverGetExtensions", symbol):
68 print '#define {0:35} {1}{0}'.format(symbol, args.newprefix)
/external/swiftshader/src/Common/
H A DSharedLibrary.hpp120 void *symbol = dlsym(library, name); local
122 if(!symbol)
128 return symbol;
/external/swiftshader/third_party/subzero/src/
H A DIceFixups.cpp34 GlobalString AssemblerFixup::symbol() const { function in class:Ice::AssemblerFixup
57 Symbol = symbol().toString();
/external/tensorflow/tensorflow/core/platform/posix/
H A Dload_library.cc35 void** symbol) {
36 *symbol = dlsym(handle, symbol_name);
37 if (!*symbol) {
34 GetSymbolFromLibrary(void* handle, const char* symbol_name, void** symbol) argument
/external/webrtc/webrtc/modules/audio_device/linux/
H A Dlatebindingsymboltable_linux.cc70 void **symbol) {
72 *symbol = dlsym(handle, symbol_name);
76 "Error loading symbol %s : %d", symbol_name, err);
78 } else if (!*symbol) {
89 // This routine MUST assign SOME value for every symbol, even if that value is
68 LoadSymbol(DllHandle handle, const char *symbol_name, void **symbol) argument
/external/icu/icu4j/demos/src/com/ibm/icu/dev/demo/number/
H A DCurrencyDemo.java52 symbols.setCurrencySymbol(hack.symbol);
61 String symbol; field in class:CurrencyDemo.HackCurrencyInfo
62 HackCurrencyInfo(int decimals, double rounding, String symbol) { argument
65 this.symbol = symbol;

Completed in 1206 milliseconds

12345678910