Home
last modified time | relevance | path

Searched refs:upper (Results 126 - 150 of 890) sorted by relevance

12345678910>>...36

/kernel/linux/linux-5.10/arch/s390/tools/
H A Dgen_opcode_table.c26 char upper[STRING_SIZE_MAX]; member
166 insn.upper[i] = toupper((unsigned char)insn.name[i]); in read_instructions()
216 printf("\tLONG_INSN_%s,\n", insn->upper); in print_long_insn()
226 printf("\t[LONG_INSN_%s] = \"%s\", \\\n", insn->upper, insn->name); in print_long_insn()
242 printf(".offset = LONG_INSN_%s ", insn->upper); in print_opcode()
/kernel/linux/linux-6.6/arch/s390/tools/
H A Dgen_opcode_table.c26 char upper[STRING_SIZE_MAX]; member
166 insn.upper[i] = toupper((unsigned char)insn.name[i]); in read_instructions()
216 printf("\tLONG_INSN_%s,\n", insn->upper); in print_long_insn()
226 printf("\t[LONG_INSN_%s] = \"%s\", \\\n", insn->upper, insn->name); in print_long_insn()
242 printf(".offset = LONG_INSN_%s ", insn->upper); in print_opcode()
/kernel/linux/linux-5.10/scripts/
H A Dspdxcheck.py49 lid = l.split(':')[1].strip().upper()
56 exception = l.split(':')[1].strip().upper()
60 for lic in l.split(':')[1].upper().strip().replace(' ', '').replace('\t', '').split(','):
101 id = tok.value.upper()
134 val = tok.value.upper()
/third_party/python/Lib/test/
H A Dtest_slice.py42 # Find lower and upper bounds for start and stop.
44 upper = length - 1 if step < 0 else length
48 start = upper if step < 0 else lower
51 start = max(start + length, lower) if start < 0 else min(start, upper)
55 stop = lower if step < 0 else upper
58 stop = max(stop + length, lower) if stop < 0 else min(stop, upper)
/kernel/linux/linux-5.10/fs/fat/
H A Dnamei_vfat.c268 upper:1, member
273 (x)->upper = 1; \
303 info->upper = 0; in to_shortname_char()
311 info->upper = 0; in to_shortname_char()
315 info->upper = 0; in to_shortname_char()
452 return (base_info.upper && ext_info.upper); in vfat_create_shortname()
454 if ((base_info.upper || base_info.lower) && in vfat_create_shortname()
455 (ext_info.upper || ext_info.lower)) { in vfat_create_shortname()
456 if (!base_info.upper in vfat_create_shortname()
[all...]
/kernel/linux/linux-6.6/drivers/thermal/
H A Dthermal_core.c610 * @upper: the Maximum cooling state for this trip point.
611 * THERMAL_NO_LIMIT means no upper limit,
629 unsigned long upper, unsigned long lower, in thermal_zone_bind_cooling_device()
657 /* lower default 0, upper default max_state */ in thermal_zone_bind_cooling_device()
660 if (upper == THERMAL_NO_LIMIT) { in thermal_zone_bind_cooling_device()
661 upper = cdev->max_state; in thermal_zone_bind_cooling_device()
667 if (lower > upper || upper > cdev->max_state) in thermal_zone_bind_cooling_device()
676 dev->upper = upper; in thermal_zone_bind_cooling_device()
626 thermal_zone_bind_cooling_device(struct thermal_zone_device *tz, int trip_index, struct thermal_cooling_device *cdev, unsigned long upper, unsigned long lower, unsigned int weight) thermal_zone_bind_cooling_device() argument
[all...]
/third_party/python/Tools/unicode/
H A Dmakeunicodedata.py440 upper = int(record.simple_uppercase_mapping, 16)
442 upper = char
450 title = upper
452 sc = ([lower], [title], [upper])
454 if upper == lower == title:
455 upper = lower = title = 0
457 upper = upper - char
460 assert (abs(upper) <= 2147483647 and
475 upper
[all...]
/third_party/mesa3d/docs/_exts/
H A Dformatting.py11 envvar = envvar.strip().upper()
23 opcode = opcode.strip().upper()
/third_party/python/Tools/scripts/
H A Dmake_ctype.py24 method = lambda: c.isdigit() or c.upper() in "ABCDEF"
80 i = ord(c.upper())
/third_party/skia/third_party/externals/tint/fuzzers/
H A Drandom_generator.h43 /// @param upper - upper bound of integer generated
44 /// @returns i, where lower <= i < upper
45 uint32_t GetUInt32(uint32_t lower, uint32_t upper);
54 /// @param upper - upper bound of integer generated
55 /// @returns i, where lower <= i < upper
56 uint64_t GetUInt64(uint64_t lower, uint64_t upper);
/kernel/linux/linux-5.10/fs/overlayfs/
H A Doverlayfs.h38 /* Pure upper dir that may contain non pure upper entries */
72 /* Is the real inode encoded in fid an upper inode? */
412 struct dentry *ovl_lookup_index(struct ovl_fs *ofs, struct dentry *upper,
419 static inline int ovl_verify_origin(struct ovl_fs *ofs, struct dentry *upper, in ovl_verify_origin() argument
422 return ovl_verify_set_fh(ofs, upper, OVL_XATTR_ORIGIN, origin, in ovl_verify_origin()
427 struct dentry *upper, bool set) in ovl_verify_upper()
429 return ovl_verify_set_fh(ofs, index, OVL_XATTR_UPPER, upper, true, set); in ovl_verify_upper()
436 void ovl_cleanup_whiteouts(struct dentry *upper, struct list_head *list);
447 * Non-merge dir may contain whiteouts from a time it was a merge upper, befor
426 ovl_verify_upper(struct ovl_fs *ofs, struct dentry *index, struct dentry *upper, bool set) ovl_verify_upper() argument
[all...]
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/d3d/d3d9/
H A DTextureStorage9.cpp234 angle::ComPtr<IDirect3DSurface9> upper = nullptr; in generateMipmap() local
236 &upper)); in generateMipmap()
242 ASSERT(upper && lower); in generateMipmap()
243 return mRenderer->boxFilter(GetImplAs<Context9>(context), upper.Get(), lower.Get()); in generateMipmap()
517 angle::ComPtr<IDirect3DSurface9> upper = nullptr; in generateMipmap() local
519 &upper)); in generateMipmap()
525 ASSERT(upper && lower); in generateMipmap()
526 return mRenderer->boxFilter(GetImplAs<Context9>(context), upper.Get(), lower.Get()); in generateMipmap()
/kernel/linux/linux-5.10/drivers/media/platform/vsp1/
H A Dvsp1_hgt.c139 u8 upper; in hgt_configure_stream() local
160 upper = hgt->hue_areas[i*2 + 1]; in hgt_configure_stream()
163 (upper << VI6_HGT_HUE_AREA_UPPER_SHIFT)); in hgt_configure_stream()
/kernel/linux/linux-6.6/drivers/media/platform/renesas/vsp1/
H A Dvsp1_hgt.c139 u8 upper; in hgt_configure_stream() local
160 upper = hgt->hue_areas[i*2 + 1]; in hgt_configure_stream()
163 (upper << VI6_HGT_HUE_AREA_UPPER_SHIFT)); in hgt_configure_stream()
/third_party/mesa3d/src/intel/isl/
H A Dgen_format_layout.py160 self.type = self._types[grouped.group('type')].upper()
211 self.colorspace = line[13].strip().upper()
216 self.txc = line[14].strip().upper() or 'NONE'
/third_party/icu/icu4c/source/common/
H A Ducasemap.cpp675 uint32_t upper = data & UPPER_MASK; in toUpper() local
683 (upper == 0x399 || upper == 0x3A5)) { in toUpper()
711 if (upper == 0x397 && in toUpper()
719 upper = 0x389; // Preserve the precomposed form. in toUpper()
725 if (upper == 0x399) { in toUpper()
726 upper = 0x3AA; in toUpper()
728 } else if (upper == 0x3A5) { in toUpper()
729 upper = 0x3AB; in toUpper()
739 U_ASSERT(0x370 <= upper in toUpper()
[all...]
/third_party/node/deps/icu-small/source/common/
H A Ducasemap.cpp675 uint32_t upper = data & UPPER_MASK; in toUpper() local
685 (upper == 0x399 || upper == 0x3A5)) { in toUpper()
716 if (upper == 0x397 && in toUpper()
724 upper = 0x389; // Preserve the precomposed form. in toUpper()
730 if (upper == 0x399) { in toUpper()
731 upper = 0x3AA; in toUpper()
733 } else if (upper == 0x3A5) { in toUpper()
734 upper = 0x3AB; in toUpper()
744 U_ASSERT(0x370 <= upper in toUpper()
[all...]
/kernel/linux/linux-6.6/fs/overlayfs/
H A Doverlayfs.h46 /* Pure upper dir that may contain non pure upper entries */
102 /* Is the real inode encoded in fid an upper inode? */
173 * When changing ownership of an upper object map the intended ownership
174 * according to the upper layer's idmapping. When an upper mount idmaps files
177 * the upper mount.
179 * called on an idmapped upper mount the value written to disk - i.e., the
182 * The mnt idmapping helpers are nops if the upper layer isn't idmapped.
643 struct dentry *ovl_lookup_index(struct ovl_fs *ofs, struct dentry *upper,
651 ovl_verify_origin(struct ovl_fs *ofs, struct dentry *upper, struct dentry *origin, bool set) ovl_verify_origin() argument
658 ovl_verify_upper(struct ovl_fs *ofs, struct dentry *index, struct dentry *upper, bool set) ovl_verify_upper() argument
[all...]
/kernel/linux/linux-5.10/drivers/gpu/drm/i915/
H A Dintel_uncore.h339 u32 upper, lower, old_upper, loop = 0; in intel_uncore_read64_2x32() local
340 upper = intel_uncore_read(uncore, upper_reg); in intel_uncore_read64_2x32()
342 old_upper = upper; in intel_uncore_read64_2x32()
344 upper = intel_uncore_read(uncore, upper_reg); in intel_uncore_read64_2x32()
345 } while (upper != old_upper && loop++ < 2); in intel_uncore_read64_2x32()
346 return (u64)upper << 32 | lower; in intel_uncore_read64_2x32()
/kernel/linux/linux-6.6/drivers/net/dsa/mv88e6xxx/
H A Dglobal1_atu.c179 u16 val = 0, upper = 0, op = 0; in mv88e6xxx_g1_atu_fid_read() local
194 &upper); in mv88e6xxx_g1_atu_fid_read()
198 upper = (upper >> 8) & 0x00f0; in mv88e6xxx_g1_atu_fid_read()
201 upper = (op >> 4) & 0x30; in mv88e6xxx_g1_atu_fid_read()
205 val = (op & 0xf) | upper; in mv88e6xxx_g1_atu_fid_read()
/kernel/linux/linux-6.6/drivers/gpu/drm/i915/
H A Dintel_uncore.h461 u32 upper, lower, old_upper, loop = 0; in intel_uncore_read64_2x32() local
474 upper = intel_uncore_read_fw(uncore, upper_reg); in intel_uncore_read64_2x32()
476 old_upper = upper; in intel_uncore_read64_2x32()
478 upper = intel_uncore_read_fw(uncore, upper_reg); in intel_uncore_read64_2x32()
479 } while (upper != old_upper && loop++ < 2); in intel_uncore_read64_2x32()
484 return (u64)upper << 32 | lower; in intel_uncore_read64_2x32()
/kernel/linux/linux-5.10/arch/riscv/net/
H A Dbpf_jit_comp64.c135 s64 upper = (val + (1 << 11)) >> 12; in emit_imm() local
143 if (upper) in emit_imm()
144 emit_lui(rd, upper, ctx); in emit_imm()
146 if (!upper) { in emit_imm()
155 shift = __ffs(upper); in emit_imm()
156 upper >>= shift; in emit_imm()
159 emit_imm(rd, upper, ctx); in emit_imm()
249 s64 upper, lower; in emit_branch() local
277 upper = (rvoff + (1 << 11)) >> 12; in emit_branch()
281 emit(rv_auipc(RV_REG_T1, upper), ct in emit_branch()
400 s64 upper, lower; emit_jump_and_link() local
[all...]
/kernel/linux/linux-5.10/arch/powerpc/include/asm/
H A Dtime.h72 static inline void set_tb(unsigned int upper, unsigned int lower) in set_tb() argument
75 mtspr(SPRN_TBWU, upper); in set_tb()
/third_party/icu/icu4c/source/samples/case/
H A Dcase.cpp57 UnicodeString upper(uppercase); in main()
72 string = upper; in main()
79 string.toUpper(Locale("tr", "TR")); /* Turkish upper case map string = in main()
/third_party/node/tools/
H A Dgenv8constants.py70 outfile.write("#define %s -0x%x\n" % (curr_sym.upper(), wrapped_val))
72 outfile.write("#define %s 0x%x\n" % (curr_sym.upper(), wrapped_val))

Completed in 22 milliseconds

12345678910>>...36