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

1 2 3 4 5 6 7 8 91011>>

  /external/llvm/test/MC/Mips/
macro-dla-32bit.s 156 symbol: # CHECK-LABEL: symbol: label
macro-dla.s 633 symbol: # CHECK-LABEL: symbol: label
    [all...]
  /toolchain/binutils/binutils-2.27/ld/testsuite/ld-arm/
pcrel-shared.s 12 foo: movw r0, #:lower16:symbol - 1f - 8
13 movt r0, #:upper16:symbol - 1f - 8
15 @ And now a case with a local symbol.
22 .globl symbol
23 .hidden symbol
24 symbol: .long 23 label
  /external/v8/src/runtime/
runtime-symbol.cc 20 Handle<Symbol> symbol = isolate->factory()->NewSymbol(); local
21 if (name->IsString()) symbol->set_name(*name);
22 return *symbol;
31 Handle<Symbol> symbol = isolate->factory()->NewPrivateSymbol(); local
32 if (name->IsString()) symbol->set_name(*name);
33 return *symbol;
40 CONVERT_ARG_CHECKED(Symbol, symbol, 0)
    [all...]
  /cts/tools/dasm/src/java_cup/runtime/
symbol.java 4 /** This class represents a (terminal or non-terminal) symbol that, among
6 * keep track of state on the parse stack. The symbol currently on top
9 * of the symbol number that they represent in the sym field. Finally,
21 public class symbol { class
24 public symbol(int sym_num, int state) method in class:symbol
33 public symbol(int sym_num) method in class:symbol
40 /** The symbol number of the terminal or non terminal being represented */
45 /** The parse state to be recorded on the parse stack with this symbol.
  /device/generic/goldfish-opengl/tests/gles_android_wrapper/
ApiInitializer.h 34 void *symbol = NULL; local
36 symbol = dlsym(m_dso, name);
38 return symbol;
  /external/brotli/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...]
  /development/tools/bugreport/src/com/android/bugreport/stacks/
NativeStackFrameSnapshot.java 25 public String symbol; field in class:NativeStackFrameSnapshot
36 that.symbol = this.symbol;
  /device/linaro/bootloader/edk2/BaseTools/Source/C/VfrCompile/Pccts/support/sym/
template.h 8 /* minimum symbol table record */
10 char *symbol; member in struct:_sym
  /external/iptables/extensions/
tos_values.c 29 const struct tos_symbol_info *symbol; local
34 for (symbol = tos_symbol_names; symbol->name != NULL; ++symbol)
35 if (value == symbol->value) {
36 printf(" %s%s", prefix, symbol->name);
  /external/mesa3d/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)
  /external/swiftshader/src/Common/
SharedLibrary.hpp 120 void *symbol = dlsym(library, name); local
122 if(!symbol)
128 return symbol;
  /external/swiftshader/third_party/subzero/src/
IceFixups.cpp 34 GlobalString AssemblerFixup::symbol() const { function in class:Ice::AssemblerFixup
53 std::string Symbol;
57 Symbol = symbol().toString();
58 Str << Symbol;
83 if (Asm.fixupIsPCRel(kind()) || Symbol == GlobalOffsetTable)
  /frameworks/base/tools/aapt2/link/
ReferenceLinker_test.cpp 269 const SymbolTable::Symbol* symbol = ReferenceLinker::ResolveSymbolCheckVisibility( local
271 ASSERT_THAT(symbol, NotNull());
306 const SymbolTable::Symbol* s = ReferenceLinker::ResolveSymbol(*test::BuildReference("string/foo"),
  /frameworks/compile/mclinker/lib/Fragment/
Stub.cpp 35 // build a name for stub symbol
44 LDSymbol* symbol = local
54 setSymInfo(symbol->resolveInfo());
  /toolchain/binutils/binutils-2.27/binutils/
nlmheader.y 85 /* The current symbol prefix when reading a list of import or export
132 %type <string> symbol
433 symbol
441 | symbol_list symbol
462 /* A single symbol. */
464 symbol: label
  /external/libxml2/doc/
libxml-doc.el 28 ;; (autoload 'libxmldoc-lookup-symbol "~/elisp/libxml-doc"
31 ;; (autoload 'libxmldoc-lookup-symbol "libxml-doc"
44 ;; call M-x libxmldoc-lookup-symbol: this will prompt with completion and
46 ;; point matches a symbol, that is used instead. You can also call
47 ;; libxmldoc-lookup-symbol noninteractively and pass the symbol.
61 ;; Wed Jun 21 01:45:29 2000: added libxmldoc-lookup-symbol-at-point
62 ;; Wed Jun 21 23:37:58 2000: libxmldoc-lookup-symbol now uses
63 ;; (thing-at-point 'word) if it matches a symbol
68 ;; - Changed the 'word match from thing-at-point into 'symbol
    [all...]
  /cts/tests/tests/view/src/android/view/cts/
View_IdsTest.java 52 TextView symbol = (TextView) activity.findViewById(R.id.symbolball); local
58 assertNotNull(symbol);
  /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...]
  /external/easymock/src/org/easymock/
LogicalOperator.java 48 private String symbol; field in class:LogicalOperator
50 private LogicalOperator(String symbol) {
51 this.symbol = symbol;
55 return symbol;
  /external/google-breakpad/src/common/android/
breakpad_getcontext.S 325 #define NESTED(symbol, framesize, rpc) \
326 .globl symbol; \
328 .type symbol,@function; \
329 .ent symbol,0; \
330 symbol: .frame sp, framesize, rpc; label
  /external/lzma/Java/SevenZip/Compression/RangeCoder/
BitTreeDecoder.java 30 int symbol = 0; local
36 symbol |= (bit << bitIndex);
38 return symbol;
45 int symbol = 0; local
51 symbol |= (bit << bitIndex);
53 return symbol;
  /frameworks/base/tools/aapt/
Symbol.h 27 * A resource symbol, not attached to any configuration or context.
29 struct Symbol {
30 inline Symbol();
31 inline Symbol(const android::String16& p, const android::String16& t, const android::String16& n, uint32_t i);
33 inline bool operator<(const Symbol& rhs) const;
43 * A specific defintion of a symbol, defined with a configuration and a definition site.
47 inline SymbolDefinition(const Symbol& s, const ConfigDescription& c, const SourcePos& src);
50 Symbol symbol; member in struct:SymbolDefinition
59 Symbol::Symbol()
    [all...]
  /frameworks/compile/mclinker/lib/Script/
RpnEvaluator.cpp 82 case Operand::SYMBOL: {
84 // we set up symbol operand here.
87 const LDSymbol* symbol = local
89 if (symbol == NULL) {
93 sym_opd->setValue(symbol->value());
108 assert(operandStack.top()->type() == Operand::SYMBOL ||
  /hardware/interfaces/drm/1.0/vts/functional/
vendor_modules.cpp 62 void* symbol = library->lookup("vendorModuleFactory"); local
63 if (symbol == NULL) {
69 ModuleFactory moduleFactory = reinterpret_cast<ModuleFactory>(symbol);

Completed in 513 milliseconds

1 2 3 4 5 6 7 8 91011>>