Home
last modified time | relevance | path

Searched refs:dist (Results 451 - 475 of 482) sorted by relevance

1...<<11121314151617181920

/kernel/linux/linux-6.6/fs/ceph/
H A Dsuper.h278 int dist[CEPH_MAX_DIRFRAG_REP]; member
H A Dinode.c427 frag->dist[i] = le32_to_cpu(dirinfo->dist[i]); in ceph_fill_dirfrag()
H A Dmds_client.c1364 mds = frag.dist[r]; in __choose_mds()
/third_party/skia/third_party/externals/libwebp/src/dsp/
H A Denc_mips_dsp_r2.c1416 "addu %[temp4], %[temp4], %[dist] \n\t" \
1417 "addu %[temp0], %[temp0], %[dist] \n\t" \
1421 "addu %[temp5], %[temp5], %[dist] \n\t" \
1425 "addu %[temp1], %[temp1], %[dist] \n\t" \
1431 "addu %[temp6], %[temp6], %[dist] \n\t" \
1435 "addu %[temp2], %[temp2], %[dist] \n\t" \
1441 "addu %[temp7], %[temp7], %[dist] \n\t" \
1445 "addu %[temp3], %[temp3], %[dist] \n\t" \
1474 : [dist]"r"(distribution), [out]"r"(out), [max_coeff]"r"(max_coeff) in CollectHistogram_MIPSdspR2()
/third_party/ffmpeg/libavformat/
H A Dmatroskadec.c1420 int64_t dist = length + UNKNOWN_EQUIV * matroska->unknown_count++; in ebml_parse() local
1423 dist += pos_alt - matroska->resync_pos; in ebml_parse()
1425 if (dist > SKIP_THRESHOLD) { in ebml_parse()
/kernel/linux/linux-5.10/drivers/scsi/lpfc/
H A Dlpfc_init.c309 char dist = ' '; in lpfc_dump_wakeup_param_cmpl() local
310 /* character array used for decoding dist type. */ in lpfc_dump_wakeup_param_cmpl()
324 if (prg->dist < 4) in lpfc_dump_wakeup_param_cmpl()
325 dist = dist_char[prg->dist]; in lpfc_dump_wakeup_param_cmpl()
327 if ((prg->dist == 3) && (prg->num == 0)) in lpfc_dump_wakeup_param_cmpl()
333 dist, prg->num); in lpfc_dump_wakeup_param_cmpl()
H A Dlpfc_hw.h3049 uint32_t dist:2; /* Dist Type */ member
3050 uint32_t num:4; /* number after dist type */
3052 uint32_t num:4; /* number after dist type */
3053 uint32_t dist:2; /* Dist Type */
/kernel/linux/linux-6.6/drivers/scsi/lpfc/
H A Dlpfc_hw.h3235 uint32_t dist:2; /* Dist Type */ member
3236 uint32_t num:4; /* number after dist type */
3238 uint32_t num:4; /* number after dist type */
3239 uint32_t dist:2; /* Dist Type */
H A Dlpfc_init.c313 char dist = ' '; in lpfc_dump_wakeup_param_cmpl() local
314 /* character array used for decoding dist type. */ in lpfc_dump_wakeup_param_cmpl()
328 dist = dist_char[prg->dist]; in lpfc_dump_wakeup_param_cmpl()
330 if ((prg->dist == 3) && (prg->num == 0)) in lpfc_dump_wakeup_param_cmpl()
336 dist, prg->num); in lpfc_dump_wakeup_param_cmpl()
/third_party/node/deps/v8/src/codegen/loong64/
H A Dassembler-loong64.cc571 int dist = pos - fixup_pos; in bind_to() local
581 if (dist > branch_offset) { in bind_to()
/third_party/skia/src/gpu/ops/
H A DGrOvalOpFactory.cpp1358 SkScalar dist = std::min(kOctagonOuter[i].dot(geoClipPlane) + offsetClipDist, 0.0f);
1359 SkVector offset = kOctagonOuter[i] - geoClipPlane * dist;
/third_party/libinput/test/
H A Dtest-tablet.c4218 double dist; in START_TEST() local
4231 dist = libinput_event_tablet_tool_get_distance(tev); in START_TEST()
4232 ck_assert_double_ge(dist, 0.0); in START_TEST()
4233 ck_assert_double_le(dist, 1.0); in START_TEST()
/third_party/node/deps/v8/src/codegen/riscv64/
H A Dassembler-riscv64.cc651 int dist = pos - fixup_pos; in bind_to() local
656 DEBUG_PRINTF("\tfixup: %d to %d\n", fixup_pos, dist); in bind_to()
661 if (dist > kMaxBranchOffset) { in bind_to()
673 if (dist > kMaxJumpOffset) { in bind_to()
/third_party/json/tests/abi/include/nlohmann/
H A Djson_v3_10_5.hpp15481 inline void grisu2_round(char* buf, int len, std::uint64_t dist, std::uint64_t delta,
15485 JSON_ASSERT(dist <= delta);
15490 // <---- dist --------->
15508 while (rest < dist
15510 && (rest + ten_k < dist || dist - rest > rest + ten_k - dist))
15533 // <---- dist --------->
15544 std::uint64_t dist = diyfp::sub(M_plus, w ).f; // (significand of (M+ - w ), implicit exponent is e)
15635 grisu2_round(buffer, length, dist, delt
[all...]
/third_party/json/single_include/nlohmann/
H A Djson.hpp17329 inline void grisu2_round(char* buf, int len, std::uint64_t dist, std::uint64_t delta,
17333 JSON_ASSERT(dist <= delta);
17338 // <---- dist --------->
17356 while (rest < dist
17358 && (rest + ten_k < dist || dist - rest > rest + ten_k - dist))
17381 // <---- dist --------->
17392 std::uint64_t dist = diyfp::sub(M_plus, w ).f; // (significand of (M+ - w ), implicit exponent is e)
17483 grisu2_round(buffer, length, dist, delt
[all...]
/kernel/linux/linux-6.6/io_uring/
H A Dio_uring.c2453 int dist = READ_ONCE(ctx->rings->cq.tail) - (int) iowq->cq_tail; in io_should_wake() local
2460 return dist >= 0 || atomic_read(&ctx->cq_timeouts) != iowq->nr_timeouts; in io_should_wake()
/third_party/node/deps/v8/src/codegen/mips/
H A Dassembler-mips.cc1041 int32_t dist = pos - fixup_pos; in bind_to() local
1051 if (dist > branch_offset) { in bind_to()
/third_party/node/
H A Dvcbuild.bat429 powershell -c "Invoke-WebRequest -Uri 'https://nodejs.org/dist/latest/win-x64/node.exe' -OutFile '%x64_node_exe%'"
/third_party/skia/src/gpu/geometry/
H A DGrTriangulator.cpp1129 Line(prev->fPoint, nextWrap->fPoint).dist(v->fPoint) == 0.0) { in sanitizeContours()
/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/overlay/
H A Doverlay_manager.cpp294 auto dist = clipEndValue - clipStartValue; in UpdatePreivewVisibleAreaWhenDisappear() local
303 radius = menuTheme->GetPreviewBorderRadius().ConvertToPx(), distVal = dist](float value) { in UpdatePreivewVisibleAreaWhenDisappear()
/third_party/node/deps/v8/src/codegen/mips64/
H A Dassembler-mips64.cc967 int dist = pos - fixup_pos; in bind_to() local
977 if (dist > branch_offset) { in bind_to()
/third_party/libabigail/tests/lib/
H A Dcatch.hpp7001 std::uniform_int_distribution<decltype(n)> dist(0, n - 1);
7005 std::generate_n(std::back_inserter(out), resamples, [n, first, &estimator, &dist, &rng] {
7008 std::generate_n(std::back_inserter(resampled), n, [first, &dist, &rng] { return first[dist(rng)]; });
/kernel/linux/linux-5.10/fs/ceph/
H A Dmds_client.c1122 mds = frag.dist[r]; in __choose_mds()
/kernel/linux/linux-5.10/io_uring/
H A Dio_uring.c7609 int dist = ctx->cached_cq_tail - (int) iowq->cq_tail; in io_should_wake() local
7616 return dist >= 0 || atomic_read(&ctx->cq_timeouts) != iowq->nr_timeouts; in io_should_wake()
/third_party/sqlite/src/
H A Dsqlite3.c75070 int dist; global() local
[all...]

Completed in 349 milliseconds

1...<<11121314151617181920