HomeSort by: relevance | last modified time | path
    Searched refs:symbol (Results 1 - 25 of 299) sorted by relevancy

1 2 3 4 5 6 7 8 91011>>

  /xsrc/external/mit/brotli/dist/c/enc/
utf8_util.c 18 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 <= 0x10FFFF)
74 int symbol; local
    [all...]
  /xsrc/external/mit/xorg-server.old/dist/hw/xwin/glx/
wgl_ext_api.c 45 #define PRERESOLVE(type, symbol) \
46 type##proc = (type)wglGetProcAddress(symbol); \
48 ErrorF("wglwrap: Can't resolve \"%s\"\n", symbol); \
50 ErrorF("wglwrap: Resolved \"%s\"\n", symbol);
52 #define RESOLVE_RET(type, symbol, retval) \
58 #define RESOLVE(procname, symbol) RESOLVE_RET(procname, symbol,)
glwrap.c 71 glWinResolveHelper(PROC *cache, char *symbol)
78 proc = wglGetProcAddress(symbol);
81 ErrorF("glwrap: Can't resolve \"%s\"\n", symbol);
86 ErrorF("glwrap: Resolved \"%s\"\n", symbol);
104 #define RESOLVE_RET(proctype, symbol, retval) \
106 __stdcall proctype proc = (proctype)glWinResolveHelper(&cache, symbol); \
113 #define RESOLVE(proctype, symbol) RESOLVE_RET(proctype, symbol,)
  /xsrc/external/mit/xorg-server/dist/hw/xwin/glx/
glthunk.c 43 glWinResolveHelper(PROC * cache, const char *symbol)
49 proc = wglGetProcAddress(symbol);
69 #define RESOLVE_RET(proctype, symbol, retval) \
71 __stdcall proctype proc = (proctype)glWinResolveHelper(&cache, symbol); \
76 #define RESOLVE(proctype, symbol) RESOLVE_RET(proctype, symbol,)
wgl_ext_api.c 45 #define PRERESOLVE(type, symbol) \
46 type##proc = (type)wglGetProcAddress(symbol);
48 #define RESOLVE_RET(type, symbol, retval) \
50 ErrorF("wglwrap: Can't resolve \"%s\"\n", symbol); \
55 #define RESOLVE(procname, symbol) RESOLVE_RET(procname, symbol,)
glshim.c 57 void *glXGetProcAddressARB(const char *symbol)
65 proc = GetProcAddress(hMod, symbol);
68 ErrorF("glXGetProcAddressARB: Resolved '%s' in %p to %p\n", symbol, hMod, proc);
101 #define RESOLVE_RET(proctype, symbol, retval) \
102 proctype proc = (proctype)glXGetProcAddressARB(symbol); \
105 #define RESOLVE(proctype, symbol) RESOLVE_RET(proctype, symbol,)
  /xsrc/external/mit/libepoxy/dist/test/
