HomeSort by relevance Sort by last modified time
    Searched refs:ans (Results 1 - 25 of 155) sorted by null

1 2 3 4 5 6 7

  /frameworks/opt/net/wifi/service/java/com/android/server/wifi/util/
BitMask.java 36 boolean ans = (value & maskBit) != 0;
38 return ans;
  /external/selinux/checkpolicy/
checkpolicy.c 390 char ans[80 + 1], *outfile = NULL, *path, *fstype; local
712 FGETS(ans, sizeof(ans), stdin);
713 switch (ans[0]) {
716 FGETS(ans, sizeof(ans), stdin);
717 ssid = atoi(ans);
720 FGETS(ans, sizeof(ans), stdin);
721 tsid = atoi(ans);
    [all...]
  /external/python/cpython2/Lib/idlelib/idle_test/
test_editmenu.py 41 tag, ans = '', 'onetwo\n'
45 self.assertEqual(text.get('1.0', 'end'), ans)
50 tag, ans = 'sel', 'two\n'
54 self.assertEqual(text.get('1.0', 'end'), ans)
61 end, ans = 0, 'onetwo'
66 self.assertEqual(entry.get(), ans)
71 end, ans = 'end', 'two'
76 self.assertEqual(entry.get(), ans)
82 end, ans = 0, 'onetwo'
87 self.assertEqual(spin.get(), ans)
    [all...]
  /external/python/cpython3/Lib/idlelib/idle_test/
test_editmenu.py 40 for tag, ans in ('', 'onetwo\n'), ('sel', 'two\n'):
41 with self.subTest(tag=tag, ans=ans):
45 self.assertEqual(text.get('1.0', 'end'), ans)
52 for end, ans in (0, 'onetwo'), ('end', 'two'):
53 with self.subTest(entry=entry, end=end, ans=ans):
58 self.assertEqual(entry.get(), ans)
64 for end, ans in (0, 'onetwo'), ('end', 'two'):
65 with self.subTest(end=end, ans=ans)
    [all...]
  /external/tensorflow/tensorflow/python/kernel_tests/
clip_ops_test.py 35 ans = clip_ops.clip_by_value(x, -clip_value, clip_value)
36 tf_ans = ans.eval()
55 ans = clip_ops.clip_by_value(x, -clip_value, clip_value)
56 tf_ans = ans.eval()
68 ans = clip_ops.clip_by_norm(x, clip_norm)
69 tf_ans = ans.eval()
72 ans = clip_ops.clip_by_norm(x, clip_norm)
73 tf_ans_tensor = ans.eval()
93 ans = clip_ops.clip_by_norm(x, clip_norm)
94 tf_ans = ans.eval(
    [all...]
argmax_op_test.py 37 ans = method(x, axis=axis)
39 tf_ans = ans.eval()
43 self.assertShapeEqual(expected_values, ans)
46 ans.eval()
80 ans = math_ops.argmax(x, axis=0, output_type=dtypes.int32)
81 tf_ans = ans.eval()
88 ans = math_ops.argmin(x, axis=0, output_type=dtypes.int32)
89 tf_ans = ans.eval()
115 ans = op([1]).eval()
116 self.assertAllEqual(ans, 0
    [all...]
  /external/pdfium/third_party/bigint/
BigUnsigned.hh 254 BigUnsigned ans; local
255 ans.add(*this, x);
256 return ans;
259 BigUnsigned ans; local
260 ans.subtract(*this, x);
261 return ans;
264 BigUnsigned ans; local
265 ans.multiply(*this, x);
266 return ans;
285 BigUnsigned ans; local
290 BigUnsigned ans; local
295 BigUnsigned ans; local
300 BigUnsigned ans; local
305 BigUnsigned ans; local
    [all...]
BigInteger.hh 151 BigInteger ans; local
152 ans.add(*this, x);
153 return ans;
156 BigInteger ans; local
157 ans.subtract(*this, x);
158 return ans;
161 BigInteger ans; local
162 ans.multiply(*this, x);
163 return ans;
182 BigInteger ans; local
    [all...]
  /toolchain/binutils/binutils-2.27/gas/config/
tc-visium.c 766 int ans = strcmp (mnem, opcode_table[mid].mnem); local
768 if (ans < 0)
770 else if (ans > 0)
920 int ans = strcmp (buf, gen_reg_table[mid].name); local
922 if (ans < 0)
924 else if (ans > 0)
957 int ans = strcmp (buf, fp_reg_table[mid].name); local
959 if (ans < 0)
961 else if (ans > 0)
994 int ans = strcmp (buf, cc_table[mid].name) local
1033 int ans; local
    [all...]
  /development/vndk/tools/definition-tool/tests/
test_vndk_lib_dir.py 53 ans = VNDKLibDir.extract_version_from_path(
55 self.assertEqual('current', ans)
57 ans = VNDKLibDir.extract_version_from_path(
59 self.assertEqual('current', ans)
61 ans = VNDKLibDir.extract_version_from_path(
63 self.assertEqual('28', ans)
65 ans = VNDKLibDir.extract_version_from_path(
67 self.assertEqual('28', ans)
69 ans = VNDKLibDir.extract_version_from_path(
71 self.assertEqual('p', ans)
    [all...]
  /external/python/cpython3/Modules/_decimal/tests/
bignum.py 30 ans = hash_ if sign == 1 else -hash_
31 return -2 if ans == -1 else ans
  /external/ltp/testcases/network/stress/dns/
dns-stress01-rmt 51 dig @$srv_ipaddr -p $port node${min_id}.${domain} $record > ans.log 2>&1 || \
53 dns_check_answer ans.log
67 dig @$srv_ipaddr -p $port node${id}.${domain} $record > ans.log 2>&1 || \
69 dns_check_answer ans.log
dns-stress02-rmt 55 > ans.log 2>&1 || \
57 dns_check_answer ans.log
72 > ans.log 2>&1 || \
74 dns_check_answer ans.log
  /prebuilts/go/darwin-x86/src/cmd/compile/internal/gc/testdata/gen/
arithConstGen.go 64 var ans uint64
67 ans = i + j
69 ans = i - j
71 ans = i * j
74 ans = i / j
78 ans = i % j
81 ans = i << j
83 ans = i >> j
85 ans = i & j
87 ans = i |
    [all...]
constFoldGen.go 54 var ans uint64
57 ans = i + j
59 ans = i - j
61 ans = i * j
64 ans = i / j
68 ans = i % j
71 ans = i << j
73 ans = i >> j
77 ans = uint64(uint32(ans))
    [all...]
  /prebuilts/go/linux-x86/src/cmd/compile/internal/gc/testdata/gen/
arithConstGen.go 64 var ans uint64
67 ans = i + j
69 ans = i - j
71 ans = i * j
74 ans = i / j
78 ans = i % j
81 ans = i << j
83 ans = i >> j
85 ans = i & j
87 ans = i |
    [all...]
constFoldGen.go 54 var ans uint64
57 ans = i + j
59 ans = i - j
61 ans = i * j
64 ans = i / j
68 ans = i % j
71 ans = i << j
73 ans = i >> j
77 ans = uint64(uint32(ans))
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
decimal.py 221 ans = _dec_from_triple(args[0]._sign, args[0]._int, 'n', True)
222 return ans._fix_nan(context)
884 ans = self._compare_check_nans(other, context)
885 if ans:
    [all...]
  /external/python/cpython2/Lib/
decimal.py 220 ans = _dec_from_triple(args[0]._sign, args[0]._int, 'n', True)
221 return ans._fix_nan(context)
883 ans = self._compare_check_nans(other, context)
884 if ans:
892 ans = self._compare_check_nans(other, context)
893 if ans:
901 ans = self._compare_check_nans(other, context)
902 if ans:
910 ans = self._compare_check_nans(other, context)
911 if ans
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/
decimal.py 221 ans = _dec_from_triple(args[0]._sign, args[0]._int, 'n', True)
222 return ans._fix_nan(context)
884 ans = self._compare_check_nans(other, context)
885 if ans:
893 ans = self._compare_check_nans(other, context)
894 if ans:
902 ans = self._compare_check_nans(other, context)
903 if ans:
911 ans = self._compare_check_nans(other, context)
912 if ans
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/
decimal.py 221 ans = _dec_from_triple(args[0]._sign, args[0]._int, 'n', True)
222 return ans._fix_nan(context)
884 ans = self._compare_check_nans(other, context)
885 if ans:
893 ans = self._compare_check_nans(other, context)
894 if ans:
902 ans = self._compare_check_nans(other, context)
903 if ans:
911 ans = self._compare_check_nans(other, context)
912 if ans
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
decimal.py 221 ans = _dec_from_triple(args[0]._sign, args[0]._int, 'n', True)
222 return ans._fix_nan(context)
884 ans = self._compare_check_nans(other, context)
885 if ans:
893 ans = self._compare_check_nans(other, context)
894 if ans:
902 ans = self._compare_check_nans(other, context)
903 if ans:
911 ans = self._compare_check_nans(other, context)
912 if ans
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
decimal.py 221 ans = _dec_from_triple(args[0]._sign, args[0]._int, 'n', True)
222 return ans._fix_nan(context)
884 ans = self._compare_check_nans(other, context)
885 if ans:
893 ans = self._compare_check_nans(other, context)
894 if ans:
902 ans = self._compare_check_nans(other, context)
903 if ans:
911 ans = self._compare_check_nans(other, context)
912 if ans
    [all...]
  /frameworks/rs/tests/java_api/RSUnitTests/src/com/android/rs/unittest/
reflection3264.rs 20 uchar4 ans;
44 _RS_ASSERT(usr->ans.x == expect_ans.x);
45 _RS_ASSERT(usr->ans.y == expect_ans.y);
46 _RS_ASSERT(usr->ans.z == expect_ans.z);
47 _RS_ASSERT(usr->ans.w == expect_ans.w);
  /external/python/cpython3/Lib/
_pydecimal.py 248 ans = _dec_from_triple(args[0]._sign, args[0]._int, 'n', True)
249 return ans._fix_nan(context)
    [all...]

Completed in 1532 milliseconds

1 2 3 4 5 6 7