HomeSort by relevance Sort by last modified time
    Searched defs:Number (Results 26 - 50 of 69) sorted by null

12 3

  /external/llvm/examples/OCaml-Kaleidoscope/Chapter5/
ast.ml 8 | Number of float
26 * its name, and its argument names (thus implicitly the number of arguments the
token.ml 12 | Ident of string | Number of float
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter6/
ast.ml 8 | Number of float
29 * its name, and its argument names (thus implicitly the number of arguments the
token.ml 12 | Ident of string | Number of float
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter7/
ast.ml 8 | Number of float
32 * its name, and its argument names (thus implicitly the number of arguments the
token.ml 12 | Ident of string | Number of float
  /external/v8/src/arm/
constants-arm.cc 110 int VFPRegisters::Number(const char* name, bool* is_double) {
128 int Registers::Number(const char* name) {
  /external/v8/src/mips/
constants-mips.cc 81 int Registers::Number(const char* name) {
125 int FPURegisters::Number(const char* name) {
  /external/llvm/lib/CodeGen/
SpillPlacement.h 59 // Block frequencies are computed once. Indexed by block number.
80 unsigned Number; ///< Basic block number (from MBB::getNumber()).
133 /// possible number of PrefX constraints will be violated, weighted by
142 float getBlockFrequency(unsigned Number) const {
143 return BlockFrequency[Number];
SpillPlacement.cpp 78 /// otherwise it is a number in the range [-2;2].
82 /// This is always in the range [-1;1]. A positive number means the variable
137 /// Return the change to the total number of positive biases.
218 float Freq = getBlockFrequency(I->Number);
229 unsigned ib = bundles->getBundle(I->Number, 0);
236 unsigned ob = bundles->getBundle(I->Number, 1);
262 unsigned Number = *I;
263 unsigned ib = bundles->getBundle(Number, 0);
264 unsigned ob = bundles->getBundle(Number, 1);
275 float Freq = getBlockFrequency(Number);
    [all...]
  /external/webkit/Source/WebCore/html/parser/
HTMLEntityParser.cpp 57 // FIXME: A number of specific entity values generate parse errors.
109 Number,
129 entityState = Number;
138 case Number: {
  /external/webkit/Source/WebCore/xml/
XPathPredicate.cpp 44 Number::Number(double value)
49 Value Number::evaluate() const
124 // If one object to be compared is a node-set and the other is a number, then the comparison will be true
125 // if and only if there is a node in the node-set such that the result of performing the comparison on the number
126 // to be compared and on the result of converting the string-value of that node to a number using the number function is true.
274 return EqTestOp(EqTestOp::OP_EQ, createFunction("position"), new Number(result.toNumber())).evaluate().toBoolean();
XPathPredicate.h 39 class Number : public Expression {
41 Number(double);
  /external/v8/test/mjsunit/
stack-traces.js 77 Number.prototype.causeError = function () { FAIL; };
208 testTrace("testValue", testValue, ["at Number.causeError"]);
  /external/webkit/Source/JavaScriptCore/wtf/
TCPageMap.h 41 // The BITS parameter should be the number of bits required to hold
42 // a page number. E.g., with 32 bit pointers and 4K pages (i.e.,
66 typedef uintptr_t Number;
75 bool Ensure(Number, size_t) {
87 void* get(Number k) const {
95 void set(Number k, void* v) {
120 typedef uintptr_t Number;
127 void* get(Number k) const {
129 const Number i1 = k >> LEAF_BITS;
130 const Number i2 = k & (LEAF_LENGTH-1)
    [all...]
  /cts/tools/signature-tools/test/signature/comparator/
ClassCompareTest.java 205 static class A0<E extends Number> extends B<E> implements I<E>{}
206 static class A1<S extends Number> extends B<S>{}
238 CompilationUnit Number = new CompilationUnit("a.Number",
240 "public class Number implements java.io.Serializable{}");
243 "public interface I<T extends Number & java.io.Serializable>{}");
246 "public interface I<T extends Number>{}");
247 IApi fromApi = convert(I0,Number);
248 IApi toApi = convert(I1,Number);
255 CompilationUnit Number = new CompilationUnit("a.Number",
    [all...]
  /external/llvm/include/llvm/Object/
COFF.h 86 support::ulittle16_t Number;
  /external/llvm/include/llvm/Support/
GCOV.h 187 GCOVBlock(uint32_t N) : Number(N), Counter(0) {}
195 uint32_t Number;
  /external/v8/src/
type-info.h 43 // Number String |
59 // We know it's a number of some sort.
60 static TypeInfo Number() { return TypeInfo(kNumber); }
65 // We know it's a heap number.
76 // We use the compact representation when we only care about number types.
192 case kNumber: return "Number";
unicode.h 161 // The number of characters left in the current buffer
227 struct Number {
  /external/llvm/lib/CodeGen/AsmPrinter/
DIE.h 59 /// Unique number for node.
61 unsigned Number;
76 unsigned getNumber() const { return Number; }
81 void setNumber(unsigned N) { Number = N; }
  /external/llvm/utils/TableGen/
EDEmitter.cpp 96 int Number;
100 LiteralConstantEmitter(int number = 0) :
102 Number(number) {
106 Number = 0;
114 o << Number;
212 /// into the operands present in the AsmString) or a number
IntrinsicEmitter.cpp 233 unsigned Number = ArgType->getValueAsInt("Number");
234 assert(Number < ArgNo && "Invalid matching number!");
237 << "(dyn_cast<VectorType>(Tys[" << Number << "]))";
240 << "(dyn_cast<VectorType>(Tys[" << Number << "]))";
242 OS << "Tys[" << Number << "]";
244 // NOTE: The ArgNo variable here is not the absolute argument number, it is
355 unsigned Number = ArgType->getValueAsInt("Number");
    [all...]
  /external/clang/tools/libclang/
CIndexUSRs.cpp 607 unsigned Number = TypeSubstitutions.size();
608 TypeSubstitutions[T.getTypePtr()] = Number;
  /external/llvm/include/llvm/CodeGen/
MachineBasicBlock.h 66 int Number;
215 // order by their register number.
409 int getNumber() const { return Number; }
410 void setNumber(int N) { Number = N; }

Completed in 1655 milliseconds

12 3