HomeSort by relevance Sort by last modified time
    Searched defs:one (Results 251 - 275 of 597) sorted by null

<<11121314151617181920>>

  /external/clang/test/SemaCXX/
cxx0x-initializer-references.cpp 3 struct one { char c; }; struct
39 one f(const int&);
42 one g(int&); // expected-note {{passing argument}}
57 one f(const int&);
61 static_assert(sizeof(f({1})) == sizeof(one), "bad overload resolution");
63 one g(int&);
68 one h(const int&);
cxx0x-initializer-scalars.cpp 3 struct one { char c[1]; }; struct
77 one overloaded(int);
80 static_assert(sizeof(overloaded({0})) == sizeof(one), "bad overload");
110 one f(std::initializer_list<int>);
114 static_assert(sizeof(f({0})) == sizeof(one), "bad overload");
  /external/dexmaker/src/dx/java/com/android/dx/dex/code/form/
Form35c.java 160 RegisterSpec one = regs.get(i); local
161 result += one.getCategory();
168 if (!unsignedFitsInNibble(one.getReg() + one.getCategory() - 1)) {
177 * Returns a register list which is equivalent to the given one,
197 RegisterSpec one = orig.get(i); local
198 result.set(wordAt, one);
199 if (one.getCategory() == 2) {
201 RegisterSpec.make(one.getReg() + 1, Type.VOID));
  /external/dexmaker/src/dx/java/com/android/dx/dex/file/
TypeListItem.java 100 Type one = list.getType(i); local
101 int idx = typeIds.indexOf(one);
103 " " + Hex.u2(idx) + " // " + one.toHuman());
  /external/dexmaker/src/dx/java/com/android/dx/rop/code/
