/hardware/qcom/camera/msm8998/QCamera2/stack/mm-camera-test/src/ |
D | mm_qcamera_dual_test.c | 1889 int tc = 0; in mm_app_gen_dual_test_cases() local 1891 if(tc < MM_QCAM_APP_TEST_NUM) mm_app_tc[tc++].f = mm_app_dtc_0; in mm_app_gen_dual_test_cases() 1892 if(tc < MM_QCAM_APP_TEST_NUM) mm_app_tc[tc++].f = mm_app_dtc_1; in mm_app_gen_dual_test_cases() 1893 if(tc < MM_QCAM_APP_TEST_NUM) mm_app_tc[tc++].f = mm_app_dtc_2; in mm_app_gen_dual_test_cases() 1894 if(tc < MM_QCAM_APP_TEST_NUM) mm_app_tc[tc++].f = mm_app_dtc_3; in mm_app_gen_dual_test_cases() 1895 if(tc < MM_QCAM_APP_TEST_NUM) mm_app_tc[tc++].f = mm_app_dtc_4; in mm_app_gen_dual_test_cases() 1896 if(tc < MM_QCAM_APP_TEST_NUM) mm_app_tc[tc++].f = mm_app_dtc_5; in mm_app_gen_dual_test_cases() 1897 if(tc < MM_QCAM_APP_TEST_NUM) mm_app_tc[tc++].f = mm_app_dtc_6; in mm_app_gen_dual_test_cases() 1898 if(tc < MM_QCAM_APP_TEST_NUM) mm_app_tc[tc++].f = mm_app_dtc_7; in mm_app_gen_dual_test_cases() 1899 if(tc < MM_QCAM_APP_TEST_NUM) mm_app_tc[tc++].f = mm_app_dtc_8; in mm_app_gen_dual_test_cases() [all …]
|
D | mm_qcamera_unit_test.c | 662 int tc = 0; in mm_app_gen_test_cases() local 664 if (tc < MM_QCAM_APP_TEST_NUM) mm_app_tc[tc++].f = mm_app_tc_open_close; in mm_app_gen_test_cases() 665 if (tc < MM_QCAM_APP_TEST_NUM) mm_app_tc[tc++].f = mm_app_tc_start_stop_preview; in mm_app_gen_test_cases() 675 return tc; in mm_app_gen_test_cases() 681 int i, j, tc = 0; in mm_app_unit_test_entry() local 683 tc = mm_app_gen_test_cases(); in mm_app_unit_test_entry() 684 LOGD("Running %d test cases\n",tc); in mm_app_unit_test_entry() 685 for (i = 0; i < tc; i++) { in mm_app_unit_test_entry() 697 printf("nTOTAL_TSET_CASE = %d, NUM_TEST_RAN = %d, rc=%d\n", tc, i, rc); in mm_app_unit_test_entry()
|
/hardware/interfaces/automotive/vehicle/aidl/impl/utils/common/test/ |
D | VehicleUtilsTest.cpp | 799 InvalidPropValueTestCase tc = GetParam(); in TEST_P() local 802 auto result = checkPropValue(tc.value, &tc.config); in TEST_P() 804 ASSERT_EQ(tc.valid, result.ok()); in TEST_P() 816 InvalidValueRangeTestCase tc = GetParam(); in TEST_P() local 819 auto result = checkValueRange(tc.value, &tc.config); in TEST_P() 821 ASSERT_EQ(tc.valid, result.ok()); in TEST_P()
|
/hardware/interfaces/automotive/vehicle/2.0/default/impl/vhal_v2_0/tests/ |
D | DefaultVhalImpl_test.cpp | 568 std::vector<SetPropRangeTestCase> tc; in GenSetPropRangeParams() local 573 tc.push_back({"normal_case_int", intPropNormal, StatusCode::OK}); in GenSetPropRangeParams() 579 tc.push_back({"normal_case_int_too_small", intPropSmall, StatusCode::INVALID_ARG}); in GenSetPropRangeParams() 585 tc.push_back({"normal_case_int_too_large", intPropLarge, StatusCode::INVALID_ARG}); in GenSetPropRangeParams() 591 tc.push_back({"normal_case_float", floatPropNormal, StatusCode::OK}); in GenSetPropRangeParams() 596 tc.push_back({"normal_case_float_too_small", floatPropSmall, StatusCode::INVALID_ARG}); in GenSetPropRangeParams() 601 tc.push_back({"normal_case_float_too_large", floatPropLarge, StatusCode::INVALID_ARG}); in GenSetPropRangeParams() 603 return tc; in GenSetPropRangeParams() 607 SetPropRangeTestCase tc = GetParam(); in TEST_P() local 609 StatusCode status = mHal->set(tc.prop); in TEST_P() [all …]
|
/hardware/interfaces/automotive/vehicle/2.0/default/tests/ |
D | VehicleHalManager_test.cpp | 503 const SetPropTestCase& tc = GetParam(); in TEST_P() local 505 ASSERT_EQ(tc.success, helper.cmdSetOneProperty(STDERR_FILENO, tc.configs)); in TEST_P()
|
/hardware/interfaces/automotive/vehicle/aidl/impl/fake_impl/hardware/test/ |
D | FakeVehicleHardwareTest.cpp | 1746 const SetSpecialValueTestCase& tc = GetParam(); in TEST_P() local 1748 for (const auto& value : tc.valuesToSet) { in TEST_P() 1754 for (const auto& value : tc.expectedValuesToGet) { in TEST_P() 2770 const SetPropTestCase& tc = GetParam(); in TEST_P() local 2772 DumpResult result = getHardware()->dump(tc.options); in TEST_P() 2775 if (tc.success) { in TEST_P() 2778 ASSERT_THAT(result.buffer, ContainsRegex(tc.errorMsg)); in TEST_P() 3059 auto tc = GetParam(); in TEST_P() local 3061 DumpResult result = getHardware()->dump(tc.options); in TEST_P() 3064 EXPECT_THAT(result.buffer, HasSubstr(tc.expectMsg)); in TEST_P() [all …]
|
/hardware/google/gfxstream/third-party/astc-encoder/Source/ |
D | stb_image.h | 3098 int tc = q >> 4; in stbi__process_marker() local 3100 if (tc > 1 || th > 3) return stbi__err("bad DHT header","Corrupt JPEG"); in stbi__process_marker() 3106 if (tc == 0) { in stbi__process_marker() 3115 if (tc != 0) in stbi__process_marker() 4844 static int stbi__compute_transparency(stbi__png *z, stbi_uc tc[3], int out_n) in stbi__compute_transparency() 4856 p[1] = (p[0] == tc[0] ? 0 : 255); in stbi__compute_transparency() 4861 if (p[0] == tc[0] && p[1] == tc[1] && p[2] == tc[2]) in stbi__compute_transparency() 4869 static int stbi__compute_transparency16(stbi__png *z, stbi__uint16 tc[3], int out_n) in stbi__compute_transparency16() 4881 p[1] = (p[0] == tc[0] ? 0 : 65535); in stbi__compute_transparency16() 4886 if (p[0] == tc[0] && p[1] == tc[1] && p[2] == tc[2]) in stbi__compute_transparency16() [all …]
|
/hardware/google/gfxstream/third-party/stb/include/stb/ |
D | stb_image.h | 3098 int tc = q >> 4; in stbi__process_marker() local 3100 if (tc > 1 || th > 3) return stbi__err("bad DHT header","Corrupt JPEG"); in stbi__process_marker() 3106 if (tc == 0) { in stbi__process_marker() 3115 if (tc != 0) in stbi__process_marker() 4851 static int stbi__compute_transparency(stbi__png *z, stbi_uc tc[3], int out_n) in stbi__compute_transparency() 4863 p[1] = (p[0] == tc[0] ? 0 : 255); in stbi__compute_transparency() 4868 if (p[0] == tc[0] && p[1] == tc[1] && p[2] == tc[2]) in stbi__compute_transparency() 4876 static int stbi__compute_transparency16(stbi__png *z, stbi__uint16 tc[3], int out_n) in stbi__compute_transparency16() 4888 p[1] = (p[0] == tc[0] ? 0 : 65535); in stbi__compute_transparency16() 4893 if (p[0] == tc[0] && p[1] == tc[1] && p[2] == tc[2]) in stbi__compute_transparency16() [all …]
|
/hardware/qcom/data/ipacfg-mgr/msm8998/ipacm/src/ |
D | IPACM_Xml.cpp | 817 config->extd_firewall_entries[config->num_extd_firewall_entries - 1].attrib.u.v6.tc in IPACM_firewall_xml_parse_tree() 820 config->extd_firewall_entries[config->num_extd_firewall_entries - 1].attrib.u.v6.tc); in IPACM_firewall_xml_parse_tree() 831 config->extd_firewall_entries[config->num_extd_firewall_entries - 1].attrib.u.v6.tc in IPACM_firewall_xml_parse_tree()
|
/hardware/qcom/sm8150/data/ipacfg-mgr/ipacm/src/ |
D | IPACM_Xml.cpp | 844 config->extd_firewall_entries[config->num_extd_firewall_entries - 1].attrib.u.v6.tc in IPACM_firewall_xml_parse_tree() 847 config->extd_firewall_entries[config->num_extd_firewall_entries - 1].attrib.u.v6.tc); in IPACM_firewall_xml_parse_tree() 858 config->extd_firewall_entries[config->num_extd_firewall_entries - 1].attrib.u.v6.tc in IPACM_firewall_xml_parse_tree()
|
/hardware/interfaces/automotive/vehicle/aidl/impl/vhal/test/ |
D | DefaultVehicleHalTest.cpp | 1061 SetValuesInvalidRequestTestCase tc = GetParam(); in TEST_P() local 1073 .value = tc.request, in TEST_P() 1093 .status = tc.expectedStatus, in TEST_P()
|
/hardware/google/gfxstream/host/apigen-codec-common/GL/ |
D | glext.h | 9769 GLAPI void APIENTRY glTexCoord2fVertex3fvSUN (const GLfloat *tc, const GLfloat *v); 9771 GLAPI void APIENTRY glTexCoord4fVertex4fvSUN (const GLfloat *tc, const GLfloat *v); 9773 GLAPI void APIENTRY glTexCoord2fColor4ubVertex3fvSUN (const GLfloat *tc, const GLubyte *c, const GL… 9775 GLAPI void APIENTRY glTexCoord2fColor3fVertex3fvSUN (const GLfloat *tc, const GLfloat *c, const GLf… 9777 GLAPI void APIENTRY glTexCoord2fNormal3fVertex3fvSUN (const GLfloat *tc, const GLfloat *n, const GL… 9779 GLAPI void APIENTRY glTexCoord2fColor4fNormal3fVertex3fvSUN (const GLfloat *tc, const GLfloat *c, c… 9781 GLAPI void APIENTRY glTexCoord4fColor4fNormal3fVertex4fvSUN (const GLfloat *tc, const GLfloat *c, c… 9793 GLAPI void APIENTRY glReplacementCodeuiTexCoord2fVertex3fvSUN (const GLuint *rc, const GLfloat *tc,… 9795 …mentCodeuiTexCoord2fNormal3fVertex3fvSUN (const GLuint *rc, const GLfloat *tc, const GLfloat *n, c… 9797 …euiTexCoord2fColor4fNormal3fVertex3fvSUN (const GLuint *rc, const GLfloat *tc, const GLfloat *c, c… [all …]
|
/hardware/google/gfxstream/guest/mesa/include/GL/ |
D | glext.h | 12825 typedef void (APIENTRYP PFNGLTEXCOORD2FVERTEX3FVSUNPROC) (const GLfloat *tc, const GLfloat *v); 12827 typedef void (APIENTRYP PFNGLTEXCOORD4FVERTEX4FVSUNPROC) (const GLfloat *tc, const GLfloat *v); 12829 typedef void (APIENTRYP PFNGLTEXCOORD2FCOLOR4UBVERTEX3FVSUNPROC) (const GLfloat *tc, const GLubyte … 12831 typedef void (APIENTRYP PFNGLTEXCOORD2FCOLOR3FVERTEX3FVSUNPROC) (const GLfloat *tc, const GLfloat *… 12833 typedef void (APIENTRYP PFNGLTEXCOORD2FNORMAL3FVERTEX3FVSUNPROC) (const GLfloat *tc, const GLfloat … 12835 typedef void (APIENTRYP PFNGLTEXCOORD2FCOLOR4FNORMAL3FVERTEX3FVSUNPROC) (const GLfloat *tc, const G… 12837 typedef void (APIENTRYP PFNGLTEXCOORD4FCOLOR4FNORMAL3FVERTEX4FVSUNPROC) (const GLfloat *tc, const G… 12849 …PLACEMENTCODEUITEXCOORD2FVERTEX3FVSUNPROC) (const GLuint *rc, const GLfloat *tc, const GLfloat *v); 12851 …ODEUITEXCOORD2FNORMAL3FVERTEX3FVSUNPROC) (const GLuint *rc, const GLfloat *tc, const GLfloat *n, c… 12853 …XCOORD2FCOLOR4FNORMAL3FVERTEX3FVSUNPROC) (const GLuint *rc, const GLfloat *tc, const GLfloat *c, c… [all …]
|
/hardware/interfaces/tv/tuner/assets/ |
D | tuner_frontend_input.es | 495 `"�F��Y��^�j��(�v�����V�-I�|N��RPOR�������LOY4��X'��!���<�?����Č��~+���u��tc����;�����1.��… 2069 …����+C��Fy|���=�oq�C�Vhbk����~�ǹC�X���om��g���,��/*��W��So���C�^;���tc��B$�=�����f����Q��OF… 4721 ���T�'�{��g;�tc#��Re��- �2��_5Je>Tԗh�y�s�x�SX7|�C<;9UR��&�!��n`c�*C,��0�}@3��…
|