Home
last modified time | relevance | path

Searched refs:pos3 (Results 1 - 25 of 25) sorted by relevance

/third_party/mesa3d/src/gallium/auxiliary/draw/
H A Ddraw_pipe_wide_line.c64 float *pos3 = v3->data[pos]; in wideline_line() local
86 pos3[1] = pos3[1] + half_width - bias; in wideline_line()
93 pos3[0] -= 0.5f; in wideline_line()
100 pos3[0] += 0.5f; in wideline_line()
109 pos3[0] = pos3[0] + half_width + bias; in wideline_line()
116 pos3[1] -= 0.5f; in wideline_line()
123 pos3[1] += 0.5f; in wideline_line()
H A Ddraw_pipe_wide_point.c144 float *pos3 = v3->data[pos]; in widepoint_point() local
169 pos3[0] += right_adj; in widepoint_point()
170 pos3[1] += bot_adj; in widepoint_point()
/foundation/ability/ability_runtime/services/abilitymgr/src/
H A Dextension_config.cpp225 std::string::size_type pos3 = uri.find('/', pos2 + 1); in CheckServiceExtensionUriValid() local
226 std::string::size_type pos4 = uri.find('/', pos3 + 1); in CheckServiceExtensionUriValid()
227 if ((pos3 == pos2 + 1) || (pos4 == pos3 + 1) || (pos4 == uri.size() - 1)) { in CheckServiceExtensionUriValid()
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/ap/
H A Deap_user_db.c36 char *pos3 = os_strchr(start, ','); in set_user_methods() local
37 if (pos3) in set_user_methods()
38 *pos3++ = '\0'; in set_user_methods()
70 if (pos3 == NULL) in set_user_methods()
72 start = pos3; in set_user_methods()
/third_party/wpa_supplicant/wpa_supplicant-2.9/src/ap/
H A Deap_user_db.c36 char *pos3 = os_strchr(start, ','); in set_user_methods() local
37 if (pos3) in set_user_methods()
38 *pos3++ = '\0'; in set_user_methods()
70 if (pos3 == NULL) in set_user_methods()
72 start = pos3; in set_user_methods()
/third_party/wpa_supplicant/wpa_supplicant-2.9/src/utils/
H A Dcommon.c785 const char *pos, *pos2, *pos3; in freq_range_list_parse() local
802 pos3 = os_strchr(pos, ','); in freq_range_list_parse()
803 if (pos2 && (!pos3 || pos2 < pos3)) { in freq_range_list_parse()
808 pos = pos3; in freq_range_list_parse()
/third_party/skia/third_party/externals/libwebp/src/enc/
H A Dsyntax_enc.c269 uint64_t pos1, pos2, pos3; in GeneratePartition0() local
290 pos3 = VP8BitWriterPos(bw); in GeneratePartition0()
295 enc->pic_->stats->header_bytes[1] = (int)((pos3 - pos2 + 7) >> 3); in GeneratePartition0()
301 (void)pos3; in GeneratePartition0()
H A Dframe_enc.c313 uint64_t pos1, pos2, pos3; in CodeResiduals() local
353 pos3 = VP8BitWriterPos(bw); in CodeResiduals()
355 it->uv_bits_ = pos3 - pos2; in CodeResiduals()
/third_party/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/format/
H A DIntlTestNumberFormatAPI.java95 FieldPosition pos3 = new FieldPosition(0); in TestAPI()
110 res5 = cur_fr.format(d, res5, pos3); in TestAPI()
H A DIntlTestDecimalFormatAPI.java151 FieldPosition pos3 = new FieldPosition(0); in TestAPI()
160 res3 = cust1.format(d, res3, pos3); in TestAPI()
H A DIntlTestDecimalFormatAPIC.java109 FieldPosition pos3 = new FieldPosition(0); in TestAPI()
118 res3 = cust1.format(d, res3, pos3); in TestAPI()
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/format/
H A DIntlTestNumberFormatAPI.java98 FieldPosition pos3 = new FieldPosition(0); in TestAPI()
113 res5 = cur_fr.format(d, res5, pos3); in TestAPI()
H A DIntlTestDecimalFormatAPI.java154 FieldPosition pos3 = new FieldPosition(0); in TestAPI()
163 res3 = cust1.format(d, res3, pos3); in TestAPI()
H A DIntlTestDecimalFormatAPIC.java112 FieldPosition pos3 = new FieldPosition(0); in TestAPI()
121 res3 = cust1.format(d, res3, pos3); in TestAPI()
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/utils/
H A Dcommon.c827 const char *pos, *pos2, *pos3; in freq_range_list_parse() local
848 pos3 = os_strchr(pos, ','); in freq_range_list_parse()
849 if (pos2 && (!pos3 || pos2 < pos3)) { in freq_range_list_parse()
854 pos = pos3; in freq_range_list_parse()
/third_party/icu/icu4c/source/test/intltest/
H A Dnmfmapts.cpp125 FieldPosition pos1(FieldPosition::DONT_CARE), pos2(FieldPosition::DONT_CARE), pos3(FieldPosition::DONT_CARE), pos4(FieldPosition::DONT_CARE); in testAPI()
140 res5 = cur_fr->format(fD, res5, pos3, status); in testAPI()
H A Ddcfmapts.cpp225 FieldPosition pos1(FieldPosition::DONT_CARE), pos2(FieldPosition::DONT_CARE), pos3(FieldPosition::DONT_CARE), pos4(FieldPosition::DONT_CARE); in testAPI()
234 res3 = cust1.format(fD, res3, pos3, status); in testAPI()
/test/testfwk/arkxtest/uitest/test/
H A Dwidget_selector_test.cpp565 auto pos3 = description.find(frontMatcher.Describe()); in TEST_F() local
571 ASSERT_TRUE(pos3 != string::npos && pos3 > pos2); in TEST_F()
572 ASSERT_TRUE(pos4 != string::npos && pos4 > pos3); in TEST_F()
/third_party/skia/third_party/externals/swiftshader/src/Shader/
H A DVertexPipeline.cpp144 Vector4f pos3; in transformBlend() local
149 pos3 = transform(src, matrix, index3, homogeneous); in transformBlend()
151 dst.x = pos0.x * weight0 + pos1.x * weight1 + pos2.x * weight2 + pos3.x * weight3; in transformBlend()
152 dst.y = pos0.y * weight0 + pos1.y * weight1 + pos2.y * weight2 + pos3.y * weight3; in transformBlend()
153 dst.z = pos0.z * weight0 + pos1.z * weight1 + pos2.z * weight2 + pos3.z * weight3; in transformBlend()
154 dst.w = pos0.w * weight0 + pos1.w * weight1 + pos2.w * weight2 + pos3.w * weight3; in transformBlend()
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/hostapd/
H A Dap_config_file.c38 char buf[128], *pos, *pos2, *pos3; in hostapd_config_read_vlan_file() local
96 pos3 = pos2; in hostapd_config_read_vlan_file()
97 while (*pos3 != ' ' && *pos3 != '\t' && *pos3 != '\0') in hostapd_config_read_vlan_file()
98 pos3++; in hostapd_config_read_vlan_file()
99 *pos3 = '\0'; in hostapd_config_read_vlan_file()
429 char *pos3 = os_strchr(start, ','); in hostapd_config_read_eap_user() local
430 if (pos3) { in hostapd_config_read_eap_user()
431 *pos3 in hostapd_config_read_eap_user()
[all...]
/third_party/wpa_supplicant/wpa_supplicant-2.9/hostapd/
H A Dap_config_file.c32 char buf[128], *pos, *pos2, *pos3; in hostapd_config_read_vlan_file() local
90 pos3 = pos2; in hostapd_config_read_vlan_file()
91 while (*pos3 != ' ' && *pos3 != '\t' && *pos3 != '\0') in hostapd_config_read_vlan_file()
92 pos3++; in hostapd_config_read_vlan_file()
93 *pos3 = '\0'; in hostapd_config_read_vlan_file()
423 char *pos3 = os_strchr(start, ','); in hostapd_config_read_eap_user() local
424 if (pos3) { in hostapd_config_read_eap_user()
425 *pos3 in hostapd_config_read_eap_user()
[all...]
/foundation/multimedia/player_framework/services/services/player/server/
H A Dplayer_server.cpp1091 size_t pos3 = uri.find("&"); in SetMediaSource() local
1093 pos3 != std::string::npos) { in SetMediaSource()
1095 std::string offsetStr = uri.substr(pos2 + strlen("offset="), pos3 - pos2 - strlen("offset=")); in SetMediaSource()
1096 std::string sizeStr = uri.substr(pos3 + sizeof("&size")); in SetMediaSource()
/test/xts/acts/multimedia/drm/drm_ndk_test/entry/src/main/cpp/
H A Dhello.cpp146 std::string::size_type pos3 = url.find(':', pos1); in getHttp() local
147 if (pos3 != std::string::npos && pos3 < pos2) { in getHttp()
148 strncpy(host, url.substr(pos1, pos3 - pos1).c_str(), sizeof(host)); in getHttp()
149 strncpy(port, url.substr(pos3 + 1, pos2 - pos3 - 1).c_str(), sizeof(port)); in getHttp()
/foundation/graphic/graphic_3d/lume/Lume_3D/src/util/
H A Dmesh_builder.cpp873 const auto& pos3 = posPtr[cc]; in SmoothNormal() local
874 auto faceNorm = Math::Cross(pos2 - pos1, pos3 - pos1); in SmoothNormal()
893 const auto& pos3 = posPtr[i + 2]; // 2: index in GenerateDefaultNormals() local
894 auto faceNorm = Math::Normalize(Math::Cross(pos2 - pos1, pos3 - pos1)); in GenerateDefaultNormals()
/foundation/bundlemanager/bundle_tool/frameworks/src/
H A Dbundle_test_tool.cpp2572 size_t pos3 = object.find(":", pos2); in CheckAppRunningRuleCorrectOption() local
2577 std::string controlMessage = object.substr(pos3+1); in CheckAppRunningRuleCorrectOption()

Completed in 38 milliseconds