BasicBlock.java 79 Rop one = insns.get(i).getOpcode(); local
80 if (one.getBranchingness() != Rop.BRANCH_NONE) {
255 * Returns an instance that is identical to this one, except that
RegisterSpecList.java 298 * are included, while indexes with a one are excluded. Mutability
329 * Returns an instance that is identical to this one, except that
347 RegisterSpec one = (RegisterSpec) get0(i); local
348 if (one != null) {
349 result.set0(i, one.withOffset(delta));
361 * Returns an instance that is identical to this one, except that
386 RegisterSpec one = (RegisterSpec) get0(i); local
390 result.set0(i, one.withReg(base));
392 base += one.getCategory();
395 result.set0(i, one);
    [all...]
RopMethod.java 122 * Returns an instance that is identical to this one, except that
162 BasicBlock one = blocks.get(i); local
163 int label = one.getLabel();
164 IntList successors = one.getSuccessors();
  /external/dexmaker/src/dx/java/com/android/dx/util/
FixedSizeList.java 152 Object one = arr[i]; local
153 if (one != null) {
154 newa[at] = one;
LabeledList.java 50 Object one = old.get0(i); local
51 if (one != null) {
52 set0(i, one);
  /external/eigen/bench/
quat_slerp.cpp 26 static const Scalar one = Scalar(1) - dummy_precision<Scalar>(); local
29 if (absD>=one)
48 static const Scalar one = Scalar(1) - epsilon<Scalar>(); local
55 if (absD>=one)
  /external/icu/icu4c/source/test/cintltst/
chashtst.c 98 static const char one[4] = {0x6F, 0x6E, 0x65, 0}; /* "one" */ local
118 _put(hash, one, 1, 0);
122 _put(hash, one, -1, 1);
125 _put(hash, one, 100, -1);
129 _get(hash, one, 100);
134 if(_compareChars((void*)one, (void*)three) == TRUE ||
135 _compareChars((void*)one, (void*)one2) != TRUE ||
136 _compareChars((void*)one, (void*)one) != TRUE |
157 static const UChar one[4] = {0x006F, 0x006E, 0x0065, 0}; \/* L"one" *\/ local
    [all...]
  /external/libcxxabi/test/
test_vector1.cpp 66 void *one, *two, *three; local
69 one = __cxxabiv1::__cxa_vec_new ( 10, 40, 0, NULL, NULL );
73 __cxxabiv1::__cxa_vec_delete ( one, 40, 0, NULL );
78 one = __cxxabiv1::__cxa_vec_new ( 10, 40, 0, my_construct, my_destruct );
82 __cxxabiv1::__cxa_vec_delete ( one, 40, 0, my_destruct );
87 one = __cxxabiv1::__cxa_vec_new ( 10, 40, 8, NULL, NULL );
91 __cxxabiv1::__cxa_vec_delete ( one, 40, 8, NULL );
96 one = __cxxabiv1::__cxa_vec_new ( 10, 40, 8, my_construct, my_destruct );
100 __cxxabiv1::__cxa_vec_delete ( one, 40, 8, my_destruct );
110 void *one, *two, *three local
151 void *one, *two, *three; local
208 void *one, *two, *three; local
    [all...]
  /external/llvm/unittests/ExecutionEngine/JIT/
JITEventListenerTestCommon.h 108 Value* one = ConstantInt::get(GlobalContext, APInt(32, 1)); local
111 Arg = Builder.CreateMul(Arg, Builder.CreateAdd(Arg, one));
  /external/mesa3d/src/gallium/auxiliary/gallivm/
lp_bld_type.h 164 LLVMValueRef one; member in struct:lp_build_context
  /external/openfst/src/include/fst/script/
weight-class.h 105 case ONE:
106 return "ONE";
125 static const WeightClass &One() {
126 static WeightClass w(ONE);
140 enum ElementType { ZERO, ONE, OTHER };
152 // We need to store zero and one as statics, because the weight type
156 static const W one = W::One(); local
160 } else if (element_type_ == ONE) {
161 return &one;
    [all...]
  /external/skia/gm/
arithmode.cpp 85 const SkScalar one = SK_Scalar1; local
88 0, 0, 0, one,
89 0, one, 0, 0,
90 0, 0, one, 0,
91 0, one, one, 0,
92 0, one, -one, 0,
93 0, one/2, one/2, 0
    [all...]
  /external/skia/src/core/
SkBitmapProcState_matrix.h 37 SkFixed one PREAMBLE_PARAM_Y) {
40 return (i << 14) | (TILEY_PROCF((f + one), max));
44 SkFixed one PREAMBLE_PARAM_X) {
47 return (i << 14) | (TILEX_PROCF((f + one), max));
59 const SkFixed one = s.fFilterOneX; local
72 fx = SkScalarToFractionalInt(pt.fX) - (SkFixedToFractionalInt(one) >> 1);
84 *xy++ = PACK_FILTER_X_NAME(fixedFx, maxX, one PREAMBLE_ARG_X);
  /external/skia/src/utils/
SkCullPoints.cpp 208 const SkScalar one = SK_Scalar1; local
209 SkRect r = SkRect::MakeXYWH(x - half, y - half, one, one);
  /external/valgrind/main/auxprogs/
valgrind-listener.c 237 int i, j, k, res, one; local
274 one = 1;
276 &one, sizeof(int)) < 0) {
  /external/valgrind/main/exp-bbv/tests/ppc32-linux/
ll.S 52 # saves one instruction on any future load from memory
146 addi 4,17,1 # restore (plus one because r17 is decremented)
223 addi 16,DATA_BEGIN,(one-data_begin)-1
377 subi 14,14,1 # point to one less than null
524 one: .ascii "One \0" label
  /external/valgrind/main/memcheck/tests/
wrap6.c 115 /* Returns one, in a way that gcc probably can't constant fold out */
117 volatile int one_actual_return_value = 0; /* the value one() returns */
120 int one ( void ) function
133 { register int len = one(); \
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm11/vc/m4p2/src/
omxVCM4P2_DecodePadMV_PVOP_s.s 101 one RN 4 label
208 MOV one,#1
210 LSL scaleFactor,one,temp ;// scaleFactor=1<<(fcodeForward-1)
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm_neon/vc/m4p2/src/
omxVCM4P2_DecodePadMV_PVOP_s.s 101 one RN 4 label
208 MOV one,#1
210 LSL scaleFactor,one,temp ;// scaleFactor=1<<(fcodeForward-1)
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/
HardwareConfig.java 45 * ril attachment model. if single, there is a one-to-one
47 * if multiple, there is a one-to-many relatioship between a
200 String one = this.toString(); local
203 return (one.compareTo(two));
  /libcore/jsr166-tests/src/test/java/jsr166/
AtomicReferenceTest.java 20 AtomicReference ai = new AtomicReference(one);
21 assertSame(one, ai.get());
36 AtomicReference ai = new AtomicReference(one);
37 assertSame(one, ai.get());
48 AtomicReference ai = new AtomicReference(one);
49 assertSame(one, ai.get());
60 AtomicReference ai = new AtomicReference(one);
61 assertTrue(ai.compareAndSet(one, two));
71 * compareAndSet in one thread enables another waiting for value
75 final AtomicReference ai = new AtomicReference(one);
    [all...]

Completed in 4039 milliseconds

<<11121314151617181920>>