HomeSort by relevance Sort by last modified time
    Searched defs:Symbol (Results 1 - 25 of 30) sorted by null

1 2

  /external/javassist/src/main/javassist/compiler/ast/
Symbol.java 23 public class Symbol extends ASTree {
26 public Symbol(String sym) {
  /external/llvm/lib/Target/Mips/
MipsMCInstLower.cpp 35 const MCSymbol *Symbol;
58 Symbol = MO.getMBB()->getSymbol();
62 Symbol = Mang->getSymbol(MO.getGlobal());
66 Symbol = AsmPrinter.GetBlockAddressSymbol(MO.getBlockAddress());
70 Symbol = AsmPrinter.GetExternalSymbolSymbol(MO.getSymbolName());
74 Symbol = AsmPrinter.GetJTISymbol(MO.getIndex());
78 Symbol = AsmPrinter.GetCPISymbol(MO.getIndex());
87 return MCOperand::CreateExpr(MipsMCSymbolRefExpr::Create(Kind, Symbol, Offset,
MipsMCSymbolRefExpr.cpp 18 MipsMCSymbolRefExpr::Create(VariantKind Kind, const MCSymbol *Symbol,
20 return new (Ctx) MipsMCSymbolRefExpr(Kind, Symbol, Offset);
43 OS << *Symbol;
64 Asm->getOrCreateSymbolData(*Symbol);
68 return Symbol->isDefined() ? &Symbol->getSection() : NULL;
MipsMCSymbolRefExpr.h 38 const MCSymbol *Symbol;
43 : Kind(_Kind), Symbol(_Symbol), Offset(_Offset) {}
47 const MCSymbol *Symbol, int Offset,
  /external/llvm/lib/Transforms/IPO/
Internalize.cpp 37 cl::desc("A file containing list of symbol names to preserve"));
42 cl::desc("A list of symbol names to preserve"),
96 std::string Symbol;
97 In >> Symbol;
98 if (!Symbol.empty())
99 ExternalNames.insert(Symbol);
112 // "main" symbol defined in the module. If so, use it, otherwise do not
141 // Never internalize the llvm.used symbol. It is used to implement
  /external/srec/srec/Semproc/include/
SR_SymbolTable.h 39 * Entries in the Symbol table are symbols i.e. key-value pairs.
52 Symbol;
55 * The Symbol Table
67 Symbol Symbols[MAX_SYMBOLS];
70 * Pointer to the next available symbol slot for storing a symbol in the array
72 Symbol *next;
77 Symbol SpecialSymbols[MAX_SPECIAL_SYMBOLS];
88 * The "undefined" symbol value
100 * @param self pointer to the symbol tabl
    [all...]
  /external/llvm/include/llvm/MC/
MCWin64EH.h 65 Function(0), PrologEnd(0), Symbol(0),
74 MCSymbol *Symbol;
MCExpr.h 78 /// @param Layout - The assembler layout object to use for evaluating symbol
98 /// otherwise the section associated with the first defined symbol in the
139 /// MCSymbolRefExpr - Represent a reference to a symbol from inside an
142 /// A symbol reference in an expression may be a use of a label, a use of an
144 /// of the symbol as external.
174 VK_PPC_DARWIN_HA16, // ha16(symbol)
175 VK_PPC_DARWIN_LO16, // lo16(symbol)
176 VK_PPC_GAS_HA16, // symbol@ha
177 VK_PPC_GAS_LO16 // symbol@l
181 /// The symbol being referenced
    [all...]
MCAssembler.h 66 /// symbol. Atom's are only used by backends which set
514 const MCSymbol *Symbol;
516 /// Fragment - The fragment this symbol's value is relative to, if any.
519 /// Offset - The offset to apply to the fragment address to form this symbol's
523 /// IsExternal - True if this symbol is visible outside this translation
527 /// IsPrivateExtern - True if this symbol is private extern.
530 /// CommonSize - The size of the symbol, if it is 'common', or 0.
533 // common symbol can never get a definition.
537 /// a symbol. If a symbol has no size this field will be NULL
    [all...]
  /external/webkit/Source/ThirdParty/ANGLE/src/compiler/preprocessor/
symbols.h 60 typedef struct Symbol_Rec Symbol;
64 Symbol *symb;
72 Symbol *symbols;
81 // Symbol table is a simple binary tree.
86 Symbol *left, *right;
87 Symbol *next;
104 Symbol *NewSymbol(SourceLoc *loc, Scope *fScope, int name, symbolkind kind);
105 Symbol *AddSymbol(SourceLoc *loc, Scope *fScope, int atom, symbolkind kind);
106 Symbol *LookUpLocalSymbol(Scope *fScope, int atom);
107 Symbol *LookUpSymbol(Scope *fScope, int atom)
    [all...]
  /external/llvm/examples/BrainF/
BrainF.h 47 enum Symbol {
  /external/llvm/lib/MC/
MCELFStreamer.cpp 41 void MCELFStreamer::EmitLabel(MCSymbol *Symbol) {
42 assert(Symbol->isUndefined() && "Cannot define a symbol twice!");
44 MCObjectStreamer::EmitLabel(Symbol);
47 static_cast<const MCSectionELF&>(Symbol->getSection());
48 MCSymbolData &SD = getAssembler().getSymbolData(*Symbol);
76 void MCELFStreamer::EmitAssignment(MCSymbol *Symbol, const MCExpr *Value) {
80 getAssembler().getOrCreateSymbolData(*Symbol);
81 Symbol->setVariableValue(AddValueSymbols(Value));
91 void MCELFStreamer::EmitWeakReference(MCSymbol *Alias, const MCSymbol *Symbol) {
    [all...]
ELFObjectWriter.h 89 const MCSymbol *Symbol;
93 : r_offset(0), Index(0), Type(0), Symbol(0), r_addend(0) {}
99 Symbol(Sym), r_addend(Addend) {}
119 /// @name Symbol Table Data
133 // This holds the symbol table index of the last local symbol.
149 // For arch-specific emission of explicit reloc symbol
271 // Map from a group section to the signature symbol
273 // Map from a signature symbol to the group section
280 /// ComputeSymbolTable - Compute the symbol table dat
    [all...]
MachObjectWriter.cpp 33 if (SD->Symbol->isUndefined())
77 report_fatal_error("unable to evaluate offset to undefined symbol '" +
80 report_fatal_error("unable to evaluate offset to undefined symbol '" +
291 const MCSymbol &Symbol = Data.getSymbol();
299 if (Symbol.isUndefined())
301 else if (Symbol.isAbsolute())
312 if (Data.isExternal() || Symbol.isUndefined())
315 // Compute the symbol address.
316 if (Symbol.isDefined()) {
317 if (Symbol.isAbsolute())
    [all...]
WinCOFFObjectWriter.cpp 63 COFF::symbol Data;
101 COFFSymbol *Symbol;
146 COFFSymbol *GetOrCreateCOFFSymbol(const MCSymbol * Symbol);
206 // Symbol class implementation
229 /// logic to decide if the symbol should be reported in the symbol table
245 // if it is the section symbol, keep it
246 if (Section->Symbol == this)
263 , Symbol(NULL) {
336 COFFSymbol *WinCOFFObjectWriter::GetOrCreateCOFFSymbol(const MCSymbol * Symbol){
    [all...]
  /external/llvm/lib/Target/X86/MCTargetDesc/
X86MachObjectWriter.cpp 139 // is to use an absolute symbol (which we don't support yet).
153 // Neither symbol can be modified.
156 report_fatal_error("unsupported relocation of modified symbol");
210 const MCSymbol *Symbol = &Target.getSymA()->getSymbol();
211 MCSymbolData &SD = Asm.getSymbolData(*Symbol);
218 if (Symbol->isInSection()) {
226 // symbol to use as a base address (a local symbol with no preceding
227 // non-local symbol).
235 } else if (Symbol->isInSection() && !Symbol->isVariable())
    [all...]
  /external/valgrind/main/coregrind/m_initimg/
simple_huffman.c 22 * 12 bits per symbol (for 8 bit symbols), meaning a maximum of 384
71 UInt Symbol;
189 sym[k].Symbol = k;
201 /* Sort histogram - most frequent symbol first (bubble sort) */
233 /* Append symbol to tree description */
235 _Huffman_WriteBits( stream, sym[first].Symbol, 8 );
237 /* Store code info in symbol array */
313 UInt symbol; local
318 /* Get symbol from tree description */
319 symbol = _Huffman_ReadBits( stream, 8 )
371 UInt k, total_bytes, swaps, symbol, last_symbol; local
    [all...]
  /frameworks/base/media/libstagefright/codecs/on2/h264dec/omxdl/arm11/vc/m4p10/src/
armVCM4P10_DecodeCoeffsToPair_s.s 52 Symbol RN 7
69 Symbol RN 7
121 ;// Decode Symbol = TotalCoeff*4 + TrailingOnes
122 M_BD_VLD Symbol, T1, T2, pVLDTable, 4, 2
124 MOVS TotalCoeff, Symbol, LSR #2
129 CMP Symbol, #17*4
130 BGE.W EndBadSymbol ;// Error if bad symbol
138 ANDS TrailingOnes, Symbol, #3
144 M_BD_READ8 Symbol, 1, T1
147 SUB T1, T1, Symbol, LSL #
    [all...]
  /frameworks/base/media/libstagefright/codecs/on2/h264dec/omxdl/arm_neon/vc/m4p10/src/
armVCM4P10_DecodeCoeffsToPair_s.s 52 Symbol RN 7
69 Symbol RN 7
121 ;// Decode Symbol = TotalCoeff*4 + TrailingOnes
122 M_BD_VLD Symbol, T1, T2, pVLDTable, 4, 2
124 MOVS TotalCoeff, Symbol, LSR #2
129 CMP Symbol, #17*4
130 BGE.W EndBadSymbol ;// Error if bad symbol
138 ANDS TrailingOnes, Symbol, #3
144 M_BD_READ8 Symbol, 1, T1
147 SUB T1, T1, Symbol, LSL #
    [all...]
  /external/srec/tools/thirdparty/OpenFst/fst/lib/
symbol-table.h 0 // symbol-table.h
17 // Classes to provide symbol-to-integer and integer-to-symbol mappings.
48 int64 AddSymbol(const string& symbol, int64 key);
50 int64 AddSymbol(const string& symbol) {
51 int64 key = Find(symbol);
52 return (key == -1) ? AddSymbol(symbol, available_key_++) : key;
82 // Return the key associated with the symbol. If the symbol
84 int64 Find(const string& symbol) const
    [all...]
  /frameworks/base/media/libstagefright/codecs/on2/h264dec/omxdl/arm11/api/
armCOMM_BitDec_s.h 25 ;// | Len | Symbol | 1 |
32 ;// Symbol = Symbol payload (unsigned 12 bits)
151 ;// $Symbol - the next N bits of the bitstream
158 M_BD_LOOK8 $Symbol, $N
160 MOV $Symbol, $BitBuffer, LSL $BitCount
176 ;// $Symbol - the next N bits of the bitstream
183 M_BD_LOOK16 $Symbol, $N, $T1
185 MOV $Symbol, $BitBuffer, LSL $BitCount
227 ;// $Symbol - the next N bits of the bitstrea
    [all...]
  /frameworks/base/media/libstagefright/codecs/on2/h264dec/omxdl/arm_neon/api/
armCOMM_BitDec_s.h 25 ;// | Len | Symbol | 1 |
32 ;// Symbol = Symbol payload (unsigned 12 bits)
151 ;// $Symbol - the next N bits of the bitstream
158 M_BD_LOOK8 $Symbol, $N
160 MOV $Symbol, $BitBuffer, LSL $BitCount
176 ;// $Symbol - the next N bits of the bitstream
183 M_BD_LOOK16 $Symbol, $N, $T1
185 MOV $Symbol, $BitBuffer, LSL $BitCount
227 ;// $Symbol - the next N bits of the bitstrea
    [all...]
  /external/llvm/lib/Target/ARM/
ARMBuildAttrs.h 29 Symbol = 3,
  /external/llvm/lib/Target/PTX/
PTXMCAsmStreamer.cpp 106 virtual void EmitLabel(MCSymbol *Symbol);
112 virtual void EmitAssignment(MCSymbol *Symbol, const MCExpr *Value);
114 virtual void EmitWeakReference(MCSymbol *Alias, const MCSymbol *Symbol);
121 virtual void EmitSymbolAttribute(MCSymbol *Symbol, MCSymbolAttr Attribute);
123 virtual void EmitSymbolDesc(MCSymbol *Symbol, unsigned DescValue);
124 virtual void BeginCOFFSymbolDef(const MCSymbol *Symbol);
128 virtual void EmitELFSize(MCSymbol *Symbol, const MCExpr *Value);
129 virtual void EmitCommonSymbol(MCSymbol *Symbol, uint64_t Size,
132 /// EmitLocalCommonSymbol - Emit a local common (.lcomm) symbol.
134 /// @param Symbol - The common symbol to emit
    [all...]
  /external/dropbear/libtommath/
bn.tex 159 ``tommath\_superclass.h''. By default, the symbol ``LTM\_ALL'' shall be defined which simply
176 This is to help resolve as many dependencies as possible. In the last pass the symbol LTM\_LAST will be defined.
    [all...]

Completed in 480 milliseconds

1 2