Home
last modified time | relevance | path

Searched refs:test_value (Results 1 - 21 of 21) sorted by relevance

/third_party/musl/libc-test/src/functional/
H A Ddl_multithread_lock.c33 static int test_value = 0; variable
61 test_value++; in CallBack001()
62 if (test_value != 1) { in CallBack001()
63 t_error("test_value should be 1, but: %d\n", test_value); in CallBack001()
65 test_value--; in CallBack001()
67 if (test_value != 0) { in CallBack001()
68 t_error("test_value should be 0, but: %d\n", test_value); in CallBack001()
78 test_value in CallBack002()
[all...]
H A Dstring_memset.c42 static void test_value(int c) in test_value() function
64 test_value('c'); in main()
65 test_value(0); in main()
66 test_value(-1); in main()
67 test_value(-5); in main()
68 test_value(0xab); in main()
/third_party/ltp/testcases/commands/sysctl/
H A Dsysctl02.sh45 local test_value="$1"
48 tst_res TINFO "trying to set $sys_name=$test_value"
49 sysctl -w -q $sys_name=$test_value 2>/dev/null
H A Dsysctl01.sh29 local test_value=$(cat "$dir""$name")
31 if [ ${test_value} -eq ${orig_value} ]; then
/third_party/node/test/js-native-api/test_reference/
H A Dtest_finalizer.c7 static int test_value = 1; variable
14 actual_value == &test_value, in FinalizeExternalCallJs()
46 &test_value, in CreateExternalWithJsFinalize()
H A Dtest_reference.c8 static int test_value = 1; variable
20 NODE_API_ASSERT_RETURN_VOID(env, actual_value == &test_value, in FinalizeExternal()
26 int* data = &test_value; in CreateExternal()
98 &test_value, in CreateExternalWithFinalize()
122 NODE_API_ASSERT(env, data != NULL && *(int*)data == test_value, in CheckExternal()
/third_party/python/Lib/distutils/tests/
H A Dtest_msvccompiler.py39 test_value = '₃⁴₅'
43 os.environ[test_var] = test_value
47 self.assertEqual(test_value, env[test_var.lower()])
/third_party/icu/icu4c/source/test/intltest/
H A Dcalregts.h92 void VerifyGetStayInBound(double test_value);
/third_party/python/Lib/unittest/test/testmock/
H A Dtestsealable.py62 m = mock.Mock(test_value=1)
65 self.assertEqual(m.test_value, 1)
/third_party/skia/third_party/externals/libjpeg-turbo/
H A Djdmerge.c470 int test_value = 1; in is_big_endian() local
471 if (*(char *)&test_value != 1) in is_big_endian()
H A Dwrbmp.c84 int test_value = 1; in is_big_endian() local
85 if (*(char *)&test_value != 1) in is_big_endian()
H A Djdcolor.c609 int test_value = 1; in is_big_endian() local
610 if (*(char *)&test_value != 1) in is_big_endian()
/third_party/mesa3d/src/compiler/glsl/
H A Dast.h1071 ast_case_label(ast_expression *test_value);
1080 ast_expression *test_value; member in ast_case_label
H A Dglsl_parser_extras.cpp1629 if (test_value != NULL) {
1631 test_value->print();
1639 ast_case_label::ast_case_label(ast_expression *test_value)
1641 this->test_value = test_value;
H A Dast_to_hir.cpp6999 if (this->test_value != NULL) { in hir()
7003 ir_rvalue *const label_rval = this->test_value->hir(instructions, state); in hir()
7008 YYLTYPE loc = this->test_value->get_location(); in hir()
7025 YYLTYPE loc = this->test_value->get_location(); in hir()
7037 l->ast = this->test_value; in hir()
7066 YYLTYPE loc = this->test_value->get_location(); in hir()
/third_party/node/test/js-native-api/test_object/
H A Dtest_object.c7 static int test_value = 3; variable
462 NODE_API_CALL(env, napi_wrap(env, arg, &test_value, NULL, NULL, NULL)); in Wrap()
/third_party/vixl/test/aarch32/
H A Dtest-assembler-aarch32.cc1900 uint32_t test_value; member
1972 ASSERT_EQUAL_32(test_case.test_value, test_case.result_reg); in GenerateLdrLiteralTriggerPoolEmission()
2025 ASSERT_EQUAL_32(test_case.test_value, test_case.result_reg); in GenerateLdrLiteralRangeTest()
2233 ASSERT_EQUAL_32(test_case.test_value, r0); in TEST()
2234 ASSERT_EQUAL_32(test_case.test_value, r1); in TEST()
2309 ASSERT_EQUAL_32(test_case.test_value, r0); in TEST()
2310 ASSERT_EQUAL_32(test_case.test_value, r1); in TEST()
/third_party/vk-gl-cts/external/openglcts/modules/gl/
H A Dgl4cPipelineStatisticsQueryTests.cpp2770 const unsigned char test_value = 0xFF; in executeClearTexSubImageTest() local
2777 GL_RED, GL_UNSIGNED_BYTE, &test_value); in executeClearTexSubImageTest()
/third_party/backends/backend/
H A Dumax.c5932 static SANE_Status umax_test_configure_option(const char *option_str, char *test_name, int *test_value, int test_min, int test_max) in umax_test_configure_option() argument
5962 *test_value = value; in umax_test_configure_option()
5964 DBG(DBG_info, "option %s = %d\n", test_name, *test_value); in umax_test_configure_option()
/third_party/openssl/test/
H A Devp_extra_test.c3502 const int test_value = 32; in test_EVP_rsa_pss_set_saltlen() local
3509 && TEST_int_gt(EVP_PKEY_CTX_set_rsa_pss_saltlen(pkey_ctx, test_value), 0) in test_EVP_rsa_pss_set_saltlen()
3511 && TEST_int_eq(saltlen, test_value); in test_EVP_rsa_pss_set_saltlen()
/third_party/python/Lib/test/
H A D_test_multiprocessing.py2088 def test_value(self, raw=False): member in _TestValue
2108 self.test_value(raw=True)
5748 def test_value(self): member in TestSyncManagerTypes

Completed in 63 milliseconds