Home
last modified time | relevance | path

Searched refs:pre (Results 101 - 125 of 1672) sorted by relevance

12345678910>>...67

/third_party/python/Lib/idlelib/
H A Dhelp.py59 self.pre = False # Displaying preformatted text?
85 # Avoid extra lines, e.g. after <pre> tags.
88 elif tag == 'span' and class_ == 'pre':
89 self.chartags = 'pre'
112 elif tag == 'pre':
113 self.pre = True
144 elif tag == 'pre':
145 self.pre = False
154 d = data if self.pre else data.replace('\n', ' ')
185 self.tag_configure('pre', fon
[all...]
/third_party/skia/third_party/externals/tint/src/writer/glsl/
H A Dgenerator_impl.cc274 auto pre = line(); in EmitBinary() local
275 pre << "bool " << name << " = "; in EmitBinary()
276 if (!EmitExpression(pre, expr->lhs)) { in EmitBinary()
279 pre << ";"; in EmitBinary()
290 auto pre = line(); in EmitBinary() local
291 pre << name << " = "; in EmitBinary()
292 if (!EmitExpression(pre, expr->rhs)) { in EmitBinary()
295 pre << ";"; in EmitBinary()
635 auto pre = line(b); in EmitWorkgroupAtomicCall()
636 if (!EmitTypeAndName(pre, intrinsi in EmitWorkgroupAtomicCall()
644 auto pre = line(b); EmitWorkgroupAtomicCall() local
655 auto pre = line(b); EmitWorkgroupAtomicCall() local
[all...]
/third_party/typescript/tests/baselines/reference/
H A DparserRealSource14.js479 var pre = function (cur: TypeScript.AST, parent: TypeScript.AST, walker: IAstWalker) { function
509 // The AST walker skips comments, but we might be in one, so check the pre/post comments for this node manually
526 TypeScript.getAstWalkerFactory().walk(script, pre, null, null, ctx);
536 var pre = (cur: TypeScript.AST, parent: TypeScript.AST, walker: TypeScript.IAstWalker): TypeScript.AST => {
552 TypeScript.getAstWalkerFactory().walk(script, pre);
560 var pre = function (cur: TypeScript.AST, parent: TypeScript.AST, walker: TypeScript.IAstWalker) {
573 TypeScript.getAstWalkerFactory().walk(ast, pre, post, null, path);
992 var pre = function (cur, parent, walker) {
1017 // The AST walker skips comments, but we might be in one, so check the pre/post comments for this node manually
1032 TypeScript.getAstWalkerFactory().walk(script, pre, nul
[all...]
H A DparserRealSource12.js36 private pre: IAstWalkCallback,
43 var preAst = this.pre(ast, parent, this);
78 public walk(ast: AST, pre: IAstWalkCallback, post?: IAstWalkCallback, options?: AstWalkOptions, state?: any): AST {
79 return this.getWalker(pre, post, options, state).walk(ast, null)
82 public getWalker(pre: IAstWalkCallback, post?: IAstWalkCallback, options?: AstWalkOptions, state?: any): IAstWalker {
83 return this.getSlowWalker(pre, post, options, state);
86 private getSlowWalker(pre: IAstWalkCallback, post?: IAstWalkCallback, options?: AstWalkOptions, state?: any): IAstWalker {
91 return new AstWalker(this.childrenWalkers, pre, post, options, state);
554 function AstWalker(childrenWalkers, pre, post, options, state) {
556 this.pre
[all...]
/device/soc/rockchip/common/vendor/drivers/phy/
H A Dphy-rockchip-naneng-edp.c91 val = vp[dp->voltage[lane]][dp->pre[lane]].amp; in rockchip_edp_phy_set_voltages()
94 val = vp[dp->voltage[lane]][dp->pre[lane]].amp_scale; in rockchip_edp_phy_set_voltages()
97 val = vp[dp->voltage[lane]][dp->pre[lane]].emp; in rockchip_edp_phy_set_voltages()
177 * If changing voltages is required, check swing and pre-emphasis in rockchip_edp_phy_verify_config()
183 if (dp->voltage[i] > 0x03 || dp->pre[i] > 0x03) { in rockchip_edp_phy_verify_config()
188 * Sum of voltage swing and pre-emphasis levels cannot in rockchip_edp_phy_verify_config()
191 if (dp->voltage[i] + dp->pre[i] > 0x03) { in rockchip_edp_phy_verify_config()
/device/soc/rockchip/rk3588/kernel/drivers/phy/rockchip/
H A Dphy-rockchip-naneng-edp.c96 val = vp[dp->voltage[lane]][dp->pre[lane]].amp; in rockchip_edp_phy_set_voltages()
100 val = vp[dp->voltage[lane]][dp->pre[lane]].amp_scale; in rockchip_edp_phy_set_voltages()
104 val = vp[dp->voltage[lane]][dp->pre[lane]].emp; in rockchip_edp_phy_set_voltages()
198 * If changing voltages is required, check swing and pre-emphasis in rockchip_edp_phy_verify_config()
204 if (dp->voltage[i] > 3 || dp->pre[i] > 3) in rockchip_edp_phy_verify_config()
208 * Sum of voltage swing and pre-emphasis levels cannot in rockchip_edp_phy_verify_config()
211 if (dp->voltage[i] + dp->pre[i] > 3) in rockchip_edp_phy_verify_config()
/third_party/mesa3d/src/gallium/drivers/d3d12/
H A Dd3d12_surface.cpp285 blit_surface(struct pipe_context *pctx, struct d3d12_surface *surface, bool pre) in blit_surface() argument
289 info.src.resource = pre ? surface->base.texture : surface->rgba_texture; in blit_surface()
290 info.dst.resource = pre ? surface->rgba_texture : surface->base.texture; in blit_surface()
291 info.src.format = pre ? surface->base.texture->format : PIPE_FORMAT_R8G8B8A8_UNORM; in blit_surface()
292 info.dst.format = pre ? PIPE_FORMAT_R8G8B8A8_UNORM : surface->base.texture->format; in blit_surface()
/third_party/toybox/toys/pending/
H A Ddd.c129 char *pre = xstrdup(arg); in parse_flags() local
133 while (comma_remove(pre, flags[i].name)) *result |= 1<<i; in parse_flags()
135 if (*pre) error_exit("bad %s=%s", what, pre); in parse_flags()
136 free(pre); in parse_flags()
/third_party/python/Lib/lib2to3/tests/
H A Dtest_parser.py536 for pre in self.prefixes:
537 single = "{p}spamspamspam{s}".format(p=pre, s=pre[-1])
539 triple = "{p}{s}{s}eggs{s}{s}{s}".format(p=pre, s=pre[-1])
/third_party/ltp/pan/cgi/
H A Dresults.cgi26 #print start_html, "<pre>\n";
62 print start_html, "<pre>\n";
86 print "\n</pre>",end_html;
89 #print "\n</pre>\n",end_html;
/third_party/node/src/permission/
H A Dfs_permission.h27 explicit Node(const std::string& pre) in Node()
28 : prefix(pre), wildcard_child(nullptr) {} in Node()
/third_party/node/deps/npm/node_modules/node-gyp/gyp/pylib/packaging/
H A Dutils.py85 if parsed.pre is not None:
86 parts.append("".join(str(x) for x in parsed.pre))
/third_party/pcre2/pcre2/
H A D132html112 # a .nf/.fi section or about to enter one. The point being that the <pre>
113 # and </pre> that delimit literal sections will do the spacing. Always skip
276 print TEMP "<pre>\n";
282 print TEMP "</pre>\n";
/kernel/linux/linux-5.10/drivers/iio/adc/
H A Dqcom-spmi-adc5.c186 unsigned int pre; in adc5_prescaling_from_dt() local
188 for (pre = 0; pre < ARRAY_SIZE(adc5_prescale_ratios); pre++) in adc5_prescaling_from_dt()
189 if (adc5_prescale_ratios[pre].num == num && in adc5_prescaling_from_dt()
190 adc5_prescale_ratios[pre].den == den) in adc5_prescaling_from_dt()
193 if (pre == ARRAY_SIZE(adc5_prescale_ratios)) in adc5_prescaling_from_dt()
196 return pre; in adc5_prescaling_from_dt()
731 ret = of_property_read_u32_array(node, "qcom,pre-scaling", varr, 2); in adc5_get_dt_channel_data()
735 dev_err(dev, "%02x invalid pre in adc5_get_dt_channel_data()
[all...]
H A Dqcom-spmi-vadc.c410 unsigned int pre; in vadc_prescaling_from_dt() local
412 for (pre = 0; pre < ARRAY_SIZE(vadc_prescale_ratios); pre++) in vadc_prescaling_from_dt()
413 if (vadc_prescale_ratios[pre].num == num && in vadc_prescaling_from_dt()
414 vadc_prescale_ratios[pre].den == den) in vadc_prescaling_from_dt()
417 if (pre == ARRAY_SIZE(vadc_prescale_ratios)) in vadc_prescaling_from_dt()
420 return pre; in vadc_prescaling_from_dt()
686 ret = of_property_read_u32_array(node, "qcom,pre-scaling", varr, 2); in vadc_get_dt_channel_data()
690 dev_err(dev, "%02x invalid pre in vadc_get_dt_channel_data()
[all...]
/kernel/linux/linux-6.6/drivers/iio/adc/
H A Dqcom-spmi-vadc.c412 unsigned int pre; in vadc_prescaling_from_dt() local
414 for (pre = 0; pre < ARRAY_SIZE(vadc_prescale_ratios); pre++) in vadc_prescaling_from_dt()
415 if (vadc_prescale_ratios[pre].numerator == numerator && in vadc_prescaling_from_dt()
416 vadc_prescale_ratios[pre].denominator == denominator) in vadc_prescaling_from_dt()
419 if (pre == ARRAY_SIZE(vadc_prescale_ratios)) in vadc_prescaling_from_dt()
422 return pre; in vadc_prescaling_from_dt()
703 ret = fwnode_property_read_u32_array(fwnode, "qcom,pre-scaling", varr, 2); in vadc_get_fw_channel_data()
707 dev_err(dev, "%02x invalid pre in vadc_get_fw_channel_data()
[all...]
/third_party/ntfs-3g/ntfsprogs/
H A Dntfsundelete.c167 regex_t pre; in patmatch() local
173 pre = *re; in patmatch()
174 if (pre->flags & REG_ICASE) { in patmatch()
178 || ((c = le16_to_cpu(*f)) < pre->upcase_len in patmatch()
179 ? pre->upcase[c] : *f) == *p)) { in patmatch()
229 regex_t pre; in regcomp() local
236 pre = (regex_t)malloc(sizeof(struct REGEX) in regcomp()
238 *re = pre; in regcomp()
239 if (pre) { in regcomp()
240 pre in regcomp()
[all...]
/kernel/linux/linux-5.10/include/linux/phy/
H A Dphy-dp.h49 * @pre:
56 unsigned int pre[4]; member
88 * and pre-emphasis to requested values. Only lanes specified
/kernel/linux/linux-6.6/include/linux/phy/
H A Dphy-dp.h49 * @pre:
56 unsigned int pre[4]; member
88 * and pre-emphasis to requested values. Only lanes specified
/kernel/linux/linux-6.6/drivers/media/i2c/
H A Dar0521.c130 u16 pre; member
248 u16 pre = 1, mult = 1, new_pre; in calc_pll() local
259 break; /* Maximum, larger pre won't work either */ in calc_pll()
265 break; /* Larger pre won't work either */ in calc_pll()
270 pre = new_pre; in calc_pll()
275 pll = div64_round(sensor->extclk_freq * (u64)mult, pre); in calc_pll()
276 *pre_ptr = pre; in calc_pll()
284 u16 pre, mult; in ar0521_calc_pll() local
339 calc_pll(sensor, vco, &pre, &mult); in ar0521_calc_pll()
341 sensor->pll.pre in ar0521_calc_pll()
[all...]
/kernel/linux/linux-6.6/drivers/gpu/drm/i915/
H A Di915_driver.c165 * We don't keep the workarounds for pre-production hardware, so we expect our
169 * Our policy for removing pre-production workarounds is to keep the
176 bool pre = false; in intel_detect_preproduction_hw() local
178 pre |= IS_HASWELL_EARLY_SDV(dev_priv); in intel_detect_preproduction_hw()
179 pre |= IS_SKYLAKE(dev_priv) && INTEL_REVID(dev_priv) < 0x6; in intel_detect_preproduction_hw()
180 pre |= IS_BROXTON(dev_priv) && INTEL_REVID(dev_priv) < 0xA; in intel_detect_preproduction_hw()
181 pre |= IS_KABYLAKE(dev_priv) && INTEL_REVID(dev_priv) < 0x1; in intel_detect_preproduction_hw()
182 pre |= IS_GEMINILAKE(dev_priv) && INTEL_REVID(dev_priv) < 0x3; in intel_detect_preproduction_hw()
183 pre |= IS_ICELAKE(dev_priv) && INTEL_REVID(dev_priv) < 0x7; in intel_detect_preproduction_hw()
184 pre | in intel_detect_preproduction_hw()
[all...]
/kernel/linux/linux-5.10/drivers/atm/
H A Deni.c1250 static int comp_tx(struct eni_dev *eni_dev,int *pcr,int reserved,int *pre, in comp_tx() argument
1256 if (unlimited) *pre = *res = 0; in comp_tx()
1261 for (*pre = 0; *pre < 3; (*pre)++) in comp_tx()
1262 if (TS_CLOCK/pre_div[*pre]/64 <= *pcr) break; in comp_tx()
1263 div = pre_div[*pre]**pcr; in comp_tx()
1271 for (*pre = 3; *pre >= 0; (*pre) in comp_tx()
1296 int pre,res,order; reserve_or_set_tx() local
[all...]
/kernel/linux/linux-6.6/drivers/atm/
H A Deni.c1250 static int comp_tx(struct eni_dev *eni_dev,int *pcr,int reserved,int *pre, in comp_tx() argument
1256 if (unlimited) *pre = *res = 0; in comp_tx()
1261 for (*pre = 0; *pre < 3; (*pre)++) in comp_tx()
1262 if (TS_CLOCK/pre_div[*pre]/64 <= *pcr) break; in comp_tx()
1263 div = pre_div[*pre]**pcr; in comp_tx()
1271 for (*pre = 3; *pre >= 0; (*pre) in comp_tx()
1296 int pre,res,order; reserve_or_set_tx() local
[all...]
/kernel/linux/linux-6.6/fs/btrfs/
H A Dextent_map.c964 * Split off the first pre bytes from the extent_map at [start, start + len],
969 int split_extent_map(struct btrfs_inode *inode, u64 start, u64 len, u64 pre, in split_extent_map() argument
979 ASSERT(pre != 0); in split_extent_map()
980 ASSERT(pre < len); in split_extent_map()
1011 split_pre->len = pre; in split_extent_map()
1025 * [em->start, em->start + pre] in split_extent_map()
1029 split_mid->start = em->start + pre; in split_extent_map()
1030 split_mid->len = em->len - pre; in split_extent_map()
1032 split_mid->block_start = em->block_start + pre; in split_extent_map()
/third_party/node/deps/v8/src/date/
H A Ddateparser.cc152 int DateParser::KeywordTable::Lookup(const uint32_t* pre, int len) { in Lookup() argument
156 while (j < kPrefixLength && pre[j] == static_cast<uint32_t>(array[i][j])) { in Lookup()

Completed in 23 milliseconds

12345678910>>...67