/kernel/linux/linux-5.10/drivers/gpu/drm/rcar-du/ |
H A D | rcar_du_crtc.c | 87 unsigned long target) in rcar_du_dpll_divider() 146 diff = abs((long)output - (long)target); in rcar_du_dpll_divider() 174 static void rcar_du_escr_divider(struct clk *clk, unsigned long target, in rcar_du_escr_divider() argument 182 * If the target rate has already been achieved perfectly we can't do in rcar_du_escr_divider() 190 * the clock rate closest to the target frequency. in rcar_du_escr_divider() 192 rate = clk_round_rate(clk, target); in rcar_du_escr_divider() 193 div = clamp(DIV_ROUND_CLOSEST(rate, target), 1UL, 64UL) - 1; in rcar_du_escr_divider() 194 diff = abs(rate / (div + 1) - target); in rcar_du_escr_divider() 223 unsigned long target = mode_clock; in rcar_du_crtc_set_display_timing() local 243 target * in rcar_du_crtc_set_display_timing() 84 rcar_du_dpll_divider(struct rcar_du_crtc *rcrtc, struct dpll_info *dpll, unsigned long input, unsigned long target) rcar_du_dpll_divider() argument [all...] |
/kernel/linux/linux-6.6/include/linux/ |
H A D | memcontrol.h | 609 * parallel reclaimers with different reclaim target. This is in mem_cgroup_protection() 647 static inline bool mem_cgroup_unprotected(struct mem_cgroup *target, in mem_cgroup_unprotected() argument 652 * protection. The target memcg's protection is ignored, see in mem_cgroup_unprotected() 656 memcg == target; in mem_cgroup_unprotected() 659 static inline bool mem_cgroup_below_low(struct mem_cgroup *target, in mem_cgroup_below_low() argument 662 if (mem_cgroup_unprotected(target, memcg)) in mem_cgroup_below_low() 669 static inline bool mem_cgroup_below_min(struct mem_cgroup *target, in mem_cgroup_below_min() argument 672 if (mem_cgroup_unprotected(target, memcg)) in mem_cgroup_below_min() 1284 static inline bool mem_cgroup_unprotected(struct mem_cgroup *target, in mem_cgroup_unprotected() argument 1289 static inline bool mem_cgroup_below_low(struct mem_cgroup *target, in mem_cgroup_below_low() argument 1295 mem_cgroup_below_min(struct mem_cgroup *target, struct mem_cgroup *memcg) mem_cgroup_below_min() argument [all...] |
/kernel/linux/linux-6.6/drivers/gpu/drm/i915/ |
H A D | i915_pmu.c | 1168 unsigned int target = i915_pmu_target_cpu; in i915_pmu_cpu_offline() local 1180 target = cpumask_any_but(topology_sibling_cpumask(cpu), cpu); in i915_pmu_cpu_offline() 1182 /* Migrate events if there is a valid target */ in i915_pmu_cpu_offline() 1183 if (target < nr_cpu_ids) { in i915_pmu_cpu_offline() 1184 cpumask_set_cpu(target, &i915_pmu_cpumask); in i915_pmu_cpu_offline() 1185 i915_pmu_target_cpu = target; in i915_pmu_cpu_offline() 1189 if (target < nr_cpu_ids && target != pmu->cpuhp.cpu) { in i915_pmu_cpu_offline() 1190 perf_pmu_migrate_context(&pmu->base, cpu, target); in i915_pmu_cpu_offline() 1191 pmu->cpuhp.cpu = target; in i915_pmu_cpu_offline() [all...] |
/kernel/linux/linux-6.6/drivers/gpu/drm/radeon/ |
H A D | atom.c | 694 int execute = 0, target = U16(*ptr); in atom_op_jump() local 723 SDEBUG(" target: 0x%04X\n", target); in atom_op_jump() 725 if (ctx->last_jump == (ctx->start + target)) { in atom_op_jump() 738 ctx->last_jump = ctx->start + target; in atom_op_jump() 741 *ptr = ctx->start + target; in atom_op_jump() 972 uint32_t src, val, target; in atom_op_switch() local 982 target = U16(*ptr); in atom_op_switch() 984 SDEBUG(" target: %04X\n", target); in atom_op_switch() [all...] |
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/ |
H A D | Utility.java | 33 public final static boolean arrayEquals(Object[] source, Object target) { in arrayEquals() argument 34 if (source == null) return (target == null); in arrayEquals() 35 if (!(target instanceof Object[])) return false; in arrayEquals() 36 Object[] targ = (Object[]) target; in arrayEquals() 45 public final static boolean arrayEquals(int[] source, Object target) { in arrayEquals() argument 46 if (source == null) return (target == null); in arrayEquals() 47 if (!(target instanceof int[])) return false; in arrayEquals() 48 int[] targ = (int[]) target; in arrayEquals() 57 public final static boolean arrayEquals(double[] source, Object target) { in arrayEquals() argument 58 if (source == null) return (target in arrayEquals() 64 arrayEquals(byte[] source, Object target) arrayEquals() argument 76 arrayEquals(Object source, Object target) arrayEquals() argument 97 arrayRegionMatches(Object[] source, int sourceStart, Object[] target, int targetStart, int len) arrayRegionMatches() argument 116 arrayRegionMatches(char[] source, int sourceStart, char[] target, int targetStart, int len) arrayRegionMatches() argument 135 arrayRegionMatches(int[] source, int sourceStart, int[] target, int targetStart, int len) arrayRegionMatches() argument 154 arrayRegionMatches(double[] source, int sourceStart, double[] target, int targetStart, int len) arrayRegionMatches() argument 166 arrayRegionMatches(byte[] source, int sourceStart, byte[] target, int targetStart, int len) arrayRegionMatches() argument 1169 lookup(String source, String[] target) lookup() argument 1775 compareUnsigned(int source, int target) compareUnsigned() argument 1861 splitString(String src, String target) splitString() argument [all...] |
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/text/ |
H A D | Normalizer.java | 30 * <a href="https://www.unicode.org/reports/tr15/" target="unicode"> 449 * <a href="https://www.unicode.org/reports/tr15/" target="unicode"> 699 * @param target A char buffer to receive the normalized text. 706 * @exception IndexOutOfBoundsException if target.length is less than the 711 public static int compose(char[] source,char[] target, boolean compat, int options) { in compose() argument 712 return compose(source, 0, source.length, target, 0, target.length, compat, options); in compose() 730 * @exception IndexOutOfBoundsException if target.length is less than the 779 * @param target A char buffer to receive the normalized text. 786 * @exception IndexOutOfBoundsException if the target capacit 791 decompose(char[] source,char[] target, boolean compat, int options) decompose() argument 876 normalize(char[] source,char[] target, Mode mode, int options) normalize() argument [all...] |
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/text/ |
H A D | Normalizer.java | 31 * <a href="http://www.unicode.org/unicode/reports/tr15/" target="unicode"> 466 * <a href="http://www.unicode.org/unicode/reports/tr15/" target="unicode"> 715 * @param target A char buffer to receive the normalized text. 722 * @exception IndexOutOfBoundsException if target.length is less than the 728 public static int compose(char[] source,char[] target, boolean compat, int options) { in compose() argument 729 return compose(source, 0, source.length, target, 0, target.length, compat, options); in compose() 747 * @exception IndexOutOfBoundsException if target.length is less than the 799 * @param target A char buffer to receive the normalized text. 806 * @exception IndexOutOfBoundsException if the target capacit 812 decompose(char[] source,char[] target, boolean compat, int options) decompose() argument 901 normalize(char[] source,char[] target, Mode mode, int options) normalize() argument [all...] |
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/impl/ |
H A D | Utility.java | 36 public final static boolean arrayEquals(Object[] source, Object target) { in arrayEquals() argument 37 if (source == null) return (target == null); in arrayEquals() 38 if (!(target instanceof Object[])) return false; in arrayEquals() 39 Object[] targ = (Object[]) target; in arrayEquals() 48 public final static boolean arrayEquals(int[] source, Object target) { in arrayEquals() argument 49 if (source == null) return (target == null); in arrayEquals() 50 if (!(target instanceof int[])) return false; in arrayEquals() 51 int[] targ = (int[]) target; in arrayEquals() 60 public final static boolean arrayEquals(double[] source, Object target) { in arrayEquals() argument 61 if (source == null) return (target in arrayEquals() 67 arrayEquals(byte[] source, Object target) arrayEquals() argument 79 arrayEquals(Object source, Object target) arrayEquals() argument 100 arrayRegionMatches(Object[] source, int sourceStart, Object[] target, int targetStart, int len) arrayRegionMatches() argument 119 arrayRegionMatches(char[] source, int sourceStart, char[] target, int targetStart, int len) arrayRegionMatches() argument 138 arrayRegionMatches(int[] source, int sourceStart, int[] target, int targetStart, int len) arrayRegionMatches() argument 157 arrayRegionMatches(double[] source, int sourceStart, double[] target, int targetStart, int len) arrayRegionMatches() argument 169 arrayRegionMatches(byte[] source, int sourceStart, byte[] target, int targetStart, int len) arrayRegionMatches() argument 1104 lookup(String source, String[] target) lookup() argument 1679 compareUnsigned(int source, int target) compareUnsigned() argument 1765 splitString(String src, String target) splitString() argument [all...] |
/third_party/libunwind/libunwind/doc/ |
H A D | libunwind.tex | 126 \Func{unw\_resume}() and passing the cursor identifying the target 181 integer that specifies the byte-order of the target process. The 207 \Prog{libunwind} to unwind an arbitrary number of target platforms, 212 \emph{target}. If the host and the target platform are the same, we 222 of the target platform (e.g., \File{ia64} for IA-64, \File{hppa-elf} 227 platform-specific support for each supported target needs to be 289 associated with a specific address range in the target process (or the 308 the unwind target runs on platform \Var{PLAT}. For example, to unwind
|
/third_party/mesa3d/src/gallium/frontends/glx/xlib/ |
H A D | xm_api.c | 468 const enum pipe_texture_target target = PIPE_TEXTURE_2D; in choose_depth_stencil_format() local 493 target, sample_count, in choose_depth_stencil_format() 1143 int format, int target, int mipmap) in XMesaCreatePixmapTextureBuffer() 1157 if (target == 0) { in XMesaCreatePixmapTextureBuffer() 1160 target = GLX_TEXTURE_2D_EXT; in XMesaCreatePixmapTextureBuffer() 1166 target = GLX_TEXTURE_1D_EXT; in XMesaCreatePixmapTextureBuffer() 1169 target = GLX_TEXTURE_2D_EXT; in XMesaCreatePixmapTextureBuffer() 1173 target = GLX_TEXTURE_RECTANGLE_EXT; in XMesaCreatePixmapTextureBuffer() 1182 b->TextureTarget = target; in XMesaCreatePixmapTextureBuffer() 1141 XMesaCreatePixmapTextureBuffer(XMesaVisual v, Pixmap p, Colormap cmap, int format, int target, int mipmap) XMesaCreatePixmapTextureBuffer() argument
|
/third_party/mesa3d/src/gallium/auxiliary/tgsi/ |
H A D | tgsi_scan.c | 274 const unsigned target = fullinst->Texture.Texture; in scan_src_operand() local 275 assert(target < TGSI_TEXTURE_UNKNOWN); in scan_src_operand() 277 * target matches the previous sampler view declaration (if there in scan_src_operand() 282 info->sampler_targets[index] = target; in scan_src_operand() 284 /* Make sure the texture instruction's sampler/target info in scan_src_operand() 287 assert(info->sampler_targets[index] == target); in scan_src_operand() 632 unsigned index, target, type; in scan_declaration() local 800 target = fulldecl->SamplerView.Resource; in scan_declaration() 803 assert(target < TGSI_TEXTURE_UNKNOWN); in scan_declaration() 805 /* Save sampler target fo in scan_declaration() [all...] |
/third_party/mesa3d/src/gallium/drivers/r600/sfn/ |
H A D | sfn_instr_tex.cpp | 899 RegisterVec4::Swizzle target{7,7,7,7}; 904 target[i] = i; 910 target[2] = 1; 911 target[1] = 7; 917 target[3] = 3; 920 target[2] = 2; 925 target[3] = 3; 929 auto src_coord = shader.value_factory().temp_vec4(pin_group, target); 933 if (target[i] > 3)
|
/third_party/python/Lib/importlib/ |
H A D | _bootstrap_external.py | 886 def find_spec(cls, fullname, path=None, target=None): 1465 def _get_spec(cls, fullname, path, target=None): 1476 spec = finder.find_spec(fullname, target) 1497 def find_spec(cls, fullname, path=None, target=None): 1504 spec = cls._get_spec(fullname, path, target) 1599 def _get_spec(self, loader_class, fullname, path, smsl, target): 1604 def find_spec(self, fullname, target=None): 1632 return self._get_spec(loader_class, fullname, full_path, [base_path], target) 1647 None, target)
|
/third_party/skia/src/gpu/ops/ |
H A D | AAHairLinePathRenderer.cpp | 1132 void AAHairlineOp::onPrepareDraws(GrMeshDrawTarget* target) { in onPrepareDraws() argument 1147 SkDEBUGCODE(Program predictedPrograms = this->predictPrograms(&target->caps())); in onPrepareDraws() 1159 bool convertConicsToQuads = !target->caps().shaderCaps()->floatIs32Bits(); in onPrepareDraws() 1182 sk_sp<const GrBuffer> linesIndexBuffer = get_lines_index_buffer(target->resourceProvider()); in onPrepareDraws() 1184 GrMeshDrawOp::PatternHelper helper(target, GrPrimitiveType::kTriangles, sizeof(LineVertex), in onPrepareDraws() 1205 sk_sp<const GrBuffer> quadsIndexBuffer = get_quads_index_buffer(target->resourceProvider()); in onPrepareDraws() 1208 void* vertices = target->makeVertexSpace(sizeof(BezierVertex), vertexCount, &vertexBuffer, in onPrepareDraws() 1237 fMeshes[1] = target->allocMesh(); in onPrepareDraws() 1248 fMeshes[2] = target->allocMesh(); in onPrepareDraws()
|
H A D | StrokeRectOp.cpp | 202 void onPrepareDraws(GrMeshDrawTarget* target) override { 204 this->createProgramInfo(target); 217 target->makeVertexSpace(kVertexStride, vertexCount, &vertexBuffer, &firstVertex); 237 fMesh = target->allocMesh(); 619 void AAStrokeRectOp::onPrepareDraws(GrMeshDrawTarget* target) { in onPrepareDraws() argument 622 this->createProgramInfo(target); in onPrepareDraws() 636 GetIndexBuffer(target->resourceProvider(), this->miterStroke()); in onPrepareDraws() 641 PatternHelper helper(target, GrPrimitiveType::kTriangles, in onPrepareDraws() 661 target->usesMSAASurface()); in onPrepareDraws()
|
/kernel/linux/linux-5.10/drivers/perf/ |
H A D | qcom_l3_pmu.c | 720 unsigned int target; in qcom_l3_cache_pmu_offline_cpu() local 724 target = cpumask_any_but(cpu_online_mask, cpu); in qcom_l3_cache_pmu_offline_cpu() 725 if (target >= nr_cpu_ids) in qcom_l3_cache_pmu_offline_cpu() 727 perf_pmu_migrate_context(&l3pmu->pmu, cpu, target); in qcom_l3_cache_pmu_offline_cpu() 728 cpumask_set_cpu(target, &l3pmu->cpumask); in qcom_l3_cache_pmu_offline_cpu()
|
H A D | fsl_imx8_ddr_perf.c | 577 int target; in ddr_perf_offline_cpu() local 582 target = cpumask_any_but(cpu_online_mask, cpu); in ddr_perf_offline_cpu() 583 if (target >= nr_cpu_ids) in ddr_perf_offline_cpu() 586 perf_pmu_migrate_context(&pmu->pmu, cpu, target); in ddr_perf_offline_cpu() 587 pmu->cpu = target; in ddr_perf_offline_cpu()
|
/kernel/linux/linux-5.10/sound/soc/codecs/ |
H A D | wm8961.c | 507 int i, best, target, fs; in wm8961_hw_params() local 532 target = wm8961->sysclk / fs; in wm8961_hw_params() 534 if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK && target < 64) { in wm8961_hw_params() 539 if (substream->stream == SNDRV_PCM_STREAM_CAPTURE && target < 256) { in wm8961_hw_params() 546 if (wm8961_clk_sys_ratio[i].ratio >= target) in wm8961_hw_params()
|
H A D | wm8974.c | 273 unsigned int target, unsigned int source) in pll_factors() 279 target *= 4; in pll_factors() 281 Ndiv = target / source; in pll_factors() 285 Ndiv = target / source; in pll_factors() 295 Nmod = target % source; in pll_factors() 272 pll_factors(struct pll_ *pll_div, unsigned int target, unsigned int source) pll_factors() argument
|
/kernel/linux/linux-5.10/tools/perf/util/ |
H A D | svghelper.c | 73 double target = 10.0; in round_text_size() local 78 if (size >= target) in round_text_size() 79 return target; in round_text_size() 80 target = target / 2.0; in round_text_size()
|
/kernel/linux/linux-5.10/drivers/gpu/drm/i915/gt/ |
H A D | intel_rc6.c | 617 unsigned int target; in intel_rc6_park() local 634 target = 0x6; /* deepest rc6 */ in intel_rc6_park() 636 target = 0x5; /* deep rc6 */ in intel_rc6_park() 638 target = 0x4; /* normal rc6 */ in intel_rc6_park() 639 set(uncore, GEN6_RC_STATE, target << RC_SW_TARGET_STATE_SHIFT); in intel_rc6_park()
|
/kernel/linux/linux-5.10/drivers/nfc/st21nfca/ |
H A D | dep.c | 519 struct nfc_target *target; in st21nfca_im_send_atr_req() local 544 target = hdev->ndev->targets; in st21nfca_im_send_atr_req() 546 if (target->sensf_res_len > 0) in st21nfca_im_send_atr_req() 547 memcpy(atr_req->nfcid3, target->sensf_res, in st21nfca_im_send_atr_req() 548 target->sensf_res_len); in st21nfca_im_send_atr_req()
|
/kernel/linux/linux-5.10/drivers/regulator/ |
H A D | helpers.c | 883 static int find_closest_bigger(unsigned int target, const unsigned int *table, in find_closest_bigger() argument 896 if (table[s] >= target) { in find_closest_bigger() 897 if (!found || table[s] - target < tmp - target) { in find_closest_bigger() 901 if (tmp == target) in find_closest_bigger()
|
/kernel/linux/linux-6.6/drivers/regulator/ |
H A D | helpers.c | 911 * @target: targeted ramp_delay 921 int regulator_find_closest_bigger(unsigned int target, const unsigned int *table, in regulator_find_closest_bigger() argument 934 if (table[s] >= target) { in regulator_find_closest_bigger() 935 if (!found || table[s] - target < tmp - target) { in regulator_find_closest_bigger() 939 if (tmp == target) in regulator_find_closest_bigger()
|
/kernel/linux/linux-6.6/drivers/nfc/st21nfca/ |
H A D | dep.c | 496 struct nfc_target *target; in st21nfca_im_send_atr_req() local 521 target = hdev->ndev->targets; in st21nfca_im_send_atr_req() 523 if (target->sensf_res_len > 0) in st21nfca_im_send_atr_req() 524 memcpy(atr_req->nfcid3, target->sensf_res, in st21nfca_im_send_atr_req() 525 target->sensf_res_len); in st21nfca_im_send_atr_req()
|