HomeSort by relevance Sort by last modified time
    Searched refs:three (Results 151 - 175 of 664) sorted by null

1 2 3 4 5 67 8 91011>>

  /external/icu/icu4c/source/samples/ustring/
ustring.cpp 454 UnicodeString three(FALSE, readonly, UPRV_LENGTHOF(readonly));
455 printUnicodeString("readonly-alias string: ", three);
458 three.setCharAt(1, 0x39);
459 printUnicodeString("readonly-aliasing string after modification: ", three);
461 for(i=0; i<three.length(); ++i) {
  /external/python/cpython3/Modules/
_testmultiphase.c 253 /* Create a SimpleNamespace(three=3) */
257 PyObject *dct, *ns, *three; local
268 three = PyLong_FromLong(3);
269 if (three == NULL) {
273 PyDict_SetItemString(dct, "three", three);
274 Py_DECREF(three);
  /external/wycheproof/java/com/google/security/wycheproof/
EcUtil.java 76 final BigInteger three = new BigInteger("3"); local
77 final BigInteger a = p.subtract(three);
424 BigInteger three = new BigInteger("3"); local
439 l = modSqrt(x.multiply(three), p);
444 BigInteger a = l.multiply(y.add(y)).subtract(xSqr.multiply(three)).mod(p);
  /packages/apps/Dialer/java/com/android/dialer/dialpadview/
DialpadView.java 65 R.id.three,
332 if (buttonId == R.id.three) {
372 } else if (buttonId == R.id.three) {
385 } else if (buttonId == R.id.three) {
430 } else if (buttonId == R.id.three
447 } else if (buttonId == R.id.three
457 || buttonId == R.id.three
  /packages/apps/PhoneCommon/src/com/android/phone/common/dialpad/
DialpadView.java 80 private final int[] mButtonIds = new int[] {R.id.zero, R.id.one, R.id.two, R.id.three,
329 if (buttonId == R.id.three) {
369 } else if (buttonId == R.id.three) {
382 } else if (buttonId == R.id.three) {
423 } else if (buttonId == R.id.three || buttonId == R.id.six || buttonId == R.id.nine
434 } else if (buttonId == R.id.three || buttonId == R.id.six || buttonId == R.id.nine
440 if (buttonId == R.id.one || buttonId == R.id.two || buttonId == R.id.three
  /external/python/cpython3/Lib/unittest/test/testmock/
testhelpers.py 15 def three(self, a=None): member in class:SomeClass
331 mock.three()
332 mock.three.assert_called_with()
334 mock.three.assert_called_with, 3)
335 self.assertRaises(TypeError, mock.three, 3, 2)
337 mock.three(1)
338 mock.three.assert_called_with(1)
340 mock.three(a=1)
341 mock.three.assert_called_with(a=1)
495 mock.three(3
    [all...]
  /external/mesa3d/docs/specs/
MESA_texture_array.spec 71 of the N LOD in all three dimensions. For the TEXTURE_2D_ARRAY target,
172 is used to specify a three-dimensional texture image. target must be one
173 one of TEXTURE_3D for a three-dimensional texture or
176 three-dimensional proxy texture, or PROXY_TEXTURE_2D_ARRAY_EXT for a
334 "For one-, two-, or three-dimensional textures and one- or
343 "In addition to image arrays for one-, two-, and three-dimensional
346 are maintained for one-, two-, and three-dimensional textures and one-
354 three-dimensional proxy state values of the specified level-of-detail
377 named one-, two-, and three-dimensional, cube map, and one- and
394 three-dimensional, cube map, one- or two-dimensional array textur
    [all...]
  /external/tensorflow/tensorflow/python/eager/
core_test.py 217 three = constant_op.constant(3)
222 inputs=[three, five],
223 attrs=('T', three.dtype.as_datatype_enum))[0]
239 three = constant_op.constant([[3.]]).gpu()
244 inputs=[three, five],
246 three.dtype.as_datatype_enum))[0]
  /system/bt/stack/smp/
p_256_ecc_pp.cc 262 uint32_t three[kl] = {0}; local
263 three[0] = 3;
264 multiprecision_sub_mod(rhs, rhs, three, kl);
  /device/linaro/bootloader/edk2/EmulatorPkg/Sec/Ia32/
SwitchRam.S 36 # Save three register: eax, ebx, ecx
  /external/python/cpython3/Lib/test/test_importlib/
test_namespace_pkgs.py 225 import parent.child.three
242 import parent.child.three
246 import parent.child.three
252 self.assertEqual(parent.child.three.attr, 'parent child three')
  /external/webrtc/webrtc/tools/rtcbot/test/
three_bots_video_conference.js 11 // The test succeeds after establishing the call between the three
113 // SetTimeout used because creating the three answers will very fast
  /libcore/jsr166-tests/src/test/java/jsr166/
ConcurrentLinkedQueueTest.java 454 q.add(three);
471 q.add(three);
488 q.add(three);
494 assertSame(it.next(), three); local
CopyOnWriteArrayListTest.java 94 assertTrue(full.addAll(Arrays.asList(three, four, five)));
96 assertTrue(full.addAll(Arrays.asList(three, four, five)));
107 assertEquals(2, full.addAllAbsent(Arrays.asList(three, four, one)));
109 assertEquals(0, full.addAllAbsent(Arrays.asList(three, four, one)));
127 full.addIfAbsent(three);
128 assertTrue(full.contains(three));
322 full.add(three);
333 full.add(three);
335 assertEquals(-1, full.lastIndexOf(three, 3));
ConcurrentHashMap8Test.java 48 map.put(three, "C");
195 assertEquals("C", map.get(three));
235 assertTrue(full.addAll(Arrays.asList(three, four, five)));
237 assertFalse(full.addAll(Arrays.asList(three, four, five)));
248 assertTrue(full.addAll(Arrays.asList(three, four, one)));
250 assertFalse(full.addAll(Arrays.asList(three, four, one)));
268 assertTrue(full.add(three));
269 assertTrue(full.contains(three));
270 assertFalse(full.add(three));
271 assertTrue(full.contains(three));
    [all...]
  /prebuilts/go/darwin-x86/src/cmd/vendor/github.com/google/pprof/internal/binutils/
disasm_test.go 115 1002: instruction three
121 {Addr: 0x1002, Text: "instruction three"},
  /prebuilts/go/darwin-x86/src/math/big/
sqrt.go 12 three = NewFloat(3.0)
136 u.Sub(three, u) // = 3 - xt˛
11 three = NewFloat(3.0) var
  /prebuilts/go/linux-x86/src/cmd/vendor/github.com/google/pprof/internal/binutils/
disasm_test.go 115 1002: instruction three
121 {Addr: 0x1002, Text: "instruction three"},
  /prebuilts/go/linux-x86/src/math/big/
sqrt.go 12 three = NewFloat(3.0)
136 u.Sub(three, u) // = 3 - xt˛
11 three = NewFloat(3.0) var
  /toolchain/binutils/binutils-2.27/gas/testsuite/gas/arm/
armv1.s 72 # Add three nop instructions to ensure that the
  /toolchain/binutils/binutils-2.27/gas/testsuite/gas/sh/sh64/
crange1.s 74 ! should be three or four .cranges descriptors, depending on whether one
  /external/eigen/lapack/
dlapy3.f 100 * adding all three entries together will make sure
slapy3.f 100 * adding all three entries together will make sure
  /external/tensorflow/tensorflow/contrib/lite/models/testdata/g3doc/
README.md 38 output size of 64 (float), three Lstm layers, and one fully connected layers
48 (float), two fully connected layers, three Lstm layers, and one recurrent layer
72 of three embedding layer, three LSTM layers, followed by a multiplication, a
  /external/tensorflow/tensorflow/core/lib/strings/
scanner_test.cc 245 EXPECT_EQ("2three", remaining.ToString());
248 EXPECT_EQ("three", remaining.ToString());

Completed in 1147 milliseconds

1 2 3 4 5 67 8 91011>>