Home
last modified time | relevance | path

Searched refs:checks (Results 1 – 25 of 1450) sorted by relevance

12345678910>>...58

/external/jsoncpp/src/test_lib_json/
Dmain.cpp165 IsCheck checks; in JSONTEST_FIXTURE() local
166 checks.isObject_ = true; in JSONTEST_FIXTURE()
167 JSONTEST_ASSERT_PRED(checkIs(emptyObject_, checks)); in JSONTEST_FIXTURE()
168 JSONTEST_ASSERT_PRED(checkIs(object1_, checks)); in JSONTEST_FIXTURE()
207 IsCheck checks; in JSONTEST_FIXTURE() local
208 checks.isArray_ = true; in JSONTEST_FIXTURE()
209 JSONTEST_ASSERT_PRED(checkIs(emptyArray_, checks)); in JSONTEST_FIXTURE()
210 JSONTEST_ASSERT_PRED(checkIs(array1_, checks)); in JSONTEST_FIXTURE()
248 IsCheck checks; in JSONTEST_FIXTURE() local
249 checks.isNull_ = true; in JSONTEST_FIXTURE()
[all …]
/external/v8/src/compiler/
Dredundancy-elimination.cc62 EffectPathChecks const* checks) { in Copy() argument
63 return new (zone->New(sizeof(EffectPathChecks))) EffectPathChecks(*checks); in Copy()
170 Node* node, EffectPathChecks const* checks) { in Set() argument
173 info_for_node_[id] = checks; in Set()
178 EffectPathChecks const* checks = node_checks_.Get(effect); in ReduceCheckNode() local
181 if (checks == nullptr) return NoChange(); in ReduceCheckNode()
183 if (Node* check = checks->LookupCheck(node)) { in ReduceCheckNode()
189 return UpdateChecks(node, checks->AddCheck(zone(), node)); in ReduceCheckNode()
200 EffectPathChecks const* checks = node_checks_.Get(effect); in TryReuseBoundsCheckForFirstInput() local
204 if (checks == nullptr) return NoChange(); in TryReuseBoundsCheckForFirstInput()
[all …]
Dredundancy-elimination.h30 static EffectPathChecks* Copy(Zone* zone, EffectPathChecks const* checks);
52 void Set(Node* node, EffectPathChecks const* checks);
64 Reduction UpdateChecks(Node* node, EffectPathChecks const* checks);
/external/ImageMagick/scripts/
Dxsnap131 frame .options.input.checks
132 checkbutton .options.input.checks.border -text "Borders" -width 11 \
134 checkbutton .options.input.checks.frame -text "Frame" -width 11 \
136 checkbutton .options.input.checks.screen -text "Screen" -width 11 \
138 checkbutton .options.input.checks.descend -text "Descend" -anchor w \
140 pack .options.input.checks.border .options.input.checks.frame \
141 .options.input.checks.screen .options.input.checks.descend -side left
142 pack .options.input.checks
158 pack .options.input.checks .options.input.delay .options.input.id \
167 frame .options.processing.checks
[all …]
/external/autotest/client/deps/iwcap/src/
Diwcap.c163 static const struct check checks[] = { variable
203 for (p = checks; p->name != NULL; p++) in find_check_byname()
214 for (p = checks; p->name != NULL; p++)
275 uintptr_t checks = (uintptr_t) arg; in check_phy_handler() local
363 if (checks & CHECK_FREQS) in check_phy_handler()
401 #define PBOOL(c, b, name) if (checks & (c)) pbool(name, phy_caps & (b)) in check_phy_handler()
411 if (checks & CHECK_IS_SMPS) in check_phy_handler()
430 if (checks & CHECK_AMSDU_LEN) in check_phy_handler()
432 if (checks & CHECK_AMPDU_FACT) in check_phy_handler()
434 if (checks & CHECK_AMPDU_DENS) in check_phy_handler()
[all …]
/external/autotest/cli/
Daction_common_unittest.py23 checks = copy.deepcopy(orig_checks)
24 mytest.check_for_wildcard(filters, checks)
26 self.assertEqual(checks, orig_checks)
35 checks = copy.deepcopy(orig_checks)
36 mytest.check_for_wildcard(filters, checks)
38 self.assertEqual(checks, orig_checks)
42 checks = {'something__in': ['item*']}
45 mytest.check_for_wildcard(filters, checks)
47 self.assertEqual(checks, {'something__startswith': None})
52 checks = {'something__name': 'item*'}
[all …]
/external/flatbuffers/docs/source/
DGoApi_generated.txt71 PrependBool prepends a bool to the Builder buffer. Aligns and checks for
75 PrependByte prepends a byte to the Builder buffer. Aligns and checks for
80 checks for space.
84 checks for space.
87 PrependInt16 prepends a int16 to the Builder buffer. Aligns and checks
91 PrependInt32 prepends a int32 to the Builder buffer. Aligns and checks
95 PrependInt64 prepends a int64 to the Builder buffer. Aligns and checks
99 PrependInt8 prepends a int8 to the Builder buffer. Aligns and checks for
107 PrependUint16 prepends a uint16 to the Builder buffer. Aligns and checks
111 PrependUint32 prepends a uint32 to the Builder buffer. Aligns and checks
[all …]
/external/llvm/docs/
DFaultMaps.rst2 FaultMaps and implicit checks
12 Code generated by managed language runtimes tend to have checks that
16 exploited by folding such safety checks into operations that can be
20 For example, Java requires null checks on objects before they are read
31 Information about implicit checks generated by LLVM are put in a
95 ``-enable-implicit-null-checks`` is passed to ``llc``.
103 Making null checks implicit is an aggressive optimization, and it can
106 ensure that only a negligible number of implicit null checks actually
108 of doing this is by healing failed implicit null checks into explicit
109 null checks via code patching or recompilation. It follows that there
[all …]
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/text/
DSpoofCheckerTest.java175 int checks = SpoofChecker.WHOLE_SCRIPT_CONFUSABLE | SpoofChecker.MIXED_SCRIPT_CONFUSABLE in TestGetSetChecks1() local
177 sc = new SpoofChecker.Builder().setChecks(checks).build(); in TestGetSetChecks1()
179 assertEquals("", checks, t); in TestGetSetChecks1()
204 int checks; in TestGetSetChecks() local
208 checks = sc.getChecks(); in TestGetSetChecks()
209 assertEquals("", SpoofChecker.ALL_CHECKS, checks); in TestGetSetChecks()
211 checks &= ~(SpoofChecker.SINGLE_SCRIPT | SpoofChecker.MIXED_SCRIPT_CONFUSABLE); in TestGetSetChecks()
212 sc = new SpoofChecker.Builder().setChecks(checks).build(); in TestGetSetChecks()
214 assertEquals("", checks, checks2); in TestGetSetChecks()
266 assertEquals("", SpoofChecker.CHAR_LIMIT, result.checks); in TestAllowedLocales()
[all …]
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/text/
DSpoofCheckerTest.java172 int checks = SpoofChecker.WHOLE_SCRIPT_CONFUSABLE | SpoofChecker.MIXED_SCRIPT_CONFUSABLE in TestGetSetChecks1() local
174 sc = new SpoofChecker.Builder().setChecks(checks).build(); in TestGetSetChecks1()
176 assertEquals("", checks, t); in TestGetSetChecks1()
201 int checks; in TestGetSetChecks() local
205 checks = sc.getChecks(); in TestGetSetChecks()
206 assertEquals("", SpoofChecker.ALL_CHECKS, checks); in TestGetSetChecks()
208 checks &= ~(SpoofChecker.SINGLE_SCRIPT | SpoofChecker.MIXED_SCRIPT_CONFUSABLE); in TestGetSetChecks()
209 sc = new SpoofChecker.Builder().setChecks(checks).build(); in TestGetSetChecks()
211 assertEquals("", checks, checks2); in TestGetSetChecks()
263 assertEquals("", SpoofChecker.CHAR_LIMIT, result.checks); in TestAllowedLocales()
[all …]
/external/clang/docs/
DUndefinedBehaviorSanitizer.rst20 See the full list of available :ref:`checks <ubsan-checks>` below.
23 The checks have small runtime cost and no impact on address space layout or ABI.
50 You can enable only a subset of :ref:`checks <ubsan-checks>` offered by UBSan,
67 .. _ubsan-checks:
69 Availablle checks
72 Available checks are:
100 invalid pointers. These checks are made in terms of
110 signed left shift, also checks for signed overflow in C, and for
115 including all the checks added by ``-ftrapv``, and checking for
130 - ``-fsanitize=undefined``: All of the checks listed above other than
[all …]
DControlFlowIntegrity.rst28 To allow the checks to be implemented efficiently, the program must
33 The compiler will only produce CFI checks for a class if it can infer hidden
41 CFI checks for classes without visibility attributes. Most users will want
42 to specify ``-fvisibility=hidden``, which enables CFI checks for such classes.
57 - ``-fsanitize=cfi-cast-strict``: Enables :ref:`strict cast checks
102 This scheme checks that virtual calls take place using a vptr of the correct
126 This scheme checks that pointer casts are made to an object of the correct
128 of the pointee type of the cast. The checks are currently only introduced
162 This scheme checks that non-virtual calls take place using an object of
165 call. The checks are currently only introduced where the object is of a
[all …]
/external/libcxx/docs/DesignDocs/
DDebugMode.rst21 This macro is used to enable assertions and iterator debugging checks within
37 checks. This allows assertion failures to correctly throw through these
72 precondition checks throughout libc++. The second additionally enables
73 "iterator debugging" which checks the validity of iterators used by the program.
78 These checks are enabled when ``_LIBCPP_DEBUG`` is defined to either 0 or 1.
80 The following checks are enabled by ``_LIBCPP_DEBUG``:
87 These checks are enabled when ``_LIBCPP_DEBUG`` is defined to 1.
/external/libhevc/common/arm/
Dihevc_inter_pred_chroma_copy.s113 cmp r7,#0 @checks ht == 0
117 tst r12,#15 @checks wd for multiples for 4 & 8
119 tst r12,#7 @checks wd for multiples for 4 & 8
127 subs r4,r12,#0 @checks wd == 0
159 subs r4,r12,#0 @checks wd == 0
181 subs r4,r12,#0 @checks wd
208 subs r4,r12,#0 @checks wd
228 subs r4,r12,#0 @checks wd
255 subs r4,r12,#0 @checks wd
Dihevc_inter_pred_luma_copy.s93 cmp r7,#0 @checks ht == 0
95 tst r12,#15 @checks wd for multiples for 4 & 8
97 tst r12,#7 @checks wd for multiples for 4 & 8
102 subs r4,r12,#0 @checks wd == 0
137 subs r4,r12,#0 @checks wd
167 subs r4,r12,#0 @checks wd
/external/swiftshader/third_party/subzero/tests_lit/llvm2ice_tests/
Dicmp-with-zero.ll20 ; The following checks are not strictly necessary since one of the RUN
41 ; The following checks are not strictly necessary since one of the RUN
62 ; The following checks are not strictly necessary since one of the RUN
83 ; The following checks are not strictly necessary since one of the RUN
104 ; The following checks are not strictly necessary since one of the RUN
125 ; The following checks are not strictly necessary since one of the RUN
147 ; The following checks are not strictly necessary since one of the RUN
169 ; The following checks are not strictly necessary since one of the RUN
191 ; The following checks are not strictly necessary since one of the RUN
213 ; The following checks are not strictly necessary since one of the RUN
[all …]
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
DSpoofChecker.java617 public Builder setChecks(int checks) { in setChecks() argument
620 if (0 != (checks & ~SpoofChecker.ALL_CHECKS)) { in setChecks()
623 this.fChecks = (checks & SpoofChecker.ALL_CHECKS); in setChecks()
1180 public int checks;
1211 checks = 0;
1224 if (checks == 0) {
1226 } else if (checks == ALL_CHECKS) {
1229 if ((checks & SINGLE_SCRIPT_CONFUSABLE) != 0) {
1232 if ((checks & MIXED_SCRIPT_CONFUSABLE) != 0) {
1235 if ((checks & WHOLE_SCRIPT_CONFUSABLE) != 0) {
[all …]
/external/icu/android_icu4j/src/main/java/android/icu/text/
DSpoofChecker.java573 public Builder setChecks(int checks) { in setChecks() argument
576 if (0 != (checks & ~SpoofChecker.ALL_CHECKS)) { in setChecks()
579 this.fChecks = (checks & SpoofChecker.ALL_CHECKS); in setChecks()
1124 public int checks;
1149 checks = 0;
1160 if (checks == 0) {
1162 } else if (checks == ALL_CHECKS) {
1165 if ((checks & SINGLE_SCRIPT_CONFUSABLE) != 0) {
1168 if ((checks & MIXED_SCRIPT_CONFUSABLE) != 0) {
1171 if ((checks & WHOLE_SCRIPT_CONFUSABLE) != 0) {
[all …]
/external/boringssl/src/crypto/fipsmodule/bn/
Dprime.c371 int checks = BN_prime_checks_for_size(bits); in BN_generate_prime_ex() local
417 i = BN_is_prime_fasttest_ex(ret, checks, ctx, 0, cb); in BN_generate_prime_ex()
430 for (i = 0; i < checks; i++) { in BN_generate_prime_ex()
465 int checks, BN_CTX *ctx, int do_trial_division, in BN_primality_test() argument
467 switch (BN_is_prime_fasttest_ex(candidate, checks, ctx, do_trial_division, cb)) { in BN_primality_test()
480 int BN_is_prime_ex(const BIGNUM *candidate, int checks, BN_CTX *ctx, BN_GENCB *cb) { in BN_is_prime_ex() argument
481 return BN_is_prime_fasttest_ex(candidate, checks, ctx, 0, cb); in BN_is_prime_ex()
484 int BN_is_prime_fasttest_ex(const BIGNUM *a, int checks, BN_CTX *ctx, in BN_is_prime_fasttest_ex() argument
528 if (!BN_enhanced_miller_rabin_primality_test(&result, a, checks, ctx, cb)) { in BN_is_prime_fasttest_ex()
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/translit/
DRegexUtilitiesTest.java200 String checks = "";
204 checks = checks + "Fails " + check + "\n";
207 checks += "(" + m.group(k) + ")";
209 checks += "\n";
212 logln("Result: " + result + "\n" + checks + "\n" + test);
/external/icu/icu4j/main/tests/translit/src/com/ibm/icu/dev/test/translit/
DRegexUtilitiesTest.java197 String checks = "";
201 checks = checks + "Fails " + check + "\n";
204 checks += "(" + m.group(k) + ")";
206 checks += "\n";
209 logln("Result: " + result + "\n" + checks + "\n" + test);
/external/autotest/
DPRESUBMIT.cfg1 # This config file disables some of the ChromiumOS source style checks and
3 # any checks you want to leave enabled. Edit utils/pylintrc to disable any
4 # pylint checks.
/external/tensorflow/tensorflow/python/kernel_tests/
Ddivision_past_test.py42 checks = []
51 checks.append(f)
68 for f, (x, y) in zip(checks, sess.run(tensors)):
Ddivision_future_test.py42 checks = []
51 checks.append(f)
68 for f, (x, y) in zip(checks, sess.run(tensors)):
/external/llvm/test/CodeGen/AArch64/
Dfp16-v8-instructions.ll424 ; FileCheck checks are unwieldy with 16 fcvt and 8 csel tests. Skipped.
430 ; FileCheck checks are unwieldy with 16 fcvt and 16 csel tests. Skipped.
436 ; FileCheck checks are unwieldy with 16 fcvt and 8 csel tests. Skipped.
442 ; FileCheck checks are unwieldy with 16 fcvt and 8 csel tests. Skipped.
448 ; FileCheck checks are unwieldy with 16 fcvt and 8 csel tests. Skipped.
454 ; FileCheck checks are unwieldy with 16 fcvt and 8 csel tests. Skipped.
460 ; FileCheck checks are unwieldy with 16 fcvt and 8 csel tests. Skipped.
466 ; FileCheck checks are unwieldy with 16 fcvt and 8 csel tests. Skipped.
472 ; FileCheck checks are unwieldy with 16 fcvt and 8 csel tests. Skipped.
478 ; FileCheck checks are unwieldy with 16 fcvt and 8 csel tests. Skipped.
[all …]

12345678910>>...58