/third_party/python/Lib/ |
H A D | zipfile.py | 1965 pos2 = self.fp.tell() 1968 centDirSize = pos2 - self.start_dir 1990 stringEndArchive64Locator, 0, pos2, 1)
|
/foundation/graphic/graphic_3d/lume/Lume_3D/src/util/ |
H A D | mesh_builder.cpp | 872 const auto& pos2 = posPtr[bb]; in SmoothNormal() local 874 auto faceNorm = Math::Cross(pos2 - pos1, pos3 - pos1); in SmoothNormal() 892 const auto& pos2 = posPtr[i + 1]; in GenerateDefaultNormals() local 894 auto faceNorm = Math::Normalize(Math::Cross(pos2 - pos1, pos3 - pos1)); in GenerateDefaultNormals()
|
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/format/ |
H A D | NumberRegressionTests.java | 917 ParsePosition pos1 = new ParsePosition(0), pos2 = new ParsePosition(0); in Test4106662() 926 num = df.parse("$", pos2); in Test4106662()
|
/third_party/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/format/ |
H A D | NumberRegressionTests.java | 914 ParsePosition pos1 = new ParsePosition(0), pos2 = new ParsePosition(0); in Test4106662() 923 num = df.parse("$", pos2); in Test4106662()
|
/third_party/icu/icu4c/source/test/intltest/ |
H A D | dcfmapts.cpp | 225 FieldPosition pos1(FieldPosition::DONT_CARE), pos2(FieldPosition::DONT_CARE), pos3(FieldPosition::DONT_CARE), pos4(FieldPosition::DONT_CARE); in testAPI() 230 res2 = pat.format(l, res2, pos2); in testAPI()
|
H A D | transtst.cpp | 1969 UTransPosition pos2 = {0, 4, 0, 2}; in TestQuantifier() local 1973 &pos2); in TestQuantifier()
|
/third_party/mesa3d/src/gallium/drivers/freedreno/ |
H A D | freedreno_resource.c | 1674 static const uint8_t pos2[2][2] = {{0xc, 0xc}, {0x4, 0x4}}; in fd_get_sample_position() local 1691 ptr = pos2; in fd_get_sample_position()
|
/foundation/bundlemanager/bundle_tool/frameworks/src/ |
H A D | bundle_test_tool.cpp | 2571 size_t pos2 = object.find("controlMessage"); in CheckAppRunningRuleCorrectOption() local 2572 size_t pos3 = object.find(":", pos2); in CheckAppRunningRuleCorrectOption() 2573 if ((pos1 == std::string::npos) || (pos2 == std::string::npos)) { in CheckAppRunningRuleCorrectOption() 2576 std::string appId = object.substr(pos1+6, pos2-pos1-7); in CheckAppRunningRuleCorrectOption()
|
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/translit/ |
H A D | TransliteratorTest.java | 1464 Transliterator.Position pos2 = new Transliterator.Position(0, 4, 0, 2); in TestQuantifier() 1468 pos2); in TestQuantifier()
|
/third_party/icu/icu4j/main/tests/translit/src/com/ibm/icu/dev/test/translit/ |
H A D | TransliteratorTest.java | 1461 Transliterator.Position pos2 = new Transliterator.Position(0, 4, 0, 2); in TestQuantifier() 1465 pos2); in TestQuantifier()
|
/third_party/wpa_supplicant/wpa_supplicant-2.9/src/common/ |
H A D | dpp.c | 833 const char *pos = chan_list, *pos2; in dpp_parse_uri_chan_list() local 837 pos2 = pos; in dpp_parse_uri_chan_list() 838 while (*pos2 >= '0' && *pos2 <= '9') in dpp_parse_uri_chan_list() 839 pos2++; in dpp_parse_uri_chan_list() 840 if (*pos2 == '/') { in dpp_parse_uri_chan_list() 842 pos = pos2 + 1; in dpp_parse_uri_chan_list()
|
/third_party/node/deps/ada/ |
H A D | ada.h | 1626 * Return the substring from input going from index pos1 to the pos2 (non 1627 * included). The length of the substring is pos2 - pos1. 1631 size_t pos2) noexcept { 1633 if (pos2 < pos1) { 1634 std::cerr << "Negative-length substring: [" << pos1 << " to " << pos2 << ")" 1639 return std::string_view(input.data() + pos1, pos2 - pos1);
|
/third_party/protobuf/python/google/protobuf/internal/ |
H A D | reflection_test.py | 2628 pos2 = unknown_fields._InternalParse(serialized, 0, truncation_point) 2629 self.assertEqual(truncation_point, pos2)
|
/third_party/python/Lib/test/ |
H A D | test_io.py | 2341 def mutate(bufio, pos1, pos2): 2342 assert pos2 >= pos1 2345 bufio.read(pos2 - pos1)
|
/third_party/mesa3d/src/amd/compiler/ |
H A D | aco_instruction_selection.cpp | 8176 emit_interp_center(isel_context* ctx, Temp dst, Temp bary, Temp pos1, Temp pos2) 8209 /* res_k = p_k + ddx_k * pos1 + ddy_k * pos2 */ 8214 tmp1 = bld.vop3(mad, bld.def(v1), ddy_1, pos2, tmp1); 8215 tmp2 = bld.vop3(mad, bld.def(v1), ddy_2, pos2, tmp2); 8366 Temp pos2 = bld.tmp(RegClass(sample_pos.type(), 1)); 8367 bld.pseudo(aco_opcode::p_split_vector, Definition(pos1), Definition(pos2), sample_pos); 8369 pos2 = bld.vop2_e64(aco_opcode::v_sub_f32, bld.def(v1), pos2, Operand::c32(0x3f000000u)); 8371 emit_interp_center(ctx, dst, bary, pos1, pos2); 8377 Temp pos1 = bld.tmp(rc), pos2 [all...] |
/third_party/ffmpeg/libavformat/ |
H A D | movenc.c | 4776 int64_t pos, pos2; local 4787 pos2 = avio_tell(pb); 4804 update_size(pb, pos2);
|
/third_party/glslang/glslang/HLSL/ |
H A D | hlslParseHelper.cpp | 3817 static const tSamplePos pos2[] = { in getSamplePosArray() local 3841 case 2: sampleLoc = pos2; break; in getSamplePosArray() 4707 // (sampleCount == 2) ? pos2[idx] : in decomposeSampleMethods()
|
/third_party/typescript/lib/ |
H A D | typingsInstaller.js | 10505 function getLinesBetweenPositions(sourceFile, pos1, pos2) { 10506 if (pos1 === pos2) 10509 var lower = Math.min(pos1, pos2); 10510 var isNegative = lower === pos2; 10511 var upper = isNegative ? pos1 : pos2; [all...] |
H A D | tsc.js | 7560 function getLinesBetweenPositions(sourceFile, pos1, pos2) { 7561 if (pos1 === pos2) 7564 var lower = Math.min(pos1, pos2); 7565 var isNegative = lower === pos2; 7566 var upper = isNegative ? pos1 : pos2; [all...] |
H A D | tsserverlibrary.js | 10524 function getLinesBetweenPositions(sourceFile, pos1, pos2) { 10525 if (pos1 === pos2) 10528 var lower = Math.min(pos1, pos2); 10529 var isNegative = lower === pos2; 10530 var upper = isNegative ? pos1 : pos2; [all...] |
H A D | typescript.js | 10515 function getLinesBetweenPositions(sourceFile, pos1, pos2) { 10516 if (pos1 === pos2) 10519 var lower = Math.min(pos1, pos2); 10520 var isNegative = lower === pos2; 10521 var upper = isNegative ? pos1 : pos2; [all...] |
H A D | typescriptServices.js | 10515 function getLinesBetweenPositions(sourceFile, pos1, pos2) { 10516 if (pos1 === pos2) 10519 var lower = Math.min(pos1, pos2); 10520 var isNegative = lower === pos2; 10521 var upper = isNegative ? pos1 : pos2; [all...] |
H A D | tsserver.js | 10525 function getLinesBetweenPositions(sourceFile, pos1, pos2) { 10526 if (pos1 === pos2) 10529 var lower = Math.min(pos1, pos2); 10530 var isNegative = lower === pos2; 10531 var upper = isNegative ? pos1 : pos2; [all...] |
/third_party/node/test/fixtures/snapshot/ |
H A D | typescript.js | 10372 function getLinesBetweenPositions(sourceFile, pos1, pos2) { 10373 if (pos1 === pos2) 10376 var lower = Math.min(pos1, pos2); 10377 var isNegative = lower === pos2; 10378 var upper = isNegative ? pos1 : pos2; [all...] |