HomeSort by relevance Sort by last modified time
    Searched refs:symbol (Results 26 - 50 of 1029) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/chromium_org/third_party/angle/src/compiler/translator/
ForLoopUnroll.cpp 22 TIntermSymbol *symbol = node->getLeft()->getAsSymbolNode(); local
23 if (IsSampler(symbol->getBasicType()) && symbol->isArray() && !mLoopStack.empty())
47 TIntermSymbol *symbol = (*declSeq)[0]->getAsBinaryNode()->getLeft()->getAsSymbolNode(); local
48 if (symbol->getBasicType() == EbtInt)
63 void ForLoopUnrollMarker::visitSymbol(TIntermSymbol* symbol)
67 TIntermLoop *loop = mLoopStack.findLoop(symbol);
70 switch (symbol->getBasicType())
SearchSymbol.cpp 6 // SearchSymbol is an AST traverser to detect the use of a given symbol name
16 SearchSymbol::SearchSymbol(const TString &symbol) : mSymbol(symbol)
ValidateOutputs.cpp 20 void ValidateOutputs::visitSymbol(TIntermSymbol *symbol)
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());
ValidateLimitations.cpp 34 virtual void visitSymbol(TIntermSymbol *symbol)
40 mValid = (symbol->getQualifier() == EvqConst) ||
41 (mLoopStack.findLoop(symbol));
218 bool ValidateLimitations::isLoopIndex(TIntermSymbol *symbol)
220 return mLoopStack.findLoop(symbol) != NULL;
287 TIntermSymbol *symbol = declInit->getLeft()->getAsSymbolNode(); local
288 if (symbol == NULL)
294 TBasicType type = symbol->getBasicType();
296 error(symbol->getLine(),
305 symbol->getSymbol().c_str())
332 TIntermSymbol *symbol = binOp->getLeft()->getAsSymbolNode(); local
395 TIntermSymbol *symbol = NULL; local
467 TIntermSymbol *symbol = (*params)[i]->getAsSymbolNode(); local
478 TSymbol* symbol = symbolTable.find(node->getName(), GetGlobalParseContext()->shaderVersion); local
    [all...]
  /hardware/samsung_slsi/exynos5/exynos_omx/openmax/exynos_omx/osal/
Exynos_OSAL_Library.c 41 void *Exynos_OSAL_dlsym(void *handle, const char *symbol)
43 return dlsym(handle, symbol);
  /libcore/luni/src/main/java/libcore/reflect/
