Searched defs:one (Results 101 - 125 of 342) sorted by relevance

1234567891011>>

/external/libcxx/test/algorithms/alg.modifying.operations/alg.unique/
H A Dunique.pass.cpp100 int one = 1; local
109 ib[1].reset(&one);
123 id[2].reset(&one);
131 ie[2].reset(&one);
140 ig[2].reset(&one);
141 ig[3].reset(&one);
149 ih[1].reset(&one);
150 ih[2].reset(&one);
158 ii[1].reset(&one);
159 ii[2].reset(&one);
[all...]
/external/libcxx/test/utilities/function.objects/unord.hash/
H A Denum.pass.cpp25 enum class Cardinals { zero, one, two, three, five=5 }; member in class:Cardinals
/external/openssl/crypto/ec/
H A Decp_mont.c209 BIGNUM *one = NULL; local
237 one = BN_new();
238 if (one == NULL) goto err;
239 if (!BN_to_montgomery(one, BN_value_one(), mont, ctx)) goto err;
243 group->field_data2 = one;
244 one = NULL;
/external/openssl/crypto/modes/
H A Dctr128.c82 const union { long one; char little; } is_endian = {1}; member in union:__anon28321
/external/openssl/crypto/rc4/
H A Drc4_enc.c106 * (2.5-3 times slower than one generated by Sun's WorkShop
127 const union { long one; char little; } is_endian = {1}; member in union:__anon28354
/external/qemu/distrib/sdl-1.2.15/src/video/
H A Dmath_private.h27 n0 = ((*(int*)&one)>>29)^1; * index of high word *
165 one = 1.0, variable
/external/skia/gm/
H A Dpathopsinverse.cpp37 SkColor blend(SkColor one, SkColor two) { argument
41 canvas.drawColor(one);
66 SkPath one, two; variable
74 one.reset();
75 one.setFillType(oneF);
76 one.addRect(10, 10, 70, 70);
83 canvas->drawPath(one, fOnePaint);
84 canvas->drawPath(one, fOutlinePaint);
91 Op(one, two, (SkPathOp) op, &result);
/external/skia/src/utils/
H A DSkBase64.cpp80 int one = (uint8_t) (bytes[0] << 2); local
82 one |= two >> 4;
88 SkASSERT(one < 256 && two < 256 && three < 256);
89 *dst = (unsigned char) one;
/external/chromium_org/v8/test/mjsunit/
H A Dstack-traces.js35 function one() {
44 one();
250 testTrace("testNested", testNested, ["at one", "at two", "at three"]);
/external/chromium_org/athena/wm/
H A Dwindow_list_provider_impl_unittest.cc18 bool AreWindowListsEqual(const aura::Window::Windows& one, argument
20 return one.size() == two.size() &&
21 std::equal(one.begin(), one.end(), two.begin());
/external/chromium_org/base/posix/
H A Dunix_domain_socket_linux.cc24 // ownership of the newly allocated file descriptors to |one| and |two|.
26 static bool CreateSocketPair(base::ScopedFD* one, base::ScopedFD* two) { argument
30 one->reset(raw_socks[0]);
/external/chromium_org/content/shell/renderer/test_runner/
H A Dmock_web_user_media_client.cc167 const size_t one = 1; local
168 WebVector<WebMediaStreamTrack> audio_tracks(request.audio() ? one : zero);
169 WebVector<WebMediaStreamTrack> video_tracks(request.video() ? one : zero);
/external/chromium_org/net/spdy/
H A Dhpack_huffman_aggregator_test.cc115 SpdySessionKey key1(HostPortPair("one.com", 443), ProxyServer::Direct(),
122 // Creates one.com.
123 HpackEncoder* one = peer_.ObtainEncoder(key1); local
129 EXPECT_NE(one, two);
131 // Touch one.com.
132 EXPECT_EQ(one, peer_.ObtainEncoder(key1));
136 EXPECT_EQ(one, peer_.ObtainEncoder(key1));
137 EXPECT_NE(one, three);
/external/chromium_org/third_party/angle/src/libGLESv2/renderer/
H A Dvertexconversion.h136 static T one() { return static_cast<T>(1); } function in struct:rx::SimpleDefaultValues
144 static T one() { return std::numeric_limits<T>::max(); } function in struct:rx::NormalizedDefaultValues
172 copyComponent(out, ein, 3, static_cast<OutputType>(DefaultValueRule::one()));
/external/chromium_org/third_party/boringssl/src/crypto/rc4/
H A Drc4.c107 * (2.5-3 times slower than one generated by Sun's WorkShop
121 long one; member in union:__anon11650
350 /* In this case several functions are provided by asm code. However, one cannot
/external/chromium_org/third_party/icu/source/test/cintltst/
H A Dchashtst.c98 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) !
157 static const UChar one[4] = {0x006F, 0x006E, 0x0065, 0}; /* L"one" */ local
[all...]
/external/chromium_org/third_party/icu/source/test/intltest/
H A Dlistformattertest.cpp22 one("Alice", -1, US_INV), two("Bob", -1, US_INV),
37 void ListFormatterTest::CheckFourCases(const char* locale_string, UnicodeString one, UnicodeString two, argument
45 UnicodeString input1[] = {one};
48 UnicodeString input2[] = {one, two};
51 UnicodeString input3[] = {one, two, three};
54 UnicodeString input4[] = {one, two, three, four};
58 UBool ListFormatterTest::RecordFourCases(const Locale& locale, UnicodeString one, UnicodeString two, argument
66 UnicodeString input1[] = {one};
68 UnicodeString input2[] = {one, two};
70 UnicodeString input3[] = {one, tw
[all...]
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/gallivm/
H A Dlp_bld_type.h164 LLVMValueRef one; member in struct:lp_build_context
/external/chromium_org/third_party/openmax_dl/dl/sp/src/arm/neon/
H A DomxSP_FFTInv_CToC_FC32_Sfs_s.S87 @// one must be the same as dScale[0]!
89 #define one S8.F32 define
193 VMOV one, 1.0
194 VDIV one, one, fN @ one = dScale[0] = 1 / fftSize
/external/chromium_org/third_party/skia/experimental/Intersection/
H A DIntersections.h58 int insert(double one, double two, const _Point& pt);
61 void insertCoincident(double one, double two, const _Point& pt) { argument
62 int index = insertSwap(one, two, pt);
71 int insertSwap(double one, double two, const _Point& pt) { argument
73 return insert(two, one, pt);
75 return insert(one, two, pt);
130 unsigned short fIsCoincident[2]; // bit arrays, one bit set for each coincident T
139 void remove(double one, double two, const _Point& startPt, const _Point& endPt);
/external/chromium_org/third_party/skia/gm/
H A Darithmode.cpp86 const SkScalar one = SK_Scalar1; local
89 0, 0, 0, one,
90 0, one, 0, 0,
91 0, 0, one, 0,
92 0, one, one, 0,
93 0, one, -one, 0,
94 0, one/2, one/
[all...]
/external/chromium_org/third_party/skia/src/core/
H A DSkBitmapProcState_matrix.h37 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/chromium_org/third_party/yasm/source/patched-yasm/modules/preprocs/nasm/
H A Dnasmlib.c193 char *nasm_strcat(const char *one, const char *two) argument
196 size_t l1=strlen(one);
198 strcpy(rslt, one);
/external/chromium_org/v8/test/cctest/compiler/
H A Dtest-phi-reducer.cc99 Node* one = R.Int32Constant(1); local
103 Node* singles[] = {zero, one, oneish, param};
113 Node* one = R.Int32Constant(1); local
117 Node* singles[] = {zero, one, oneish, param};
143 Node* one = R.Int32Constant(1); local
147 Node* singles[] = {zero, one, oneish, param};
177 Node* one = R.Int32Constant(1); local
181 Node* singles[] = {zero, one, oneish, param};
220 Node* one = R.Int32Constant(1); local
224 Node* singles[] = {zero, one, oneis
[all...]
/external/chromium_org/v8/third_party/fdlibm/
H A Dfdlibm.cc101 static const double one = 1.0; member in namespace:v8::fdlibm
185 z = one - z;
186 if (carry != 0) z -= scalbn(one, q0);
226 fw = scalbn(one, q0);

Completed in 1565 milliseconds

1234567891011>>