/kernel/linux/linux-6.6/drivers/input/keyboard/ |
H A D | mcs_touchkey.c | 62 int val; in mcs_touchkey_interrupt() local 64 val = i2c_smbus_read_byte_data(client, chip->status_reg); in mcs_touchkey_interrupt() 65 if (val < 0) { in mcs_touchkey_interrupt() 66 dev_err(&client->dev, "i2c read error [%d]\n", val); in mcs_touchkey_interrupt() 70 pressed = (val & (1 << chip->pressbit)) >> chip->pressbit; in mcs_touchkey_interrupt() 76 key_val = val & (0xff >> (8 - chip->pressbit)); in mcs_touchkey_interrupt() 164 unsigned int val = MCS_KEY_VAL(pdata->keymap[i]); in mcs_touchkey_probe() local 167 data->keycodes[val] = code; in mcs_touchkey_probe()
|
/kernel/linux/linux-6.6/sound/isa/sb/ |
H A D | sb_common.c | 30 int snd_sbdsp_command(struct snd_sb *chip, unsigned char val) in snd_sbdsp_command() argument 34 snd_printk(KERN_DEBUG "command 0x%x\n", val); in snd_sbdsp_command() 38 outb(val, SBP(chip, COMMAND)); in snd_sbdsp_command() 41 snd_printd("%s [0x%lx]: timeout (0x%x)\n", __func__, chip->port, val); in snd_sbdsp_command() 47 int val; in snd_sbdsp_get_byte() local 51 val = inb(SBP(chip, READ)); in snd_sbdsp_get_byte() 53 snd_printk(KERN_DEBUG "get_byte 0x%x\n", val); in snd_sbdsp_get_byte() 55 return val; in snd_sbdsp_get_byte()
|
/third_party/ffmpeg/libavcodec/ |
H A D | mss1.c | 71 int val = (((c->value - c->low + 1) << bits) - 1) / range; in arith_get_bits() local 72 int prob = range * val; in arith_get_bits() 79 return val; in arith_get_bits() 85 int val = ((c->value - c->low + 1) * mod_val - 1) / range; in arith_get_number() local 86 int prob = range * val; in arith_get_number() 93 return val; in arith_get_number() 99 int val = ((c->value - c->low + 1) * probs[0] - 1) / range; in arith_get_prob() local 102 while (probs[sym] > val) in arith_get_prob()
|
/third_party/ffmpeg/libavformat/ |
H A D | avio.h | 429 void avio_wl64(AVIOContext *s, uint64_t val); 430 void avio_wb64(AVIOContext *s, uint64_t val); 431 void avio_wl32(AVIOContext *s, unsigned int val); 432 void avio_wb32(AVIOContext *s, unsigned int val); 433 void avio_wl24(AVIOContext *s, unsigned int val); 434 void avio_wb24(AVIOContext *s, unsigned int val); 435 void avio_wl16(AVIOContext *s, unsigned int val); 436 void avio_wb16(AVIOContext *s, unsigned int val);
|
/third_party/lzma/CPP/7zip/UI/Common/ |
H A D | HashCalc.h | 154 bool ParseFlagCharOption(wchar_t c, bool val)
in ParseFlagCharOption() 157 if (c == 'z') HashMode_Zero.SetVal_as_Defined(val);
in ParseFlagCharOption() 158 else if (c == 't') HashMode_Tag.SetVal_as_Defined(val);
in ParseFlagCharOption() 159 else if (c == 'd') HashMode_Dirs.SetVal_as_Defined(val);
in ParseFlagCharOption() 160 else if (c == 'h') HashMode_OnlyHash.SetVal_as_Defined(val);
in ParseFlagCharOption() 170 bool val = true;
in ParseString() local 176 val = false;
in ParseString() 180 if (!ParseFlagCharOption(c, val))
in ParseString()
|
/third_party/node/lib/internal/dns/ |
H A D | utils.js | 89 return ArrayPrototypeMap(this._handle.getServers() || [], (val) => { 90 if (!val[1] || val[1] === IANA_DNS_PORT) 91 return val[0]; 93 const host = isIP(val[0]) === 6 ? `[${val[0]}]` : val[0]; 94 return `${host}:${val[1]}`;
|
/third_party/node/test/parallel/ |
H A D | test-util-promisify.js | 109 function fn(err, val, callback) { 110 callback(err, val); 118 function fn(err, val, callback) { 119 callback(err, val); 127 function fn(err, val, callback) { 128 callback(err, val); 146 o.fn().then(common.mustCall((val) => assert(val)));
|
/third_party/node/deps/v8/third_party/zlib/contrib/optimizations/ |
H A D | inffast_chunk.c | 149 Tracevv((stderr, here->val >= 0x20 && here->val < 0x7f ? 151 "inflate: literal 0x%02x\n", here->val)); 152 *out++ = (unsigned char)(here->val); 155 len = (unsigned)(here->val); 192 dist = (unsigned)(here->val); 298 here = dcode + here->val + (hold & ((1U << op) - 1)); 308 here = lcode + here->val + (hold & ((1U << op) - 1));
|
/third_party/node/deps/v8/third_party/zlib/ |
H A D | inffast.c | 121 Tracevv((stderr, here->val >= 0x20 && here->val < 0x7f ? 123 "inflate: literal 0x%02x\n", here->val)); 124 *out++ = (unsigned char)(here->val); 127 len = (unsigned)(here->val); 152 dist = (unsigned)(here->val); 271 here = dcode + here->val + (hold & ((1U << op) - 1)); 281 here = lcode + here->val + (hold & ((1U << op) - 1));
|
/third_party/node/deps/zlib/ |
H A D | inffast.c | 118 Tracevv((stderr, here->val >= 0x20 && here->val < 0x7f ? in inflate_fast() 120 "inflate: literal 0x%02x\n", here->val)); in inflate_fast() 121 *out++ = (unsigned char)(here->val); in inflate_fast() 124 len = (unsigned)(here->val); in inflate_fast() 149 dist = (unsigned)(here->val); in inflate_fast() 268 here = dcode + here->val + (hold & ((1U << op) - 1)); in inflate_fast() 278 here = lcode + here->val + (hold & ((1U << op) - 1)); in inflate_fast()
|
/third_party/skia/third_party/externals/zlib/contrib/optimizations/ |
H A D | inffast_chunk.c | 149 Tracevv((stderr, here.val >= 0x20 && here.val < 0x7f ? 151 "inflate: literal 0x%02x\n", here.val)); 152 *out++ = (unsigned char)(here.val); 155 len = (unsigned)(here.val); 192 dist = (unsigned)(here.val); 298 here = dcode[here.val + (hold & ((1U << op) - 1))]; 308 here = lcode[here.val + (hold & ((1U << op) - 1))];
|
/third_party/skia/third_party/externals/zlib/ |
H A D | inffast.c | 121 Tracevv((stderr, here.val >= 0x20 && here.val < 0x7f ? 123 "inflate: literal 0x%02x\n", here.val)); 124 *out++ = (unsigned char)(here.val); 127 len = (unsigned)(here.val); 152 dist = (unsigned)(here.val); 271 here = dcode[here.val + (hold & ((1U << op) - 1))]; 281 here = lcode[here.val + (hold & ((1U << op) - 1))];
|
/third_party/typescript/tests/baselines/reference/ |
H A D | declFileGenericType.js | 17 constructor(public val: T) { } 29 export var x = (new C.D<C.A<C.B>>(new C.A<C.B>())).val; 88 function D(val) {
89 this.val = val;
99 exports.x = (new C.D(new C.A())).val;
127 val: T;
128 constructor(val: T);
|
/third_party/protobuf/src/google/protobuf/compiler/cpp/ |
H A D | cpp_map_field.cc | 58 const FieldDescriptor* val = in SetMessageVariables() local 61 switch (val->cpp_type()) { in SetMessageVariables() 63 (*variables)["val_cpp"] = FieldMessageTypeName(val, options); in SetMessageVariables() 66 (*variables)["val_cpp"] = ClassName(val->enum_type(), true); in SetMessageVariables() 69 (*variables)["val_cpp"] = PrimitiveTypeName(options, val->cpp_type()); in SetMessageVariables() 74 "TYPE_" + ToUpper(DeclaredTypeMethodName(val->type())); in SetMessageVariables() 85 if (!IsProto3Field(descriptor) && val->type() == FieldDescriptor::TYPE_ENUM) { in SetMessageVariables() 86 const EnumValueDescriptor* default_value = val->default_value_enum(); in SetMessageVariables()
|
/third_party/rust/crates/syn/codegen/src/ |
H A D | visit.rs | 40 let val = visit(t, features, defs, &operand)?; in visit() 44 #val; in visit() 50 let val = visit(&p.element, features, defs, &operand)?; in visit() 55 #val; in visit() 61 let val = visit(t, features, defs, &it)?; in visit() 65 #val; in visit() 75 let val = visit(elem, features, defs, &it).unwrap_or_else(|| noop_visit(&it)); in visit() 76 code.extend(val); in visit()
|
/third_party/zlib/ |
H A D | inffast.c | 114 Tracevv((stderr, here->val >= 0x20 && here->val < 0x7f ? in inflate_fast() 116 "inflate: literal 0x%02x\n", here->val)); in inflate_fast() 117 *out++ = (unsigned char)(here->val); in inflate_fast() 120 len = (unsigned)(here->val); in inflate_fast() 145 dist = (unsigned)(here->val); in inflate_fast() 264 here = dcode + here->val + (hold & ((1U << op) - 1)); in inflate_fast() 274 here = lcode + here->val + (hold & ((1U << op) - 1)); in inflate_fast()
|
/kernel/linux/linux-5.10/drivers/clk/st/ |
H A D | clkgen.h | 29 unsigned long val) in clkgen_write() 32 ~(field->mask << field->shift)) | (val << field->shift), in clkgen_write() 47 #define CLKGEN_WRITE(pll, field, val) clkgen_write(pll->regs_base, \ 48 &pll->data->field, val) 28 clkgen_write(void __iomem *base, struct clkgen_field *field, unsigned long val) clkgen_write() argument
|
/kernel/linux/linux-5.10/arch/loongarch/include/asm/ |
H A D | qspinlock.h | 12 extern void native_queued_spin_lock_slowpath(struct qspinlock *lock, u32 val); 14 extern void __pv_queued_spin_lock_slowpath(struct qspinlock *lock, u32 val); 24 static inline void queued_spin_lock_slowpath(struct qspinlock *lock, u32 val) in queued_spin_lock_slowpath() argument 26 pv_queued_spin_lock_slowpath(lock, val); in queued_spin_lock_slowpath()
|
/kernel/linux/linux-5.10/arch/arm/mach-iop32x/ |
H A D | irq.c | 22 static void intctl_write(u32 val) in intctl_write() argument 24 asm volatile("mcr p6, 0, %0, c0, c0, 0" : : "r" (val)); in intctl_write() 27 static void intstr_write(u32 val) in intstr_write() argument 29 asm volatile("mcr p6, 0, %0, c4, c0, 0" : : "r" (val)); in intstr_write()
|
/kernel/linux/linux-5.10/arch/arm/plat-orion/include/plat/ |
H A D | pcie.h | 25 u32 devfn, int where, int size, u32 *val); 27 u32 devfn, int where, int size, u32 *val); 29 u32 devfn, int where, int size, u32 *val); 31 u32 devfn, int where, int size, u32 val);
|
/kernel/linux/linux-5.10/arch/sh/include/asm/ |
H A D | cmpxchg-xchg.h | 40 static inline unsigned long xchg_u16(volatile u16 *m, unsigned long val) in xchg_u16() argument 42 return __xchg_cmpxchg(m, val, sizeof *m); in xchg_u16() 45 static inline unsigned long xchg_u8(volatile u8 *m, unsigned long val) in xchg_u8() argument 47 return __xchg_cmpxchg(m, val, sizeof *m); in xchg_u8()
|
/kernel/linux/linux-5.10/arch/x86/include/asm/ |
H A D | bug.h | 27 # define __BUG_REL(val) ".long " __stringify(val) 29 # define __BUG_REL(val) ".long " __stringify(val) " - 2b"
|
/kernel/linux/linux-5.10/arch/x86/um/os-Linux/ |
H A D | tls.c | 25 int val[] = {GDT_ENTRY_TLS_MIN_I386, GDT_ENTRY_TLS_MIN_X86_64}; in check_host_supports_tls() local 28 for (i = 0; i < ARRAY_SIZE(val); i++) { in check_host_supports_tls() 30 info.entry_number = val[i]; in check_host_supports_tls() 33 *tls_min = val[i]; in check_host_supports_tls()
|
/kernel/linux/linux-5.10/drivers/net/dsa/mv88e6xxx/ |
H A D | port_hidden.c | 19 int port, int reg, u16 val) in mv88e6xxx_port_hidden_write() 25 MV88E6XXX_PORT_RESERVED_1A, val); in mv88e6xxx_port_hidden_write() 48 int reg, u16 *val) in mv88e6xxx_port_hidden_read() 69 MV88E6XXX_PORT_RESERVED_1A, val); in mv88e6xxx_port_hidden_read() 18 mv88e6xxx_port_hidden_write(struct mv88e6xxx_chip *chip, int block, int port, int reg, u16 val) mv88e6xxx_port_hidden_write() argument 47 mv88e6xxx_port_hidden_read(struct mv88e6xxx_chip *chip, int block, int port, int reg, u16 *val) mv88e6xxx_port_hidden_read() argument
|
/kernel/linux/linux-6.6/arch/arm/plat-orion/include/plat/ |
H A D | pcie.h | 25 u32 devfn, int where, int size, u32 *val); 27 u32 devfn, int where, int size, u32 *val); 29 u32 devfn, int where, int size, u32 *val); 31 u32 devfn, int where, int size, u32 val);
|