dlwrap.c 55 typedef void *(*fips_dlsym_t)(void *handle, const char *symbol);
148 fputs("Error: Failed to find symbol for dlopen.\n", stderr);
164 void *symbol; local
171 symbol = dlwrap_real_dlsym(RTLD_DEFAULT, wrap_name);
173 return symbol;
199 void *symbol = wrapped_dlsym(wrap->symbol_prefix, name); local
200 if (symbol)
201 return symbol;
220 * symbol is really ugly. The only reason I'm doing this is because
233 * symbol within libdl.so, (and then add this t
283 void *symbol; local
296 void *symbol; local
309 void *symbol; local
    [all...]
dlwrap.h 29 * necessity must use claim the symbol 'dlopen'. So whenever anything
49 * necessity must use claim the symbol 'dlsym'. So whenever anything
54 dlwrap_real_dlsym(void *handle, const char *symbol);
  /xsrc/external/mit/MesaLib.old/dist/src/mesa/drivers/dri/
gen-symbol-redefs.py 31 # ./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)
  /xsrc/external/mit/libdrm/dist/
symbols-check.py 85 # [qualifier] symbol
87 symbol = None
91 symbol = fields[0]
94 symbol = fields[1]
100 # symbol doesn't have to be exported by the library
106 optional_symbols.append(symbol)
108 mandatory_symbols.append(symbol)
111 for symbol in lib_symbols:
112 if symbol in mandatory_symbols:
114 if symbol in optional_symbols
    [all...]
  /xsrc/external/mit/MesaLib/dist/bin/
symbols-check.py 98 parser.add_argument('--ignore-symbol',
100 help='do not process this symbol')
129 # [qualifier] symbol
131 symbol = None
135 symbol = fields[0]
138 symbol = fields[1]
144 # symbol doesn't have to be exported by the library
150 optional_symbols.append(symbol)
152 mandatory_symbols.append(symbol)
155 for symbol in lib_symbols
    [all...]
perf-annotate-jit.py 95 start, length, symbol = line.split()
100 if symbol == matchSymbol:
134 def __init__(self, infile, symbol):
136 self.symbol = symbol
152 asm = lookupAsm(mapFile, self.symbol)
158 sys.stdout.write('%s:\n' % self.symbol)
195 call_re = re.compile(r'^\s+(?P<address>[0-9a-fA-F]+)\s+(?P<symbol>.*)\s+\((?P<module>[^)]*)\)$')
207 function_name = mo.group('symbol')
218 if function_name != self.symbol
    [all...]
  /xsrc/external/mit/MesaLib/dist/src/mesa/program/
symbol_table.c 30 struct symbol { struct
31 /** Symbol name. */
35 * Link to the next symbol in the table with the same name
40 struct symbol *next_with_same_name;
43 * Link to the next symbol in the table with the same scope
48 struct symbol *next_with_same_scope;
50 /** Scope depth where this symbol was defined. */
68 struct symbol *symbols;
76 /** Hash table containing all symbols in the symbol table. */
90 struct symbol *sym = scope->symbols
    [all...]
  /xsrc/external/mit/MesaLib.old/dist/src/mesa/program/
symbol_table.c 30 struct symbol { struct
31 /** Symbol name. */
35 * Link to the next symbol in the table with the same name
40 struct symbol *next_with_same_name;
43 * Link to the next symbol in the table with the same scope
48 struct symbol *next_with_same_scope;
50 /** Scope depth where this symbol was defined. */
68 struct symbol *symbols;
76 /** Hash table containing all symbols in the symbol table. */
90 struct symbol *sym = scope->symbols
    [all...]
  /xsrc/external/mit/libX11/dist/src/
imConv.c 167 KeySym symbol; local
175 count = XLOOKUPSTRING(event, (char *)buffer, nbytes, &symbol, status);
176 if (keysym != NULL) *keysym = symbol;
177 if ((nbytes == 0) || (symbol == NoSymbol)) return count;
190 (count == 1 && (symbol > 0x7f && symbol < 0xff00))) {
199 ucs4 = (ucs4_t) KeySymToUcs4(symbol);
240 KeySym symbol; local
248 count = XLOOKUPSTRING(event, (char *)look, nbytes, &symbol, status);
249 if (keysym != NULL) *keysym = symbol;
312 KeySym symbol; local
    [all...]
  /xsrc/external/mit/libXmu/dist/src/
Lookup.c 130 KeySym symbol; local
134 count = XLookupString(event, (char *)buffer, nbytes, &symbol, status);
135 if (keysym) *keysym = symbol;
136 if ((nbytes == 0) || (symbol == NoSymbol)) {
138 } else if ((count == 0) && ((symbol >> 8) == kset)) {
142 buffer[0] = (symbol & 0xff);
147 buffer[0] = cyrillic[symbol & 0x7f];
150 buffer[0] = greek[symbol & 0x7f];
155 buffer[0] = (symbol & 0xff);
159 (((unsigned char *)buffer)[0] == symbol) &
    [all...]
  /xsrc/external/mit/libX11/dist/modules/im/ximcp/
imThaiFlt.c 470 static int IsCancelComposeKey(KeySym *symbol, XKeyEvent *event);
483 KeySym symbol,
487 KeySym symbol,
491 KeySym symbol
672 KeySym symbol,
853 register KeySym symbol,
871 if (!symbol)
873 /* see if symbol rebound, if so, return that string. */
875 if (((modifiers & AllMods) == p->state) && (symbol == p->key)) {
883 hiBytes = symbol >> 8
1289 KeySym symbol; local
    [all...]
  /xsrc/external/mit/xorg-server/dist/hw/netbsd/x68k/
x68kConfig.c 183 char *symbol; member in union:__anon9893::__anon9894
225 /* is a symbol? */
228 ret->content.symbol = malloc(32 * sizeof(char));
229 if (ret->content.symbol == NULL)
233 ret->content.symbol[i++] = c;
237 ret->content.symbol[i] = '\0';
272 const char *symbol; member in struct:__anon9895
351 if (strcasecmp(command[i].symbol, argv[0]->content.symbol) == 0) {
359 argv[0]->content.symbol);
435 char *symbol; local
    [all...]
  /xsrc/external/mit/xorg-server.old/dist/hw/netbsd/x68k/
x68kConfig.c 168 char *symbol; member in union:__anon10487::__anon10488
210 /* is a symbol? */
213 ret->content.symbol = malloc(32 * sizeof(char));
214 if (ret->content.symbol == NULL)
218 ret->content.symbol[i++] = c;
222 ret->content.symbol[i] = '\0';
257 const char *symbol; member in struct:__anon10489
336 if (strcasecmp(command[i].symbol, argv[0]->content.symbol) == 0) {
344 argv[0]->content.symbol);
420 char *symbol; local
    [all...]
  /xsrc/external/mit/MesaLib/dist/src/util/
u_debug_stack_android.cpp 35 intern_symbol(const char *symbol)
40 uint32_t hash = _mesa_hash_string(symbol);
42 _mesa_hash_table_search_pre_hashed(symbol_table, hash, symbol);
44 entry = _mesa_hash_table_insert_pre_hashed(symbol_table, hash, symbol, strdup(symbol));
  /xsrc/external/mit/brotli/dist/c/dec/
huffman.c 91 next processed symbol. */
108 int symbol; /* symbol index in original or sorted table */ local
121 /* Generate offsets into sorted symbol table by code length. */
122 symbol = -1;
125 symbol += count[bits];
126 offset[bits] = symbol;
132 /* Sort symbols by length, by symbol order within each length. */
133 symbol = BROTLI_CODE_LENGTH_CODES;
136 symbol--
176 int symbol; \/* symbol index in original or sorted table *\/ local
    [all...]
  /xsrc/external/mit/xedit/dist/lisp/
package.c 94 LispDestroy("FIND-PACKAGE: %s is not a string or symbol", STROBJ(name));
127 /* condition 2: intern and extern symbols or symbol is extern */
155 /* package must be of type LispPackage_t, symbol type is checked
159 LispObj *package, LispObj *symbol, int export)
161 CHECK_SYMBOL(symbol);
164 symbol->data.atom->package == lisp__data.keyword)
165 LispDestroy("%s: symbol %s cannot be unexported",
166 STRFUN(builtin), STROBJ(symbol));
170 symbol->data.atom->ext = export ? 1 : 0;
176 string = ATOMID(symbol);
303 LispObj *symbol; local
    [all...]
  /xsrc/external/mit/MesaLib.old/dist/bin/
perf-annotate-jit.py 95 start, length, symbol = line.split()
100 if symbol == matchSymbol:
134 def __init__(self, infile, symbol):
136 self.symbol = symbol
152 asm = lookupAsm(mapFile, self.symbol)
158 sys.stdout.write('%s:\n' % self.symbol)
195 call_re = re.compile(r'^\s+(?P<address>[0-9a-fA-F]+)\s+(?P<symbol>.*)\s+\((?P<module>[^)]*)\)$')
207 function_name = mo.group('symbol')
218 if function_name != self.symbol
    [all...]
  /xsrc/external/mit/xedit/dist/lisp/modules/
xedit.lsp 104 (defun auto-mode (filename &optional symbol &aux syntax)
105 (if (and symbol (symbolp symbol))
106 (if (boundp symbol)
107 (return-from auto-mode (symbol-value symbol))
108 (setq syntax (cddr (find symbol *auto-modes* :key #'cdddr)))
110 ;; symbol optional argument is not a symbol
120 (setq syntax (cddar mode) symbol (cdr syntax)
    [all...]
  /xsrc/external/mit/MesaLib/dist/src/glx/windows/
wgl.c 35 #define PRERESOLVE(type, symbol) \
36 type##proc = (type)wglGetProcAddress(symbol); \
38 printf("Can't resolve \"%s\"\n", symbol);

Completed in 25 milliseconds

1 2 3 4 5 6 7 8 91011>>