Home
last modified time | relevance | path

Searched refs:top (Results 51 - 75 of 2468) sorted by relevance

12345678910>>...99

/kernel/linux/linux-6.6/arch/powerpc/mm/nohash/
H A D8xx.c120 static void mmu_mapin_ram_chunk(unsigned long offset, unsigned long top, in mmu_mapin_ram_chunk() argument
126 WARN_ON(!IS_ALIGNED(offset, SZ_512K) || !IS_ALIGNED(top, SZ_512K)); in mmu_mapin_ram_chunk()
128 for (; p < ALIGN(p, SZ_8M) && p < top; p += SZ_512K, v += SZ_512K) in mmu_mapin_ram_chunk()
130 for (; p < ALIGN_DOWN(top, SZ_8M) && p < top; p += SZ_8M, v += SZ_8M) in mmu_mapin_ram_chunk()
132 for (; p < ALIGN_DOWN(top, SZ_512K) && p < top; p += SZ_512K, v += SZ_512K) in mmu_mapin_ram_chunk()
136 flush_tlb_kernel_range(PAGE_OFFSET + v, PAGE_OFFSET + top); in mmu_mapin_ram_chunk()
139 unsigned long __init mmu_mapin_ram(unsigned long base, unsigned long top) in mmu_mapin_ram() argument
147 WARN_ON(top < einittext in mmu_mapin_ram()
[all...]
/third_party/typescript/tests/baselines/reference/
H A DglobalThisVarDeclaration.js15 top.a;
16 top.b;
30 top.a;
31 top.b;
46 top.a;
47 top.b;
58 top.a;
59 top.b;
H A DrecursiveNamedLambdaCall.js4 if ( top && top.doScroll ) {
9 top.doScroll("left");
24 if (top && top.doScroll) {
28 top.doScroll("left");
H A DtypeParameterDiamond1.js5 var top: Top;
9 top = middle;
11 top = bottom;
20 var top;
23 top = middle;
25 top = bottom;
H A DtypeParameterDiamond2.js5 var top: Top;
9 top = middle;
11 top = bottom;
20 var top;
23 top = middle;
25 top = bottom;
H A DtypeParameterDiamond3.js5 var top: Top;
9 top = middle;
11 top = bottom;
20 var top;
23 top = middle;
25 top = bottom;
H A DtypeParameterDiamond4.js5 var top: Top;
9 top = middle;
11 top = bottom;
20 var top;
23 top = middle;
25 top = bottom;
/kernel/linux/linux-6.6/drivers/clk/starfive/
H A Dclk-starfive-jh7110-vout.c78 return dev_err_probe(priv->dev, PTR_ERR(top_rst), "failed to get top reset\n"); in jh7110_vout_top_rst_init()
97 struct jh7110_top_sysclk *top = dev_get_drvdata(dev); in jh7110_voutcrg_suspend() local
99 clk_bulk_disable_unprepare(top->top_clks_num, top->top_clks); in jh7110_voutcrg_suspend()
106 struct jh7110_top_sysclk *top = dev_get_drvdata(dev); in jh7110_voutcrg_resume() local
108 return clk_bulk_prepare_enable(top->top_clks_num, top->top_clks); in jh7110_voutcrg_resume()
119 struct jh7110_top_sysclk *top; in jh7110_voutcrg_probe() local
129 top = devm_kzalloc(&pdev->dev, sizeof(*top), GFP_KERNE in jh7110_voutcrg_probe()
[all...]
H A Dclk-starfive-jh7110-isp.c73 "failed to get top resets\n"); in jh7110_isp_top_rst_init()
92 struct jh7110_top_sysclk *top = dev_get_drvdata(dev); in jh7110_ispcrg_suspend() local
94 clk_bulk_disable_unprepare(top->top_clks_num, top->top_clks); in jh7110_ispcrg_suspend()
101 struct jh7110_top_sysclk *top = dev_get_drvdata(dev); in jh7110_ispcrg_resume() local
103 return clk_bulk_prepare_enable(top->top_clks_num, top->top_clks); in jh7110_ispcrg_resume()
114 struct jh7110_top_sysclk *top; in jh7110_ispcrg_probe() local
124 top = devm_kzalloc(&pdev->dev, sizeof(*top), GFP_KERNE in jh7110_ispcrg_probe()
[all...]
/third_party/skia/third_party/externals/libwebp/src/dsp/
H A Dlossless.h31 typedef uint32_t (*VP8LPredictorFunc)(uint32_t left, const uint32_t* const top);
34 uint32_t VP8LPredictor0_C(uint32_t left, const uint32_t* const top);
35 uint32_t VP8LPredictor1_C(uint32_t left, const uint32_t* const top);
36 uint32_t VP8LPredictor2_C(uint32_t left, const uint32_t* const top);
37 uint32_t VP8LPredictor3_C(uint32_t left, const uint32_t* const top);
38 uint32_t VP8LPredictor4_C(uint32_t left, const uint32_t* const top);
39 uint32_t VP8LPredictor5_C(uint32_t left, const uint32_t* const top);
40 uint32_t VP8LPredictor6_C(uint32_t left, const uint32_t* const top);
41 uint32_t VP8LPredictor7_C(uint32_t left, const uint32_t* const top);
42 uint32_t VP8LPredictor8_C(uint32_t left, const uint32_t* const top);
[all...]
H A Dlossless_mips_dsp_r2.c191 static uint32_t Predictor5_MIPSdspR2(uint32_t left, const uint32_t* const top) { in Predictor5_MIPSdspR2() argument
192 return Average3(left, top[0], top[1]); in Predictor5_MIPSdspR2()
195 static uint32_t Predictor6_MIPSdspR2(uint32_t left, const uint32_t* const top) { in Predictor6_MIPSdspR2() argument
196 return Average2(left, top[-1]); in Predictor6_MIPSdspR2()
199 static uint32_t Predictor7_MIPSdspR2(uint32_t left, const uint32_t* const top) { in Predictor7_MIPSdspR2() argument
200 return Average2(left, top[0]); in Predictor7_MIPSdspR2()
203 static uint32_t Predictor8_MIPSdspR2(uint32_t left, const uint32_t* const top) { in Predictor8_MIPSdspR2() argument
205 return Average2(top[-1], top[ in Predictor8_MIPSdspR2()
208 Predictor9_MIPSdspR2(uint32_t left, const uint32_t* const top) Predictor9_MIPSdspR2() argument
213 Predictor10_MIPSdspR2(uint32_t left, const uint32_t* const top) Predictor10_MIPSdspR2() argument
218 Predictor11_MIPSdspR2(uint32_t left, const uint32_t* const top) Predictor11_MIPSdspR2() argument
223 Predictor12_MIPSdspR2(uint32_t left, const uint32_t* const top) Predictor12_MIPSdspR2() argument
228 Predictor13_MIPSdspR2(uint32_t left, const uint32_t* const top) Predictor13_MIPSdspR2() argument
[all...]
/kernel/linux/linux-5.10/arch/x86/math-emu/
H A Dfpu_tags.c20 fpu_tag_word |= 3 << ((top & 7) * 2); in FPU_pop()
21 top++; in FPU_pop()
26 return (fpu_tag_word >> ((top & 7) * 2)) & 3; in FPU_gettag0()
31 return (fpu_tag_word >> (((top + stnr) & 7) * 2)) & 3; in FPU_gettagi()
41 int regnr = top; in FPU_settag0()
49 int regnr = stnr + top; in FPU_settagi()
83 int regnr = (top + stnr) & 7; in FPU_empty_i()
92 return ((fpu_tag_word >> (((top - 1) & 7) * 2)) & 3) != TAG_Empty; in FPU_stackoverflow()
109 int regnr = top; in FPU_copy_to_reg0()
/kernel/linux/linux-6.6/arch/x86/math-emu/
H A Dfpu_tags.c20 fpu_tag_word |= 3 << ((top & 7) * 2); in FPU_pop()
21 top++; in FPU_pop()
26 return (fpu_tag_word >> ((top & 7) * 2)) & 3; in FPU_gettag0()
31 return (fpu_tag_word >> (((top + stnr) & 7) * 2)) & 3; in FPU_gettagi()
41 int regnr = top; in FPU_settag0()
49 int regnr = stnr + top; in FPU_settagi()
83 int regnr = (top + stnr) & 7; in FPU_empty_i()
92 return ((fpu_tag_word >> (((top - 1) & 7) * 2)) & 3) != TAG_Empty; in FPU_stackoverflow()
109 int regnr = top; in FPU_copy_to_reg0()
/third_party/ffmpeg/libavcodec/mips/
H A Dvp9dsp_mips.h188 const uint8_t *top);
190 const uint8_t *top);
192 const uint8_t *top);
194 const uint8_t *top);
196 const uint8_t *top);
198 const uint8_t *top);
200 const uint8_t *top);
202 const uint8_t *top);
204 const uint8_t *top);
206 const uint8_t *top);
[all...]
/kernel/linux/linux-5.10/drivers/mfd/
H A Dexynos-lpass.c54 struct regmap *top; member
62 regmap_read(lpass->top, SFR_LPASS_CORE_SW_RESET, &val); in exynos_lpass_core_sw_reset()
65 regmap_write(lpass->top, SFR_LPASS_CORE_SW_RESET, val); in exynos_lpass_core_sw_reset()
70 regmap_write(lpass->top, SFR_LPASS_CORE_SW_RESET, val); in exynos_lpass_core_sw_reset()
78 regmap_write(lpass->top, SFR_LPASS_INTR_CA5_MASK, in exynos_lpass_enable()
81 regmap_write(lpass->top, SFR_LPASS_INTR_CPU_MASK, in exynos_lpass_enable()
94 regmap_write(lpass->top, SFR_LPASS_INTR_CPU_MASK, 0); in exynos_lpass_disable()
95 regmap_write(lpass->top, SFR_LPASS_INTR_CA5_MASK, 0); in exynos_lpass_disable()
128 lpass->top = regmap_init_mmio(dev, base_top, in exynos_lpass_probe()
130 if (IS_ERR(lpass->top)) { in exynos_lpass_probe()
[all...]
/kernel/linux/linux-6.6/drivers/mfd/
H A Dexynos-lpass.c53 struct regmap *top; member
61 regmap_read(lpass->top, SFR_LPASS_CORE_SW_RESET, &val); in exynos_lpass_core_sw_reset()
64 regmap_write(lpass->top, SFR_LPASS_CORE_SW_RESET, val); in exynos_lpass_core_sw_reset()
69 regmap_write(lpass->top, SFR_LPASS_CORE_SW_RESET, val); in exynos_lpass_core_sw_reset()
77 regmap_write(lpass->top, SFR_LPASS_INTR_CA5_MASK, in exynos_lpass_enable()
80 regmap_write(lpass->top, SFR_LPASS_INTR_CPU_MASK, in exynos_lpass_enable()
93 regmap_write(lpass->top, SFR_LPASS_INTR_CPU_MASK, 0); in exynos_lpass_disable()
94 regmap_write(lpass->top, SFR_LPASS_INTR_CA5_MASK, 0); in exynos_lpass_disable()
125 lpass->top = regmap_init_mmio(dev, base_top, in exynos_lpass_probe()
127 if (IS_ERR(lpass->top)) { in exynos_lpass_probe()
[all...]
/third_party/ffmpeg/libavdevice/
H A Dgdigrab.c100 rect.left++; rect.top++; rect.right--; rect.bottom--; in gdigrab_region_wnd_proc()
103 rect.left++; rect.top++; rect.right--; rect.bottom--; in gdigrab_region_wnd_proc()
132 rect.left -= REGION_WND_BORDER; rect.top -= REGION_WND_BORDER; in gdigrab_region_wnd_init()
139 hwnd = CreateWindowEx(ex, WC_DIALOG, NULL, style, rect.left, rect.top, in gdigrab_region_wnd_init()
140 rect.right - rect.left, rect.bottom - rect.top, in gdigrab_region_wnd_init()
150 rect.right - rect.left, rect.bottom - rect.top); in gdigrab_region_wnd_init()
153 rect.bottom - rect.top - REGION_WND_BORDER); in gdigrab_region_wnd_init()
303 virtual_rect.top = virtual_rect.top * desktopvertres / vertres; in gdigrab_read_header()
308 virtual_rect.top in gdigrab_read_header()
[all...]
/third_party/skia/src/sksl/transform/
H A DSkSLEliminateUnreachableCode.cpp35 if (fFoundFunctionExit.top() || fFoundLoopExit.top()) { in EliminateUnreachableCode()
51 fFoundFunctionExit.top() = true; in EliminateUnreachableCode()
59 fFoundLoopExit.top() = true; in EliminateUnreachableCode()
100 bool foundFunctionExitOnTrue = fFoundFunctionExit.top(); in EliminateUnreachableCode()
101 bool foundLoopExitOnTrue = fFoundLoopExit.top(); in EliminateUnreachableCode()
108 bool foundFunctionExitOnFalse = fFoundFunctionExit.top(); in EliminateUnreachableCode()
109 bool foundLoopExitOnFalse = fFoundLoopExit.top(); in EliminateUnreachableCode()
113 fFoundFunctionExit.top() |= foundFunctionExitOnTrue && foundFunctionExitOnFalse; in EliminateUnreachableCode()
114 fFoundLoopExit.top() | in EliminateUnreachableCode()
[all...]
/third_party/ffmpeg/libavfilter/
H A Dvf_fillborders.c38 int left, right, top, bottom; member
43 int left, right, top, bottom; member
88 for (y = s->borders[p].top; y < s->planeheight[p] - s->borders[p].bottom; y++) { in smear_borders8()
97 for (y = 0; y < s->borders[p].top; y++) { in smear_borders8()
99 ptr + s->borders[p].top * linesize, s->planewidth[p]); in smear_borders8()
118 for (y = s->borders[p].top; y < s->planeheight[p] - s->borders[p].bottom; y++) { in smear_borders16()
129 for (y = 0; y < s->borders[p].top; y++) { in smear_borders16()
131 ptr + s->borders[p].top * linesize, s->planewidth[p] * 2); in smear_borders16()
150 for (y = s->borders[p].top; y < s->planeheight[p] - s->borders[p].bottom; y++) { in mirror_borders8()
161 for (y = 0; y < s->borders[p].top; in mirror_borders8()
498 const int top = s->borders[p].top; margins_borders8() local
543 const int top = s->borders[p].top; margins_borders16() local
[all...]
/kernel/linux/linux-6.6/arch/powerpc/mm/book3s32/
H A Dmmu.c102 unsigned int bat_block_size(unsigned long base, unsigned long top) in bat_block_size() argument
106 unsigned int block_shift = (fls(top - base) - 1) & 31; in bat_block_size()
142 static unsigned long __init __mmu_mapin_ram(unsigned long base, unsigned long top) in __mmu_mapin_ram() argument
146 while ((idx = find_free_bat()) != -1 && base != top) { in __mmu_mapin_ram()
147 unsigned int size = bat_block_size(base, top); in __mmu_mapin_ram()
158 unsigned long __init mmu_mapin_ram(unsigned long base, unsigned long top) in mmu_mapin_ram() argument
171 if (top >= border) in mmu_mapin_ram()
172 top = border; in mmu_mapin_ram()
175 if (!strict_kernel_rwx_enabled() || base >= border || top <= border) in mmu_mapin_ram()
176 return __mmu_mapin_ram(base, top); in mmu_mapin_ram()
201 unsigned long top = ALIGN((unsigned long)_etext - PAGE_OFFSET, SZ_128K); mmu_mark_initmem_nx() local
[all...]
/kernel/linux/linux-5.10/drivers/media/pci/bt8xx/
H A Dbtcx-risc.c90 clips[n].c.top = 0; in btcx_screen_clips()
98 clips[n].c.top = 0; in btcx_screen_clips()
103 if (win->top < 0) { in btcx_screen_clips()
104 /* top */ in btcx_screen_clips()
106 clips[n].c.top = 0; in btcx_screen_clips()
108 clips[n].c.height = -win->top; in btcx_screen_clips()
111 if (win->top + win->height > sheight) { in btcx_screen_clips()
114 clips[n].c.top = sheight - win->top; in btcx_screen_clips()
116 clips[n].c.height = win->height - clips[n].c.top; in btcx_screen_clips()
[all...]
/third_party/musl/porting/liteos_a/kernel/src/math/
H A Dsqrtl.c21 /* top: 16 bit sign+exponent, x: significand. */
22 static inline long double mkldbl(uint64_t top, u128 x) in mkldbl() argument
29 u.i2.hi |= top << 48; in mkldbl()
31 u.i.se = top; in mkldbl()
33 /* force the top bit on non-zero (and non-subnormal) results. */ in mkldbl()
34 if (top & 0x7fff) in mkldbl()
40 /* return: top 16 bit is sign+exp and following bits are the significand. */
50 /* ignore the top bit: pseudo numbers are not handled. */ in asu128()
182 uint64_t top; in sqrtl() local
185 top in sqrtl()
[all...]
/third_party/musl/src/math/
H A Dsqrtl.c21 /* top: 16 bit sign+exponent, x: significand. */
22 static inline long double mkldbl(uint64_t top, u128 x) in mkldbl() argument
29 u.i2.hi |= top << 48; in mkldbl()
31 u.i.se = top; in mkldbl()
33 /* force the top bit on non-zero (and non-subnormal) results. */ in mkldbl()
34 if (top & 0x7fff) in mkldbl()
40 /* return: top 16 bit is sign+exp and following bits are the significand. */
50 /* ignore the top bit: pseudo numbers are not handled. */ in asu128()
182 uint64_t top; in sqrtl() local
185 top in sqrtl()
[all...]
/third_party/node/deps/openssl/openssl/crypto/bn/
H A Dbn_rand.c23 static int bnrand(BNRAND_FLAG flag, BIGNUM *rnd, int bits, int top, int bottom, in bnrand() argument
31 if (top != BN_RAND_TOP_ANY || bottom != BN_RAND_BOTTOM_ANY) in bnrand()
36 if (bits < 0 || (bits == 1 && top > 0)) in bnrand()
49 /* make a random number and set the top and bottom bits */ in bnrand()
74 if (top >= 0) { in bnrand()
75 if (top) { in bnrand()
102 int BN_rand_ex(BIGNUM *rnd, int bits, int top, int bottom, in BN_rand_ex() argument
105 return bnrand(NORMAL, rnd, bits, top, bottom, strength, ctx); in BN_rand_ex()
108 int BN_rand(BIGNUM *rnd, int bits, int top, int bottom) in BN_rand() argument
110 return bnrand(NORMAL, rnd, bits, top, botto in BN_rand()
113 BN_bntest_rand(BIGNUM *rnd, int bits, int top, int bottom) BN_bntest_rand() argument
119 BN_priv_rand_ex(BIGNUM *rnd, int bits, int top, int bottom, unsigned int strength, BN_CTX *ctx) BN_priv_rand_ex() argument
126 BN_priv_rand(BIGNUM *rnd, int bits, int top, int bottom) BN_priv_rand() argument
231 BN_pseudo_rand(BIGNUM *rnd, int bits, int top, int bottom) BN_pseudo_rand() argument
[all...]
/third_party/openssl/crypto/bn/
H A Dbn_rand.c23 static int bnrand(BNRAND_FLAG flag, BIGNUM *rnd, int bits, int top, int bottom, in bnrand() argument
31 if (top != BN_RAND_TOP_ANY || bottom != BN_RAND_BOTTOM_ANY) in bnrand()
36 if (bits < 0 || (bits == 1 && top > 0)) in bnrand()
49 /* make a random number and set the top and bottom bits */ in bnrand()
74 if (top >= 0) { in bnrand()
75 if (top) { in bnrand()
102 int BN_rand_ex(BIGNUM *rnd, int bits, int top, int bottom, in BN_rand_ex() argument
105 return bnrand(NORMAL, rnd, bits, top, bottom, strength, ctx); in BN_rand_ex()
108 int BN_rand(BIGNUM *rnd, int bits, int top, int bottom) in BN_rand() argument
110 return bnrand(NORMAL, rnd, bits, top, botto in BN_rand()
113 BN_bntest_rand(BIGNUM *rnd, int bits, int top, int bottom) BN_bntest_rand() argument
119 BN_priv_rand_ex(BIGNUM *rnd, int bits, int top, int bottom, unsigned int strength, BN_CTX *ctx) BN_priv_rand_ex() argument
126 BN_priv_rand(BIGNUM *rnd, int bits, int top, int bottom) BN_priv_rand() argument
231 BN_pseudo_rand(BIGNUM *rnd, int bits, int top, int bottom) BN_pseudo_rand() argument
[all...]

Completed in 23 milliseconds

12345678910>>...99