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

1 2

  /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...]
entropy_encode.c 304 uint32_t symbol = counts[0]; local
307 if (i == length || counts[i] != symbol) {
308 if ((symbol == 0 && step >= 5) ||
309 (symbol != 0 && step >= 7)) {
317 symbol = counts[i];
480 0 bit depth means that the symbol does not exist. */
  /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/xedit/dist/lisp/
xedit.h 75 LispObj *symbol; /* Symbol holding syntax data */ member in struct:_EditModeInfo
  /xsrc/external/mit/MesaLib/dist/src/gallium/frontends/clover/llvm/codegen/
native.cpp 86 GElf_Sym symbol; local
89 while (GElf_Sym *s = gelf_getsym(symtab_data, i++, &symbol)) {
103 fail(r_log, build_error(), "Unable to find symbol table.");
  /xsrc/external/mit/MesaLib.old/dist/src/gallium/state_trackers/clover/llvm/codegen/
native.cpp 84 GElf_Sym symbol; local
87 while (GElf_Sym *s = gelf_getsym(symtab_data, i++, &symbol)) {
101 fail(r_log, build_error(), "Unable to find symbol table.");
  /xsrc/external/mit/libXfont/dist/src/FreeType/
ftenc.c 50 if(strcasecmp(encoding, "microsoft-symbol") == 0)
70 int symbol = 0; local
80 symbol = FTEncFontSpecific(encoding_name);
101 } else if(symbol) {
108 if(symbol && encoding == NULL)
109 encoding = FontEncFind("microsoft-symbol", filename);
132 if(symbol) {
134 Microsft-Symbol cmap */
  /xsrc/external/mit/libXfont2/dist/src/FreeType/
ftenc.c 51 if(strcasecmp(encoding, "microsoft-symbol") == 0)
71 int symbol = 0; local
81 symbol = FTEncFontSpecific(encoding_name);
100 } else if(symbol) {
107 if(symbol && encoding == NULL)
108 encoding = FontEncFind("microsoft-symbol", filename);
131 if(symbol) {
133 Microsft-Symbol cmap */
  /xsrc/external/mit/MesaLib/dist/src/gallium/auxiliary/gallivm/
lp_bld_debug.cpp 244 const char *symbol = LLVMGetValueName(func); local
246 perf_asm_file << symbol << ":\n"; local
249 fprintf(perf_map_file, "%lx %lx %s\n", addr, size, symbol);
  /xsrc/external/mit/MesaLib.old/dist/src/gallium/auxiliary/gallivm/
lp_bld_debug.cpp 252 const char *symbol = LLVMGetValueName(func); local
254 perf_asm_file << symbol << ":\n"; local
257 fprintf(perf_map_file, "%lx %lx %s\n", addr, size, symbol);
  /xsrc/external/mit/libX11/dist/src/
CrGlCur.c 74 const char *symbol = under_symbol + 1; local
75 result = dlsym (module, symbol);
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/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/dist/src/util/
u_debug_stack.c 323 const char *symbol; local
326 symbol = debug_symbol_name_cached(backtrace[i].function);
327 if (symbol)
328 fprintf(f, "%s\n", symbol);
  /xsrc/external/mit/MesaLib.old/dist/src/amd/common/
ac_binary.c 42 GElf_Sym symbol; local
56 while (gelf_getsym(symbol_table_data, i++, &symbol)) {
58 if (GELF_ST_BIND(symbol.st_info) != STB_GLOBAL ||
59 symbol.st_shndx == 0 /* Undefined symbol */) {
64 symbol.st_value;
93 GElf_Sym symbol; local
99 gelf_getsym(symbols, GELF_R_SYM(rel.r_info), &symbol);
100 symbol_name = elf_strptr(elf, symbol_sh_link, symbol.st_name);
184 /* Cache the config size per symbol */
    [all...]
  /xsrc/external/mit/MesaLib.old/dist/src/gallium/auxiliary/util/
u_debug_stack.c 338 const char *symbol; local
341 symbol = debug_symbol_name_cached(backtrace[i].function);
342 if (symbol)
343 fprintf(f, "%s\n", symbol);
  /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/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/fonttosfnt/dist/
read.c 104 int symbol = 0; local
158 symbol = 1;
164 symbol = 1;
183 symbol ? " (symbol)" : "");
284 if((!symbol && !mapping) || force_unicode) {
299 font->flags = faceFlags(face) | (symbol ? FACE_SYMBOL : 0);
  /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/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...]
  /xsrc/external/mit/xedit/dist/lisp/modules/
lisp.lsp 157 (defsetf get (symbol key &optional default) (value)
158 `(lisp::put ,symbol ,key ,value))
160 (defsetf symbol-plist lisp::set-symbol-plist)
171 (defsetf symbol-value set)
  /xsrc/external/mit/MesaLib/dist/src/gallium/frontends/clover/core/
binary.hpp 136 struct symbol { struct in struct:clover::binary
137 symbol(const std::string &name, const std::string &attributes, function in struct:clover::binary::symbol
145 symbol() : name(), attributes(), reqd_work_group_size({0, 0, 0}), function in struct:clover::binary::symbol
161 std::vector<symbol> syms;
  /xsrc/external/mit/MesaLib.old/dist/src/gallium/state_trackers/clover/core/core/
module.hpp 107 struct symbol { struct in struct:clover::module
108 symbol(const std::string &name, resource_id section, function in struct:clover::module::symbol
111 symbol() : name(), section(0), offset(0), args() { } function in struct:clover::module::symbol
123 std::vector<symbol> syms;
  /xsrc/external/mit/xedit/dist/
tags.c 52 hash_key *symbol; member in struct:_TagsEntry
98 static void FindTagFirst(XeditTagsInfo *tags, char *symbol, int length);
220 FindTagFirst(XeditTagsInfo *tags, char *symbol, int length)
227 ptr = symbol;
239 entry = (TagsEntry *)hash_check(tags->entries, symbol, length);
267 hash_check(tags->tags->entries, symbol, length);
279 hash_check(tags->tags->entries, symbol, length);
288 XeditPrintf("Symbol %s not in tags\n", symbol);
341 char *symbol, *filename, *pattern local
    [all...]

Completed in 19 milliseconds

1 2