HomeSort by relevance Sort by last modified time
    Searched defs:one (Results 201 - 225 of 353) sorted by null

1 2 3 4 5 6 7 891011>>

  /bionic/libm/src/
e_pow.c 69 one = 1.0, variable
111 if((iy|ly)==0) return one;
149 if(hy<0) return one/x; else return x;
163 if(hy<0) z = one/z; /* z = (1/|x|) */
183 s = one; /* s (sign of result -ve**odd) = -1 else = 1 */
184 if((n|(yisint-1))==0) s = -one;/* (-ve)**(odd int) */
192 /* over/underflow if x is not close to one */
197 t = ax-one; /* t has 20 trailing zeros */
221 v = one/(ax+bp[k]);
298 z = one-(r-z)
    [all...]
e_powf.c 28 one = 1.0, variable
69 if(iy==0) return one;
101 if(hy<0) return one/x; else return x;
113 if(hy<0) z = one/z; /* z = (1/|x|) */
128 sn = one; /* s (sign of result -ve**odd) = -1 else = 1 */
129 if((n|(yisint-1))==0) sn = -one;/* (-ve)**(odd int) */
133 /* over/underflow if x is not close to one */
163 v = one/(ax+bp[k]);
241 z = one-(r-z);
  /dalvik/dexgen/src/com/android/dexgen/dex/file/
CatchStructs.java 204 CatchTable.Entry one = table.get(i); local
205 int start = one.getStart();
206 int end = one.getEnd();
217 out.writeShort(handlerOffsets.get(one.getHandlers()));
225 * Only one of {@code printTo} or {@code annotateTo} should
  /dalvik/dexgen/src/com/android/dexgen/rop/code/
