Home
last modified time | relevance | path

Searched refs:test_value (Results 1 – 24 of 24) sorted by relevance

/third_party/musl/libc-test/src/functional/
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/
Dsysctl02.sh46 local test_value="$1"
49 tst_res TINFO "trying to set $sys_name=$test_value"
50 sysctl -w -q $sys_name=$test_value 2>/dev/null
Dsysctl01.sh31 local test_value=$(cat "$dir""$name")
33 if [ ${test_value} -eq ${orig_value} ]; then
/third_party/node/test/js-native-api/test_reference/
Dtest_reference.c6 static int test_value = 1; variable
18 NAPI_ASSERT_RETURN_VOID(env, actual_value == &test_value, in FinalizeExternal()
24 int* data = &test_value; in CreateExternal()
57 &test_value, in CreateExternalWithFinalize()
81 NAPI_ASSERT(env, data != NULL && *(int*)data == test_value, in CheckExternal()
/third_party/python/Lib/distutils/tests/
Dtest_msvccompiler.py39 test_value = '₃⁴₅'
43 os.environ[test_var] = test_value
47 self.assertEqual(test_value, env[test_var.lower()])
/third_party/gstreamer/gstreamer/tests/check/gst/
Dgstmessage.c523 const gint test_value = 12345; in GST_START_TEST() local
532 test_value, NULL); in GST_START_TEST()
586 &value) && (value == test_value)); in GST_START_TEST()
604 &value) && (value == test_value)); in GST_START_TEST()
/third_party/python/Lib/unittest/test/testmock/
Dtestsealable.py62 m = mock.Mock(test_value=1)
65 self.assertEqual(m.test_value, 1)
/third_party/flutter/skia/third_party/externals/libjpeg-turbo/
Djdmerge.c472 int test_value = 1; in is_big_endian() local
473 if (*(char *)&test_value != 1) in is_big_endian()
Dwrbmp.c84 int test_value = 1; in is_big_endian() local
85 if (*(char *)&test_value != 1) in is_big_endian()
Djdcolor.c610 int test_value = 1; in is_big_endian() local
611 if (*(char *)&test_value != 1) in is_big_endian()
/third_party/libjpeg-turbo/
Djdmerge.c470 int test_value = 1; in is_big_endian() local
471 if (*(char *)&test_value != 1) in is_big_endian()
Dwrbmp.c84 int test_value = 1; in is_big_endian() local
85 if (*(char *)&test_value != 1) in is_big_endian()
Djdcolor.c609 int test_value = 1; in is_big_endian() local
610 if (*(char *)&test_value != 1) in is_big_endian()
/third_party/skia/third_party/externals/libjpeg-turbo/
Djdmerge.c470 int test_value = 1; in is_big_endian() local
471 if (*(char *)&test_value != 1) in is_big_endian()
Dwrbmp.c84 int test_value = 1; in is_big_endian() local
85 if (*(char *)&test_value != 1) in is_big_endian()
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/
Dglsl_parser_extras.cpp1629 if (test_value != NULL) { in print()
1631 test_value->print(); in print()
1639 ast_case_label::ast_case_label(ast_expression *test_value) in ast_case_label() argument
1641 this->test_value = test_value; in ast_case_label()
Dast.h1071 ast_case_label(ast_expression *test_value);
1080 ast_expression *test_value; variable
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/
Dtest_object.c6 static int test_value = 3; variable
352 NAPI_CALL(env, napi_wrap(env, arg, &test_value, NULL, NULL, NULL)); in Wrap()
/third_party/openssl/test/
Devp_extra_test.c3479 const int test_value = 32; in test_EVP_rsa_pss_set_saltlen() local
3486 && TEST_int_gt(EVP_PKEY_CTX_set_rsa_pss_saltlen(pkey_ctx, test_value), 0) in test_EVP_rsa_pss_set_saltlen()
3488 && TEST_int_eq(saltlen, test_value); in test_EVP_rsa_pss_set_saltlen()
/third_party/vk-gl-cts/external/openglcts/modules/gl/
Dgl4cPipelineStatisticsQueryTests.cpp2765 const unsigned char test_value = 0xFF; in executeClearTexSubImageTest() local
2772 GL_RED, GL_UNSIGNED_BYTE, &test_value); in executeClearTexSubImageTest()
/third_party/jerryscript/docs/
D02.API-REFERENCE.md6556 jerry_value_t test_value = jerry_create_number (3);
6558 jerry_value_t set_result = jerry_set_property (object, test_property, test_value);
6561 jerry_release_value (test_value);
6664 jerry_value_t test_value = jerry_create_number (3);
6665 jerry_value_t set_result = jerry_set_property (test_object, test_property, test_value);
6668 jerry_release_value (test_value);
/third_party/python/Lib/test/
D_test_multiprocessing.py2025 def test_value(self, raw=False): member in _TestValue
2045 self.test_value(raw=True)
5667 def test_value(self): member in TestSyncManagerTypes