/kernel/linux/linux-6.6/fs/ceph/ |
H A D | super.h | 278 int dist[CEPH_MAX_DIRFRAG_REP]; member
|
H A D | inode.c | 427 frag->dist[i] = le32_to_cpu(dirinfo->dist[i]); in ceph_fill_dirfrag()
|
H A D | mds_client.c | 1364 mds = frag.dist[r]; in __choose_mds()
|
/third_party/skia/third_party/externals/libwebp/src/dsp/ |
H A D | enc_mips_dsp_r2.c | 1416 "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 D | matroskadec.c | 1420 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 D | lpfc_init.c | 309 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 D | lpfc_hw.h | 3049 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 D | lpfc_hw.h | 3235 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 D | lpfc_init.c | 313 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 D | assembler-loong64.cc | 571 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 D | GrOvalOpFactory.cpp | 1358 SkScalar dist = std::min(kOctagonOuter[i].dot(geoClipPlane) + offsetClipDist, 0.0f); 1359 SkVector offset = kOctagonOuter[i] - geoClipPlane * dist;
|
/third_party/libinput/test/ |
H A D | test-tablet.c | 4218 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 D | assembler-riscv64.cc | 651 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 D | json_v3_10_5.hpp | 15481 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 D | json.hpp | 17329 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 D | io_uring.c | 2453 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 D | assembler-mips.cc | 1041 int32_t dist = pos - fixup_pos; in bind_to() local 1051 if (dist > branch_offset) { in bind_to()
|
/third_party/node/ |
H A D | vcbuild.bat | 429 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 D | GrTriangulator.cpp | 1129 Line(prev->fPoint, nextWrap->fPoint).dist(v->fPoint) == 0.0) { in sanitizeContours()
|
/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/overlay/ |
H A D | overlay_manager.cpp | 294 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 D | assembler-mips64.cc | 967 int dist = pos - fixup_pos; in bind_to() local 977 if (dist > branch_offset) { in bind_to()
|
/third_party/libabigail/tests/lib/ |
H A D | catch.hpp | 7001 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 D | mds_client.c | 1122 mds = frag.dist[r]; in __choose_mds()
|
/kernel/linux/linux-5.10/io_uring/ |
H A D | io_uring.c | 7609 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 D | sqlite3.c | 75070 int dist; global() local [all...] |