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

/vbox/src/VBox/Devices/EFI/Firmware/BaseTools/Source/C/VfrCompile/Pccts/support/sym/
H A Dtemplate.h8 /* minimum symbol table record */
10 char *symbol; member in struct:_sym
/vbox/src/libs/libxml2-2.6.31/
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...]
H A Dtestapi.c29400 char * name; /* the name of the symbol */
29402 void ** symbol; /* the resulting symbol address */ local
29411 symbol = gen_void_ptr_ptr(n_symbol, 2);
29413 ret_val = xmlModuleSymbol(module, (const char *)name, symbol);
29418 des_void_ptr_ptr(n_symbol, symbol, 2);
[all...]
/vbox/src/libs/xpcom18a4/nsprpub/pr/src/md/unix/
H A Dnextstep.c74 /* If found the brk() symbol in the sahred libraries but no syscall() entry ...
187 NSSymbol symbol)
186 NSAddressOfSymbol( NSSymbol symbol) argument
/vbox/src/libs/xpcom18a4/xpcom/base/
H A DnsStackFrameUnix.cpp119 const char * symbol = info.dli_sname; local
121 if (!symbol || !(len = strlen(symbol))) {
129 DemangleSymbol(symbol, demangled, sizeof(demangled));
132 symbol = demangled;
133 len = strlen(symbol);
138 symbol, off, info.dli_fname, foff);
H A DnsStackFrameWin.cpp176 * and symbol information is not available.
287 // Now walk the stack and map the pc's to symbol names
324 // Attempt to load module info before we attempt to reolve the symbol.
333 PIMAGEHLP_SYMBOL symbol = (PIMAGEHLP_SYMBOL) buf; local
334 symbol->SizeOfStruct = sizeof(buf);
335 symbol->MaxNameLength = 512;
341 symbol);
344 fprintf(aStream, "%s+0x%08X\n", symbol->Name, displacement);
/vbox/src/libs/xpcom18a4/xpcom/components/
H A DxcDll.cpp315 void * nsDll::FindSymbol(const char *symbol) argument
317 if (symbol == NULL)
324 return(PR_FindSymbol(m_instance, symbol));
/vbox/src/libs/zlib-1.2.6/contrib/puff/
H A Dpuff.c65 * - Catch missing end-of-block symbol error
201 * symbol[] are the symbol values in canonical order, where the number of
207 short *symbol; /* canonically ordered symbols */ member in struct:huffman
211 * Decode a code from the stream s using huffman table h. Return the symbol or
240 int index; /* index of first code of length len in symbol table */
246 if (code - count < first) /* if length len, return symbol */
247 return h->symbol[index + (code - first)];
268 int index; /* index of first code of length len in symbol table */
283 if (code - count < first) { /* if length len, return symbol */
341 int symbol; /* current symbol when stepping through length[] */ local
439 int symbol; /* decoded symbol */ local
544 int symbol; local
703 int symbol; /* decoded value */ local
[all...]
/vbox/src/libs/zlib-1.2.6/contrib/blast/
H A Dblast.c93 * symbol[] are the symbol values in canonical order, where the number of
99 short *symbol; /* canonically ordered symbols */ member in struct:huffman
103 * Decode a code from the stream s using huffman table h. Return the symbol or
129 int index; /* index of first code of length len in symbol table */
144 if (code < first + count) { /* if length len, return symbol */
147 return h->symbol[index + (code - first)];
181 * enough bits will resolve to a symbol. If the return value is positive, then
187 int symbol; /* current symbol whe local
280 int symbol; /* decoded symbol, extra bits for distance */ local
[all...]
/vbox/src/VBox/Additions/WINNT/Graphics/Wine/libWine/
H A Dloader.c812 void *wine_dlsym( void *handle, const char *symbol, char *error, size_t errorsize ) argument
818 ret = dlsym( handle, symbol );
/vbox/src/VBox/Devices/EFI/Firmware/IntelFrameworkModulePkg/Library/LzmaCustomDecompressLib/Sdk/C/
H A DLzmaDec.c143 /* First LZMA-symbol is always decoded.
188 unsigned symbol; local
197 symbol = 1;
198 do { GET_BIT(prob + symbol, symbol) } while (symbol < 0x100);
204 symbol = 1;
211 probLit = prob + offs + bit + symbol;
212 GET_BIT2(probLit, symbol, offs &= ~bit, offs &= bit)
214 while (symbol <
544 unsigned symbol = 1; local
552 unsigned symbol = 1; local
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/BaseTools/Source/C/LzmaCompress/Sdk/C/
H A DLzmaDec.c124 /* First LZMA-symbol is always decoded.
169 unsigned symbol; local
178 symbol = 1;
179 do { GET_BIT(prob + symbol, symbol) } while (symbol < 0x100);
185 symbol = 1;
192 probLit = prob + offs + bit + symbol;
193 GET_BIT2(probLit, symbol, offs &= ~bit, offs &= bit)
195 while (symbol <
525 unsigned symbol = 1; local
533 unsigned symbol = 1; local
[all...]
H A DLzmaEnc.c586 static void RangeEnc_EncodeBit(CRangeEnc *p, CLzmaProb *prob, UInt32 symbol) argument
590 if (symbol == 0)
609 static void LitEnc_Encode(CRangeEnc *p, CLzmaProb *probs, UInt32 symbol) argument
611 symbol |= 0x100;
614 RangeEnc_EncodeBit(p, probs + (symbol >> 8), (symbol >> 7) & 1);
615 symbol <<= 1;
617 while (symbol < 0x10000);
620 static void LitEnc_EncodeMatched(CRangeEnc *p, CLzmaProb *probs, UInt32 symbol, UInt32 matchByte) argument
623 symbol |
670 LitEnc_GetPrice(const CLzmaProb *probs, UInt32 symbol, UInt32 *ProbPrices) argument
683 LitEnc_GetPriceMatched(const CLzmaProb *probs, UInt32 symbol, UInt32 matchByte, UInt32 *ProbPrices) argument
700 RcTree_Encode(CRangeEnc *rc, CLzmaProb *probs, int numBitLevels, UInt32 symbol) argument
714 RcTree_ReverseEncode(CRangeEnc *rc, CLzmaProb *probs, int numBitLevels, UInt32 symbol) argument
727 RcTree_GetPrice(const CLzmaProb *probs, int numBitLevels, UInt32 symbol, UInt32 *ProbPrices) argument
739 RcTree_ReverseGetPrice(const CLzmaProb *probs, int numBitLevels, UInt32 symbol, UInt32 *ProbPrices) argument
767 LenEnc_Encode(CLenEnc *p, CRangeEnc *rc, UInt32 symbol, UInt32 posState) argument
826 LenEnc_Encode2(CLenPriceEnc *p, CRangeEnc *rc, UInt32 symbol, UInt32 posState, Bool updatePrice, UInt32 *ProbPrices) argument
[all...]
/vbox/src/VBox/GuestHost/OpenGL/state_tracker/
H A Dstate_program.c57 CRProgramSymbol *symbol, *next; local
62 for (symbol = prog->symbolTable; symbol; symbol = next) {
63 next = symbol->next;
64 crFree((void *) symbol->name);
65 crFree(symbol);
72 * Set the named symbol to the value (x, y, z, w).
75 * someone calls glProgramNamedParameter4fNV() we always enter the symbol
82 CRProgramSymbol *symbol; local
119 CRProgramSymbol *symbol = prog->symbolTable; local
1974 CRProgramSymbol *symbol; local
2216 CRProgramSymbol *symbol; local
[all...]
/vbox/src/VBox/Main/src-server/linux/
H A DUSBGetDevices.cpp1421 static void *testDLSym(void *handle, const char *symbol) argument
1424 Assert(!RTStrCmp(symbol, "inotify_init"));
/vbox/src/VBox/Frontends/VirtualBox/src/runtime/
H A DUIKeyboardHandler.cpp1587 wchar_t symbol; local
1589 if (!ToUnicodeEx(iHotKey, 0, keys, &symbol, 1, 0, pList[i]) == 1)
1590 symbol = 0;
1591 if (symbol)
1592 fWasProcessed = actionPool()->processHotKey(QKeySequence((Qt::UNICODE_ACCEL + QChar(symbol).toUpper().unicode())));
1604 char symbol = 0; local
1605 if (XkbTranslateKeySym(pDisplay, &ks, 0, &symbol, 1, NULL) == 0)
1606 symbol = 0;
1607 if (symbol)
1609 QChar qtSymbol = QString::fromLocal8Bit(&symbol,
[all...]
/vbox/src/libs/xpcom18a4/nsprpub/pr/src/linking/
H A Dprlink.c1537 ** If the symbol was not found in the static table then check if
1538 ** the symbol was exported in the DLL... Win16 only!!
1589 PR_LOG(_pr_linker_lm, PR_LOG_MIN, ("Looking up symbol: %s", name + SYM_OFFSET));
1610 NSSymbol symbol; local
1611 symbol = NSLookupSymbolInImage(lm->image, name,
1614 if (symbol != NULL)
1615 f = NSAddressOfSymbol(symbol);
1639 NSSymbol symbol; local
1640 symbol = NSLookupSymbolInModule(lm->dlh, name);
1641 if (symbol !
[all...]
/vbox/src/VBox/Main/webservice/jaxlibs/
H A Dsjsxp.jarMETA-INF/ META-INF/MANIFEST.MF META-INF/services/ com/ com/sun/ com/sun/xml/ ...

Completed in 212 milliseconds