BasicBlockList.java 112 BasicBlock one = (BasicBlock) getOrNull0(i); local
113 if (one != null) {
114 result += one.getInsns().size();
132 BasicBlock one = (BasicBlock) getOrNull0(i); local
133 if (one != null) {
134 InsnList insns = one.getInsns();
178 BasicBlock one = get(i); local
179 InsnList insns = one.getInsns();
185 * Returns an instance that is identical to this one, except that
198 BasicBlock one = (BasicBlock) get0(i) local
    [all...]
Rop.java 52 /** the opcode; one of the constants in {@link RegOps} */
68 * the branchingness of this op; one of the {@code BRANCH_*}
80 * Constructs an instance. This method is private. Use one of the
83 * @param opcode the opcode; one of the constants in {@link RegOps}
89 * @param branchingness the branchingness of this op; one of the
131 * @param opcode the opcode; one of the constants in {@link RegOps}
137 * @param branchingness the branchingness of this op; one of the
151 * @param opcode the opcode; one of the constants in {@link RegOps}
155 * @param branchingness the branchingness of this op; one of the
170 * @param opcode the opcode; one of the constants in {@link RegOps
284 Type one = exceptions.getType(i); local
    [all...]
  /dalvik/dexgen/src/com/android/dexgen/rop/type/
Prototype.java 206 * Constructs an instance. This is a private constructor; use one
344 Type one = parameterTypes.get(i); local
345 if (one.isIntlike()) {
347 one = Type.INT;
349 list.set(i, one);
  /dalvik/dx/src/com/android/dx/cf/code/
Frame.java 163 Type one = params.get(i); local
164 locals.set(at, one);
165 at += one.getCategory();
370 * ending frame of one of the subroutine's calling blocks. Subroutine
LocalVariableList.java 66 * given instances, where one instance should have only type
68 * result is identical to the one with descriptors, except that
133 * <p><b>Note:</b> At least one of {@code descriptor} or
164 Item one = (Item) get0(i); local
166 if ((one != null) && one.matchesAllButType(item)) {
167 return one;
178 * <i>just past</i> the one that sets the variable.
189 Item one = (Item) get0(i); local
191 if ((one != null) && one.matchesPcAndIndex(pc, index))
    [all...]
  /dalvik/dx/src/com/android/dx/dex/cf/
AttributeTranslator.java 258 * {@link AttributeList}, if any, translating it to one or more of an
405 Method one = methods.get(i); local
406 AttributeList attribs = one.getAttributes();
412 one.getNat().getName(),
  /dalvik/dx/src/com/android/dx/dex/file/
CatchStructs.java 202 CatchTable.Entry one = table.get(i); local
203 int start = one.getStart();
204 int end = one.getEnd();
215 out.writeShort(handlerOffsets.get(one.getHandlers()));
223 * Only one of {@code printTo} or {@code annotateTo} should
  /dalvik/dx/src/com/android/dx/rop/code/
BasicBlockList.java 112 BasicBlock one = (BasicBlock) getOrNull0(i); local
113 if (one != null) {
114 result += one.getInsns().size();
132 BasicBlock one = (BasicBlock) getOrNull0(i); local
133 if (one != null) {
134 InsnList insns = one.getInsns();
177 BasicBlock one = get(i); local
178 InsnList insns = one.getInsns();
184 * Returns an instance that is identical to this one, except that
197 BasicBlock one = (BasicBlock) get0(i) local
    [all...]
Rop.java 52 /** the opcode; one of the constants in {@link RegOps} */
68 * the branchingness of this op; one of the {@code BRANCH_*}
80 * Constructs an instance. This method is private. Use one of the
83 * @param opcode the opcode; one of the constants in {@link RegOps}
89 * @param branchingness the branchingness of this op; one of the
131 * @param opcode the opcode; one of the constants in {@link RegOps}
137 * @param branchingness the branchingness of this op; one of the
151 * @param opcode the opcode; one of the constants in {@link RegOps}
155 * @param branchingness the branchingness of this op; one of the
170 * @param opcode the opcode; one of the constants in {@link RegOps
284 Type one = exceptions.getType(i); local
    [all...]
  /dalvik/dx/src/com/android/dx/rop/type/
Prototype.java 210 * Constructs an instance. This is a private constructor; use one
348 Type one = parameterTypes.get(i); local
349 if (one.isIntlike()) {
351 one = Type.INT;
353 list.set(i, one);
  /dalvik/vm/compiler/template/
gen-template.py 56 raise DataParseError("handler-size requires one argument")
78 raise DataParseError("import requires one argument") namespace
93 raise DataParseError("import requires one argument") namespace
283 # allow more than one %break, ignoring all following the first
  /dalvik/vm/mterp/
gen-mterp.py 61 raise DataParseError("handler-style requires one argument")
77 raise DataParseError("handler-size requires one argument")
99 raise DataParseError("import requires one argument") namespace
118 raise DataParseError("import requires one argument") namespace
136 raise DataParseError("import requires one argument") namespace
465 # allow more than one %break, ignoring all following the first
  /development/tools/jdwpspy/
Net.cpp 250 int one = 1; local
251 if (setsockopt(netState->listenSock, SOL_SOCKET, SO_REUSEADDR, &one,
252 sizeof(one)) < 0)
434 * usually only going to find one packet, which is trivial to handle.
719 * We wait for a new connection from the debugger. When one arrives we
720 * open a connection to the VM. If one side or the other goes away, we
  /external/clang/test/Analysis/
idempotent-operations.c 9 int x = 10, zero = 0, one = 1; local
25 test(x * one); // expected-warning {{The right operand to '*' is always 1}}
26 x *= one; // expected-warning {{The right operand to '*=' is always 1}}
27 test(x / one); // expected-warning {{The right operand to '/' is always 1}}
28 x /= one; // expected-warning {{The right operand to '/=' is always 1}}
31 test(one * x); // expected-warning {{The left operand to '*' is always 1}}
57 one = 3;
59 return x + zero + one;
179 int one = 1; local
  /external/clang/test/Sema/
MicrosoftExtensions.c 90 __declspec(deprecated("This is deprecated")) enum DE1 { one, two } e1; enumerator in enum:DE1
97 e1 = one; // expected-warning {{'e1' is deprecated: This is deprecated}}
flexible-array-init.c 2 struct one { struct
7 struct one x2 = { 5, 1, 2, 3 }; // expected-warning{{flexible array initialization is a GNU extension}}
10 struct one x3 = {5, {1, 2, 3}}; // expected-error{{initialization of flexible array member is not allowed}}
11 struct one x3a = { 5 };
12 struct one x3b = { .a = 5 };
13 struct one x3c = { 5, {} }; // expected-warning{{use of GNU empty initializer extension}} \
ms_class_layout.cpp 18 char one; member in class:A
142 // CHECK-NEXT: 12 | char one
164 // CHECK-NEXT: 76 | char one
194 // CHECK-NEXT: 92 | char one
225 // CHECK-NEXT: 92 | char one
  /external/clang/test/SemaCXX/
cxx0x-initializer-constructor.cpp 3 struct one { char c[1]; }; struct
135 one ov1(B); // expected-note {{not viable: cannot convert initializer list}}
140 static_assert(sizeof(ov1({{1, 1.0}, 2, {3, 4}})) == sizeof(one), "bad overload");
144 one ov2(int);
146 static_assert(sizeof(ov2({1})) == sizeof(one), "bad overload"); // list -> int ranks as identity
cxx0x-initializer-stdinitializerlist.cpp 45 struct one { char c[1]; }; struct
83 one overloaded(std::initializer_list<int>);
86 static_assert(sizeof(overloaded({1, 2, 3})) == sizeof(one), "bad overload");
93 one ov2(std::initializer_list<int>); // expected-note {{candidate}}
96 static_assert(sizeof(ov2({1, 2, 3})) == sizeof(one), "bad overload");
  /external/dexmaker/src/dx/java/com/android/dx/dex/file/
CatchStructs.java 202 CatchTable.Entry one = table.get(i); local
203 int start = one.getStart();
204 int end = one.getEnd();
215 out.writeShort(handlerOffsets.get(one.getHandlers()));
223 * Only one of {@code printTo} or {@code annotateTo} should
  /external/dexmaker/src/dx/java/com/android/dx/rop/code/
BasicBlockList.java 112 BasicBlock one = (BasicBlock) getOrNull0(i); local
113 if (one != null) {
114 result += one.getInsns().size();
132 BasicBlock one = (BasicBlock) getOrNull0(i); local
133 if (one != null) {
134 InsnList insns = one.getInsns();
177 BasicBlock one = get(i); local
178 InsnList insns = one.getInsns();
184 * Returns an instance that is identical to this one, except that
197 BasicBlock one = (BasicBlock) get0(i) local
    [all...]
Rop.java 52 /** the opcode; one of the constants in {@link RegOps} */
68 * the branchingness of this op; one of the {@code BRANCH_*}
80 * Constructs an instance. This method is private. Use one of the
83 * @param opcode the opcode; one of the constants in {@link RegOps}
89 * @param branchingness the branchingness of this op; one of the
131 * @param opcode the opcode; one of the constants in {@link RegOps}
137 * @param branchingness the branchingness of this op; one of the
151 * @param opcode the opcode; one of the constants in {@link RegOps}
155 * @param branchingness the branchingness of this op; one of the
170 * @param opcode the opcode; one of the constants in {@link RegOps
284 Type one = exceptions.getType(i); local
    [all...]

Completed in 1284 milliseconds

1 2 3 4 5 6 7 891011>>