GenericSignatureParser.java 86 char symbol; // 0: eof; else valid term symbol or first char of identifier. field in class:GenericSignatureParser
237 while (symbol > 0) {
249 if (symbol == '<') {
252 while ((symbol != '>') && (symbol > 0)) {
270 if (symbol == 'L' || symbol == '[' || symbol == 'T') {
274 while (symbol == ':')
    [all...]
  /system/core/init/
ueventd_keywords.h 3 #define KEYWORD(symbol, flags, nargs) K_##symbol,
  /external/oprofile/libpp/
symbol_container.cpp 32 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/chromium_org/third_party/angle/src/compiler/translator/depgraph/
DependencyGraphOutput.cpp 28 void TDependencyGraphOutput::visitSymbol(TGraphSymbol* symbol)
31 mSink << symbol->getIntermSymbol()->getSymbol() << " (symbol id: "
32 << symbol->getIntermSymbol()->getId() << ")\n";
59 TGraphNode* symbol = *iter; local
62 symbol->traverse(this);
  /external/qemu/distrib/sdl-1.2.15/src/loadso/dlopen/
SDL_sysloadso.c 46 void *symbol = dlsym(handle, name); local
47 if ( symbol == NULL ) {
53 symbol = dlsym(handle, _name);
55 if ( symbol == NULL ) {
59 return(symbol);
  /bionic/libc/tools/
check-symbols-glibc.py 29 symbol = m.group(2)
30 symbol = re.sub('@.*', '', symbol)
31 symbols.add(symbol)
139 for symbol in sorted(glibc):
140 print symbol
144 for symbol in sorted(bionic):
145 print symbol
150 for symbol in sorted((bionic - allowed_stuff).difference(glibc)):
151 print symbol
    [all...]
  /external/chromium_org/third_party/yasm/source/patched-yasm/modules/objfmts/coff/tests/
cofftest.asm 7 ; [1] Define and export a global text-section symbol
8 ; [2] Define and export a global data-section symbol
9 ; [3] Define and export a global BSS-section symbol
10 ; [4] Define a non-global text-section symbol
11 ; [5] Define a non-global data-section symbol
12 ; [6] Define a non-global BSS-section symbol
13 ; [7] Define a COMMON symbol
16 ; [10] Import an external symbol
17 ; [11] Make a PC-relative call to an external symbol
18 ; [12] Reference a text-section symbol in the text sectio
    [all...]
  /external/chromium_org/third_party/yasm/source/patched-yasm/modules/objfmts/macho/tests/gas32/
gas-macho32.asm 7 # [1] Define and export a global text-section symbol
8 # [2] Define and export a global data-section symbol
9 # [3] Define and export a global BSS-section symbol
10 # [4] Define a non-global text-section symbol
11 # [5] Define a non-global data-section symbol
12 # [6] Define a non-global BSS-section symbol
13 # [7] Define a COMMON symbol
16 # [10] Import an external symbol (note: printf replaced by another call)
17 # [11] Make a PC-relative call to an external symbol
18 # [12] Reference a text-section symbol in the text sectio
    [all...]
  /external/chromium_org/third_party/yasm/source/patched-yasm/modules/objfmts/win32/tests/
win32test.asm 7 ; [1] Define and export a global text-section symbol
8 ; [2] Define and export a global data-section symbol
9 ; [3] Define and export a global BSS-section symbol
10 ; [4] Define a non-global text-section symbol
11 ; [5] Define a non-global data-section symbol
12 ; [6] Define a non-global BSS-section symbol
13 ; [7] Define a COMMON symbol
16 ; [10] Import an external symbol
17 ; [11] Make a PC-relative call to an external symbol
18 ; [12] Reference a text-section symbol in the text sectio
    [all...]
  /external/chromium_org/third_party/icu/source/i18n/unicode/
dcfmtsym.h 15 * 08/26/97 aliu Added currency/intl currency symbol support.
56 * Symbol Meaning
87 * Constants for specifying a number format symbol.
107 /** The currency symbol */
109 /** The international currency symbol */
113 /** The exponential symbol */
115 /** Per mill symbol - replaces kPermillSymbol */
119 /** Infinity symbol */
121 /** Nan symbol */
123 /** Significant digit symbol
    [all...]
  /external/icu/icu4c/source/i18n/unicode/
dcfmtsym.h 15 * 08/26/97 aliu Added currency/intl currency symbol support.
56 * Symbol Meaning
87 * Constants for specifying a number format symbol.
107 /** The currency symbol */
109 /** The international currency symbol */
113 /** The exponential symbol */
115 /** Per mill symbol - replaces kPermillSymbol */
119 /** Infinity symbol */
121 /** Nan symbol */
123 /** Significant digit symbol
    [all...]
  /external/libpng/scripts/
checksym.awk 19 symbol[1] = "" # defined symbols from png.h
32 # symbol @ordinal
45 print master ": duplicated symbol:", official[o] ":", $0
62 # just be symbol definitions. Lines will be commented out for
67 # symbol @ordinal # two fields, exported symbol
68 # ; symbol @ordinal # three fields, removed symbol
80 NF==3 && $1 == ";" && $3 ~ /^@[1-9][0-9]*$/ { # removed symbol
86 print "png.h: duplicated removed symbol", o ": '" removed[o] "' != '" $2 "'
    [all...]
  /cts/tools/dasm/src/java_cup/
symbol.java 4 * both terminals and non-terminals). Each symbol has a name string, and
5 * a string giving the type of object that the symbol will be represented by
6 * on the runtime parse stack. In addition, each symbol maintains a use count
16 public abstract class symbol { class
22 * @param nm the name of the symbol.
25 public symbol(String nm, String tp) method in class:symbol
40 * @param nm the name of the symbol.
42 public symbol(String nm) method in class:symbol
51 /** String for the human readable name of the symbol. */
54 /** String for the human readable name of the symbol. *
    [all...]
lalr_transition.java 20 * @param on_sym symbol we are transitioning on.
24 public lalr_transition(symbol on_sym, lalr_state to_st, lalr_transition nxt)
29 throw new internal_error("Attempt to create transition on null symbol");
42 * @param on_sym symbol we are transitioning on.
45 public lalr_transition(symbol on_sym, lalr_state to_st) throws internal_error
54 /** The symbol we make the transition on. */
55 protected symbol _on_symbol;
57 /** The symbol we make the transition on. */
58 public symbol on_symbol() {return _on_symbol;}
symbol_part.java 3 /** This class represents a part of a production which is a symbol (terminal
4 * or non terminal). This simply maintains a reference to the symbol in
18 * @param sym the symbol that this part is made up of.
21 public symbol_part(symbol sym, String lab) throws internal_error
27 "Attempt to construct a symbol_part with a null symbol");
34 * @param sym the symbol that this part is made up of.
36 public symbol_part(symbol sym) throws internal_error
45 /** The symbol that this part is made up of. */
46 protected symbol _the_symbol;
48 /** The symbol that this part is made up of. *
    [all...]
  /external/linux-tools-perf/perf-3.12.0/tools/perf/scripts/python/Perf-Trace-Util/lib/Perf/Trace/
EventClass.py 24 def create_event(name, comm, dso, symbol, raw_buf):
26 event = PebsEvent(name, comm, dso, symbol, raw_buf)
28 event = PebsNHM(name, comm, dso, symbol, raw_buf)
30 event = PerfEvent(name, comm, dso, symbol, raw_buf)
36 def __init__(self, name, comm, dso, symbol, raw_buf, ev_type=EVTYPE_GENERIC):
40 self.symbol = symbol
46 print "PMU event: name=%12s, symbol=%24s, comm=%8s, dso=%12s" % (self.name, self.symbol, self.comm, self.dso)
55 def __init__(self, name, comm, dso, symbol, raw_buf, ev_type=EVTYPE_PEBS)
    [all...]
  /external/lldb/include/lldb/Host/
DynamicLibrary.h 33 void* symbol = Host::DynamicLibraryGetSymbol (m_handle, name, err); local
34 if (!symbol)
36 return (T)symbol;
  /external/qemu/distrib/sdl-1.2.15/src/loadso/mint/
SDL_sysloadso.c 48 void *symbol = (void *)ldg_find((char *)name, (LDG *)handle); local
49 if ( symbol == NULL ) {
52 return(symbol);
  /external/chromium_org/native_client_sdk/src/libraries/xray/
symtable.c 5 /* XRay symbol table */
57 const char* XRaySymbolGetName(struct XRaySymbol* symbol) {
58 return (NULL == symbol) ? "(null)" : symbol->name;
65 struct XRaySymbol* symbol; local
66 symbol = XRaySymbolPoolAlloc(sympool);
67 symbol->name = name;
68 return symbol;
73 struct XRaySymbol* symbol; local
81 symbol = &sympool->current->symbols[sympool->index]
132 struct XRaySymbol* symbol; local
156 struct XRaySymbol* symbol = XRaySymbolCreate(symtab->symbol_pool, name); local
    [all...]
  /external/zlib/src/contrib/blast/
blast.c 95 * symbol[] are the symbol values in canonical order, where the number of
101 short *symbol; /* canonically ordered symbols */ member in struct:huffman
105 * Decode a code from the stream s using huffman table h. Return the symbol or
131 int index; /* index of first code of length len in symbol table */
146 if (code < first + count) { /* if length len, return symbol */
149 return h->symbol[index + (code - first)];
183 * enough bits will resolve to a symbol. If the return value is positive, then
189 int symbol; /* current symbol when stepping through length[] * local
282 int symbol; \/* decoded symbol, extra bits for distance *\/ local
    [all...]

Completed in 607 milliseconds

12 3 4 5 6 7 8 91011>>