Searched defs:symbol (Results 26 - 50 of 246) sorted by relevance

12345678910

/external/qemu/distrib/sdl-1.2.15/src/loadso/macos/
H A DSDL_sysloadso.c79 void *symbol = NULL; local
87 (char **)&symbol, &class) != noErr ) {
91 if ( symbol == NULL ) {
94 return(symbol);
/external/qemu/distrib/sdl-1.2.15/src/loadso/os2/
H A DSDL_sysloadso.c52 void *symbol = NULL; local
53 APIRET ulrc = DosQueryProcAddr((HMODULE)handle, 0, (char *)name, &symbol);
59 if (symbol == NULL)
62 return(symbol);
/external/qemu/distrib/sdl-1.2.15/src/loadso/win32/
H A DSDL_sysloadso.c86 void *symbol = NULL; local
98 symbol = (void *)GetProcAddress((HMODULE)handle, name_t);
99 if ( symbol == NULL ) {
115 symbol = (void *)GetProcAddress((HMODULE)handle, name);
116 if ( symbol == NULL ) {
126 if ( symbol == NULL ) {
129 return(symbol);
/external/chromium_org/third_party/angle/src/compiler/translator/
H A DInitializeVariables.cpp93 TIntermSymbol *symbol = new TIntermSymbol(0, varInfo.name, varInfo.type); local
94 indexDirect->setLeft(symbol);
108 TIntermSymbol *symbol = new TIntermSymbol(0, varInfo.name, varInfo.type); local
109 assign->setLeft(symbol);
H A DValidateOutputs.cpp20 void ValidateOutputs::visitSymbol(TIntermSymbol *symbol) argument
22 TString name = symbol->getSymbol();
23 TQualifier qualifier = symbol->getQualifier();
32 const TType &type = symbol->getType();
37 error(symbol->getLine(), "must explicitly specify all locations when using multiple fragment outputs", name.c_str());
51 error(symbol->getLine(), "output location must be < MAX_DRAW_BUFFERS", name.c_str());
57 mOutputMap[offsetLocation] = symbol;
66 error(symbol->getLine(), strstr.str().c_str(), name.c_str());
H A DLoopInfo.cpp99 TIntermSymbol *symbol = declInit->getLeft()->getAsSymbolNode(); local
101 mId = symbol->getId();
102 mType = symbol->getBasicType();
152 TIntermLoop *TLoopStack::findLoop(TIntermSymbol *symbol) argument
154 if (!symbol)
158 if (iter->index.getId() == symbol->getId())
164 TLoopIndexInfo *TLoopStack::getIndexInfo(TIntermSymbol *symbol) argument
166 if (!symbol)
170 if (iter->index.getId() == symbol->getId())
188 bool TLoopStack::needsToReplaceSymbolWithValue(TIntermSymbol *symbol) argument
194 getLoopIndexValue(TIntermSymbol *symbol) argument
[all...]
/external/chromium_org/third_party/libxml/src/
H A Dxmlmodule.c98 * @name: the name of the symbol
99 * @symbol: the resulting symbol address
101 * Lookup for a symbol address in the given module
103 * Returns 0 if the symbol was found, or -1 in case of error
106 xmlModuleSymbol(xmlModulePtr module, const char *name, void **symbol) argument
110 if ((NULL == module) || (symbol == NULL)) {
117 rc = xmlModulePlatformSymbol(module->handle, name, symbol);
123 "failed to find symbol: %s\n",
231 * returns 0 on success and the loaded symbol i
235 xmlModulePlatformSymbol(void *handle, const char *name, void **symbol) argument
279 xmlModulePlatformSymbol(void *handle, const char *name, void **symbol) argument
327 xmlModulePlatformSymbol(void *handle, const char *name, void **symbol) argument
377 xmlModulePlatformSymbol(void *handle, const char *name, void **symbol) argument
432 xmlModulePlatformSymbol(void *handle, const char *name, void **symbol) argument
[all...]
/external/chromium_org/third_party/webrtc/base/
H A Dlatebindingsymboltable.cc42 void **symbol) {
44 *symbol = dlsym(handle, symbol_name);
47 LOG(LS_ERROR) << "Error loading symbol " << symbol_name << ": " << err;
49 } else if (!*symbol) {
96 // RTLD_NOW front-loads symbol resolution so that errors are
99 // seeing symbol definitions in the newly-loaded tree. This
104 // RTLD_DEEPBIND makes symbol dependencies in the
40 LoadSymbol(DllHandle handle, const char *symbol_name, void **symbol) argument
/external/chromium_org/tools/memory_inspector/memory_inspector/data/
H A Dfile_storage_unittest.py15 from memory_inspector.core import symbol namespace
101 symbols = symbol.Symbols()
103 symbols.Add('foo.so', 1, symbol.Symbol('sym1', 'file1.c', 11))
104 symbols.Add('bar.so', 2, symbol.Symbol('sym2', 'file2.c', 12))
105 sym3 = symbol.Symbol('sym3', 'file2.c', 13)
/external/libxml2/
H A Dxmlmodule.c102 * @name: the name of the symbol
103 * @symbol: the resulting symbol address
105 * Lookup for a symbol address in the given module
111 * Returns 0 if the symbol was found, or -1 in case of error
114 xmlModuleSymbol(xmlModulePtr module, const char *name, void **symbol) argument
118 if ((NULL == module) || (symbol == NULL)) {
125 rc = xmlModulePlatformSymbol(module->handle, name, symbol);
131 "failed to find symbol: %s\n",
239 * returns 0 on success and the loaded symbol i
243 xmlModulePlatformSymbol(void *handle, const char *name, void **symbol) argument
287 xmlModulePlatformSymbol(void *handle, const char *name, void **symbol) argument
335 xmlModulePlatformSymbol(void *handle, const char *name, void **symbol) argument
392 xmlModulePlatformSymbol(void *handle, const char *name, void **symbol) argument
447 xmlModulePlatformSymbol(void *handle, const char *name, void **symbol) argument
[all...]
/external/lldb/examples/python/
H A Ddisasm.py83 # See if we have a symbol in the symbol table for where we stopped
84 symbol = frame.GetSymbol(); variable
85 if symbol:
86 # We do have a symbol, print some info for the symbol
87 print symbol
88 # Now get all instructions for this symbol and print them
89 insts = symbol.GetInstructions(target)
/external/lzma/CS/7zip/Compress/RangeCoder/
H A DRangeCoderBitTree.cs22 public void Encode(Encoder rangeEncoder, UInt32 symbol) argument
28 UInt32 bit = (symbol >> bitIndex) & 1;
34 public void ReverseEncode(Encoder rangeEncoder, UInt32 symbol) argument
39 UInt32 bit = symbol & 1;
42 symbol >>= 1;
46 public UInt32 GetPrice(UInt32 symbol) argument
53 UInt32 bit = (symbol >> bitIndex) & 1;
60 public UInt32 ReverseGetPrice(UInt32 symbol) argument
66 UInt32 bit = symbol & 1;
67 symbol >>
74 ReverseGetPrice(BitEncoder[] Models, UInt32 startIndex, int NumBitLevels, UInt32 symbol) argument
89 ReverseEncode(BitEncoder[] Models, UInt32 startIndex, Encoder rangeEncoder, int NumBitLevels, UInt32 symbol) argument
[all...]
/external/oprofile/libpp/
H A Dsymbol_container.cpp32 symbol_entry * symbol = const_cast<symbol_entry*>(&*p.first); local
33 symbol->sample.counts += symb.sample.counts;
45 symbol_entry symbol; local
46 symbol.sample.file_loc.filename = filename;
47 symbol.sample.file_loc.linenr = linenr;
52 pair<it, it> p_it = symbols_by_loc.equal_range(&symbol);
65 symbol_entry symbol; local
66 symbol.sample.file_loc.filename = filename;
67 symbol.sample.file_loc.linenr = 0;
70 it first = symbols_by_loc.lower_bound(&symbol);
[all...]
/external/bison/src/
H A Dparse-gram.y66 static symbol *current_lhs_symbol;
71 /** Set the new current left-hand side symbol, possibly common
76 current_lhs(symbol *sym, location loc, named_ref *ref)
116 symbol *symbol;
201 /* braceless is not to be used for rule or symbol actions, as it
219 %type <symbol> id id_colon string_as_id symbol symbol.prec
220 %printer { fprintf (stderr, "%s", $$->tag); } <symbol>
655 symbol: label
[all...]
H A Dsymtab.h23 * \brief Manipulating ::symbol.
52 typedef struct symbol symbol; typedef in typeref:struct:symbol
56 struct symbol struct
58 /** The key, name of the symbol. */
74 /** Any \c \%destructor declared specifically for this symbol.
76 Access this field only through <tt>symbol</tt>'s interface
77 functions. For example, if <tt>symbol::destructor = NULL</tt>, a
83 /** Any \c \%printer declared specifically for this symbol.
85 Access this field only through <tt>symbol</t
[all...]
/external/chromium_org/third_party/WebKit/Source/core/inspector/
H A DScriptArguments.cpp132 bool append(v8::Handle<v8::Symbol> symbol) argument
135 bool result = append(symbol->Name(), IgnoreUndefined);
/external/chromium_org/third_party/android_crazy_linker/src/src/
H A Dcrazy_linker_elf_symbols.cpp14 // Compute the ELF hash of a given symbol.
127 const ELF::Sym* symbol = &symbol_table_[n]; local
128 // Check that the symbol has the appropriate name.
129 if (strcmp(string_table_ + symbol->st_name, symbol_name))
132 if (symbol->st_shndx == SHN_UNDEF)
135 switch (ELF_ST_BIND(symbol->st_info)) {
138 return symbol;
/external/chromium_org/third_party/angle/src/compiler/translator/depgraph/
H A DDependencyGraph.cpp47 TGraphSymbol* symbol = NULL; local
51 symbol = pair.second;
53 symbol = new TGraphSymbol(intermSymbol);
54 mAllNodes.push_back(symbol);
56 TSymbolIdPair pair(intermSymbol->getId(), symbol);
61 mSamplerSymbols.push_back(symbol);
64 return symbol;
/external/chromium_org/third_party/brotli/src/brotli/dec/
H A Dhuffman.c54 processed symbol */
74 int symbol; /* symbol index in original or sorted table */ local
92 for (symbol = 0; symbol < code_lengths_size; symbol++) {
93 count[code_lengths[symbol]]++;
96 /* generate offsets into sorted symbol table by code length */
102 /* sort symbols by length, by symbol order within each length */
103 for (symbol
[all...]
/external/chromium_org/third_party/fips181/
H A Dconvert.cc166 ** symb2name - convert symbol to it's name
168 ** char * - one symbol syllable
179 char symbol; member in struct:ssymb_names
234 if(*syllable == ssn[i].symbol)
261 char symbol; member in struct:char_spell
372 if (word[i] == cs[j].symbol)
387 if (word[i] == cs[j].symbol)
391 /* Place the hyphen after each symbol */
/external/chromium_org/third_party/icu/source/samples/numfmt/
H A Dmain.cpp97 * while the currency symbol and number of decimals are set for
115 // the currency symbol
145 // Unicode string with the desired currency display symbol or name
146 UChar symbol[16]; member in struct:__anon12163
175 symbols.setSymbol(DecimalFormatSymbols::kCurrencySymbol, currencyMap[i].symbol);
186 * while the currency symbol and number of decimals are set for
/external/chromium_org/third_party/mesa/src/src/gallium/targets/egl-static/
H A Degl_st.c101 const char symbol[] = "st_api_create_OpenGL"; local
104 stapi = load_gl(module, symbol);
113 stapi = load_gl(module, symbol);
/external/chromium_org/third_party/mesa/src/src/glx/
H A Dapplegl_glx.c106 applegl_get_proc_address(const char *symbol) argument
108 return dlsym(apple_cgl_get_dl_handle(), symbol);
/external/chromium_org/third_party/skia/tools/
H A DCrashHandler.cpp146 // Buffer to store symbol name in.
153 IMAGEHLP_SYMBOL64* symbol = reinterpret_cast<IMAGEHLP_SYMBOL64*>(&buffer); local
154 symbol->SizeOfStruct = sizeof(IMAGEHLP_SYMBOL64);
155 symbol->MaxNameLength = kMaxNameLength - 1;
157 // Translate the current PC into a symbol and byte offset from the symbol.
159 SymGetSymFromAddr64(hProcess, frame.AddrPC.Offset, &offset, symbol);
161 SkDebugf("%s +%x\n", symbol->Name, offset);
/external/chromium_org/third_party/tcmalloc/chromium/src/base/
H A Delf_mem_image.h33 // Allow dynamic symbol lookup for in-memory Elf images.
44 // symbol extensions in glibc, but for right now we need them.
60 // Information about a single vdso symbol.
66 // for unversioned symbol.
67 const void *address; // Relocated symbol address.
68 const ElfW(Sym) *symbol; // Symbol in the dynamic symbol table. member in struct:base::ElfMemImage::SymbolInfo
105 // Look up versioned dynamic symbol in the image.
107 // symbol/version/type combination.
112 // Find info about symbol (i
[all...]

Completed in 644 milliseconds

12345678910