/third_party/mesa3d/src/asahi/compiler/ |
H A D | agx_optimizer.c | 101 agx_instr *def = defs[src.value]; in agx_optimizer_fmov() 118 agx_instr *def = defs[src.value]; in agx_optimizer_inline_imm() 121 uint8_t value = def->imm; in agx_optimizer_inline_imm() local 134 value = agx_minifloat_encode(f); in agx_optimizer_inline_imm() 135 } else if (value != def->imm) { in agx_optimizer_inline_imm() 140 I->src[s].value = value; in agx_optimizer_inline_imm() 163 agx_instr *def = defs[src.value]; in agx_optimizer_copyprop() 190 defs[I->dest[d].value] = I; in agx_optimizer_forward() 219 unsigned v = I->src[s].value; in agx_optimizer_backward() [all...] |
/third_party/node/test/parallel/ |
H A D | test-util-promisify.js | 15 promise.then(common.mustCall((value) => { 16 assert.deepStrictEqual(value, fs.statSync(__filename)); 85 promisify(fn)().then(common.mustCall((value) => { 86 assert.strictEqual(value, 'foo'); 94 promisify(fn)().then(common.mustCall((value) => { 95 assert.strictEqual(value, undefined); 103 promisify(fn)().then(common.mustCall((value) => { 104 assert.strictEqual(value, undefined); 112 promisify(fn)(null, 42).then(common.mustCall((value) => { 113 assert.strictEqual(value, 4 [all...] |
/third_party/node/deps/v8/include/v8-include/ |
H A D | v8-array-buffer.h | 327 V8_INLINE static ArrayBuffer* Cast(Value* value) { in Cast() argument 329 CheckCast(value); in Cast() 331 return static_cast<ArrayBuffer*>(value); in Cast() 383 V8_INLINE static ArrayBufferView* Cast(Value* value) { in Cast() argument 385 CheckCast(value); in Cast() 387 return static_cast<ArrayBufferView*>(value); in Cast() 409 V8_INLINE static DataView* Cast(Value* value) { in Cast() argument 411 CheckCast(value); in Cast() 413 return static_cast<DataView*>(value); in Cast() 496 V8_INLINE static SharedArrayBuffer* Cast(Value* value) { in Cast() argument [all...] |
/third_party/node/deps/v8/src/diagnostics/ |
H A D | eh-frame.h | 138 void WriteSLeb128(int32_t value); 139 void WriteULeb128(uint32_t value); 141 void WriteByte(byte value) { eh_frame_buffer_.push_back(value); } in WriteByte() argument 148 void WriteInt16(uint16_t value) { in WriteInt16() argument 149 WriteBytes(reinterpret_cast<const byte*>(&value), sizeof(value)); in WriteInt16() 151 void WriteInt32(uint32_t value) { in WriteInt32() argument 152 WriteBytes(reinterpret_cast<const byte*>(&value), sizeof(value)); in WriteInt32() 154 PatchInt32(int base_offset, uint32_t value) PatchInt32() argument [all...] |
/third_party/node/deps/v8/src/heap/cppgc/ |
H A D | trace-event.h | 25 // value with zero or more of the following bits. Used in this class only. 26 // The TRACE_EVENT macros should only use the value as a bool. 75 #define TRACE_EVENT_API_ATOMIC_STORE(var, value) \ 76 v8::base::Relaxed_Store(&(var), (value)) 160 // Define SetTraceValue for each allowed type. It stores the type and value 166 std::is_integral<T>::value || std::is_enum<T>::value, void>::type 167 SetTraceValue(T arg, unsigned char* type, uint64_t* value) { 168 *type = std::is_same<T, bool>::value 170 : std::is_signed<T>::value [all...] |
/third_party/node/deps/v8/src/utils/ |
H A D | ostreams.h | 104 explicit AsUC16(uint16_t v) : value(v) {} in AsUC16() 105 uint16_t value; member 109 explicit AsUC32(int32_t v) : value(v) {} in AsUC32() 110 int32_t value; member 114 explicit AsReversiblyEscapedUC16(uint16_t v) : value(v) {} in AsReversiblyEscapedUC16() 115 uint16_t value; member 119 explicit AsEscapedUC16ForJSON(uint16_t v) : value(v) {} in AsEscapedUC16ForJSON() 120 uint16_t value; member 123 // Output the given value as hex, with a minimum width and optional prefix (0x). 125 // {min_width} and the value ar 129 uint64_t value; global() member 147 uint64_t value; global() member [all...] |
/third_party/node/deps/openssl/openssl/crypto/conf/ |
H A D | conf_api.c | 42 return ((STACK_OF(CONF_VALUE) *)v->value); in STACK_OF() 45 int _CONF_add_string(CONF *conf, CONF_VALUE *section, CONF_VALUE *value) in _CONF_add_string() argument 50 ts = (STACK_OF(CONF_VALUE) *)section->value; in _CONF_add_string() 52 value->section = section->section; in _CONF_add_string() 53 if (!sk_CONF_VALUE_push(ts, value)) in _CONF_add_string() 56 v = lh_CONF_VALUE_insert(conf->data, value); in _CONF_add_string() 60 OPENSSL_free(v->value); in _CONF_add_string() 83 return v->value; in _CONF_get_string() 95 return v->value; in _CONF_get_string() 173 sk = (STACK_OF(CONF_VALUE) *)a->value; in value_free_stack_doall() [all...] |
/third_party/python/Lib/test/ |
H A D | _test_embed_set_config.py | 33 for key, value in kwargs.items(): 34 self.assertEqual(getattr(sys, key), value, 35 (key, value)) 145 for key, value in tests: 146 config = self.old_config | {key: value} 147 with self.subTest(key=key, value=value, exc_type=exc_type): 152 for sys_attr, key, value in ( 162 with self.subTest(sys=sys_attr, key=key, value=value) [all...] |
/third_party/openssl/crypto/conf/ |
H A D | conf_api.c | 42 return ((STACK_OF(CONF_VALUE) *)v->value); in STACK_OF() 45 int _CONF_add_string(CONF *conf, CONF_VALUE *section, CONF_VALUE *value) in _CONF_add_string() argument 50 ts = (STACK_OF(CONF_VALUE) *)section->value; in _CONF_add_string() 52 value->section = section->section; in _CONF_add_string() 53 if (!sk_CONF_VALUE_push(ts, value)) in _CONF_add_string() 56 v = lh_CONF_VALUE_insert(conf->data, value); in _CONF_add_string() 60 OPENSSL_free(v->value); in _CONF_add_string() 83 return v->value; in _CONF_get_string() 95 return v->value; in _CONF_get_string() 173 sk = (STACK_OF(CONF_VALUE) *)a->value; in value_free_stack_doall() [all...] |
/third_party/typescript/tests/baselines/reference/ |
H A D | thisAndSuperInStaticMembers2(target=es2015).js | 79 C.z8 = [({ set value(_a) { Reflect.set(_c, "a", _a, _b); } }).value] = [0];
80 C.z9 = [({ set value(_a) { Reflect.set(_c, "a", _a, _b); } }).value = 0] = [0];
81 C.z10 = [...({ set value(_a) { Reflect.set(_c, "a", _a, _b); } }).value] = [0];
82 C.z11 = { x: ({ set value(_a) { Reflect.set(_c, "a", _a, _b); } }).value } = { x: 0 };
83 C.z12 = { x: ({ set value(_a) { Reflect.set(_c, "a", _a, _b); } }).value [all...] |
/third_party/skia/third_party/externals/abseil-cpp/absl/random/internal/ |
H A D | uniform_helper.h | 80 is_widening_convertible<B, A>>::value, 82 is_widening_convertible<A, B>::value, B, A>::type>; 105 std::is_same<Tag, IntervalOpenOpenTag>>>::value, 116 std::is_same<Tag, IntervalOpenOpenTag>>>::value, 125 std::is_same<Tag, IntervalClosedOpenTag>>::value, 136 std::is_same<Tag, IntervalOpenOpenTag>>>::value, 147 std::is_same<Tag, IntervalOpenOpenTag>>>::value, 158 std::is_same<Tag, IntervalOpenClosedTag>>>::value, 169 std::is_same<Tag, IntervalOpenClosedTag>>>::value, 198 absl::enable_if_t<std::is_floating_point<FloatType>::value, boo [all...] |
/third_party/skia/third_party/externals/abseil-cpp/absl/base/internal/ |
H A D | invoke.h | 75 : std::integral_constant<bool, std::is_base_of<C, Obj>::value && 76 absl::is_function<MemFunType>::value> { 96 : std::integral_constant<bool, !std::is_base_of<C, Ptr>::value && 97 absl::is_function<MemFunType>::value> { 118 : std::integral_constant<bool, std::is_base_of<C, Obj>::value && 119 !absl::is_function<R>::value> {}; 136 : std::integral_constant<bool, !std::is_base_of<C, Ptr>::value && 137 !absl::is_function<R>::value> {}; 161 MemFunAndRef::Accept<Args...>::value, MemFunAndRef, 163 MemFunAndPtr::Accept<Args...>::value, MemFunAndPt [all...] |
/kernel/linux/linux-5.10/drivers/video/fbdev/ |
H A D | atmel_lcdfb.c | 256 unsigned long value; in compute_hozval() local 262 value = xres; in compute_hozval() 266 value *= 3; in compute_hozval() 271 value = DIV_ROUND_UP(value, 4); in compute_hozval() 273 value = DIV_ROUND_UP(value, 8); in compute_hozval() 276 return value; in compute_hozval() 419 dev_err(dev, "needed value not specified\n"); in atmel_lcdfb_check_var() 564 unsigned long value; in atmel_lcdfb_set_par() local [all...] |
/kernel/linux/linux-5.10/drivers/usb/storage/ |
H A D | realtek_cr.c | 481 u8 value; in enable_oscillator() local 483 retval = rts51x_read_mem(us, 0xFE77, &value, 1); in enable_oscillator() 487 value |= 0x04; in enable_oscillator() 488 retval = rts51x_write_mem(us, 0xFE77, &value, 1); in enable_oscillator() 492 retval = rts51x_read_mem(us, 0xFE77, &value, 1); in enable_oscillator() 496 if (!(value & 0x04)) in enable_oscillator() 533 u8 value; in do_config_autodelink() local 535 retval = rts51x_read_mem(us, 0xFE47, &value, 1); in do_config_autodelink() 541 value |= 0x03; in do_config_autodelink() 543 value | in do_config_autodelink() 562 u8 value; config_autodelink_after_power_on() local 629 u8 value; config_autodelink_before_power_down() local [all...] |
/kernel/linux/linux-6.6/drivers/video/fbdev/ |
H A D | atmel_lcdfb.c | 236 unsigned long value; in compute_hozval() local 242 value = xres; in compute_hozval() 246 value *= 3; in compute_hozval() 251 value = DIV_ROUND_UP(value, 4); in compute_hozval() 253 value = DIV_ROUND_UP(value, 8); in compute_hozval() 256 return value; in compute_hozval() 399 dev_err(dev, "needed value not specified\n"); in atmel_lcdfb_check_var() 544 unsigned long value; in atmel_lcdfb_set_par() local [all...] |
/kernel/linux/linux-6.6/drivers/usb/storage/ |
H A D | realtek_cr.c | 481 u8 value; in enable_oscillator() local 483 retval = rts51x_read_mem(us, 0xFE77, &value, 1); in enable_oscillator() 487 value |= 0x04; in enable_oscillator() 488 retval = rts51x_write_mem(us, 0xFE77, &value, 1); in enable_oscillator() 492 retval = rts51x_read_mem(us, 0xFE77, &value, 1); in enable_oscillator() 496 if (!(value & 0x04)) in enable_oscillator() 533 u8 value; in do_config_autodelink() local 535 retval = rts51x_read_mem(us, 0xFE47, &value, 1); in do_config_autodelink() 541 value |= 0x03; in do_config_autodelink() 543 value | in do_config_autodelink() 562 u8 value; config_autodelink_after_power_on() local 629 u8 value; config_autodelink_before_power_down() local [all...] |
/third_party/mesa3d/src/gallium/drivers/r600/sfn/ |
H A D | sfn_shader.cpp | 239 string value; in read_output() local 240 is >> value; in read_output() local 241 int pos = int_from_string_with_prefix(value, "LOC:"); in read_output() 242 is >> value; in read_output() local 243 int name = int_from_string_with_prefix(value, "NAME:"); in read_output() 244 is >> value; in read_output() local 245 int mask = int_from_string_with_prefix(value, "MASK:"); in read_output() 248 value.clear(); in read_output() 249 is >> value; in read_output() local 250 if (!value in read_output() 253 is >> value; read_output() local 265 string value; read_input() local 266 is >> value; read_input() local 268 is >> value; read_input() local 279 is >> value; read_input() local 294 std::cerr << "Unknown parse value '" << value << "'"; read_input() local 298 is >> value; read_input() local 687 auto value = value_factory().src(if_stmt->condition, 0); emit_if_start() local 915 auto value = vf.temp_vec4(pin_group, swz); emit_store_scratch() local 1030 auto value = value_factory().src(instr->src[0], swizzle_base); emit_local_store() local 1033 auto value = value_factory().src(instr->src[0], swizzle_base); emit_local_store() local [all...] |
/kernel/linux/linux-5.10/drivers/media/pci/saa7134/ |
H A D | saa7134-tvaudio.c | 319 __s32 left,right,value; in tvaudio_checkcarrier() local 335 value = saa_readl(SAA7134_LEVEL_READOUT1 >> 2); in tvaudio_checkcarrier() 337 pr_cont(" # %6d # ", value >> 16); in tvaudio_checkcarrier() 339 pr_cont(" %6d", value >> 16); in tvaudio_checkcarrier() 358 value = left > right ? left - right : right - left; in tvaudio_checkcarrier() 361 scan->name, value, left, right); in tvaudio_checkcarrier() 362 return value; in tvaudio_checkcarrier() 682 int saa_dsp_writel(struct saa7134_dev *dev, int reg, u32 value) in saa_dsp_writel() argument 687 (reg << 2) & 0xffffffff, value); in saa_dsp_writel() 691 saa_writel(reg,value); in saa_dsp_writel() 701 u32 value; getstereo_7133() local 763 u32 value, norms; tvaudio_thread_ddep() local [all...] |
/kernel/linux/linux-5.10/sound/pci/vx222/ |
H A D | vx222_ops.c | 94 * @val: the value to write 118 * @val: the value to write 673 /* `data' is a value between 0x0 and VX2_AKM_LEVEL_MAX = 0x093, in the case of the AKM codecs, we need in vx2_write_akm() 675 and the real dBu value in vx2_write_akm() 860 uinfo->value.integer.min = 0; in vx_input_level_info() 861 uinfo->value.integer.max = MIC_LEVEL_MAX; in vx_input_level_info() 870 ucontrol->value.integer.value[0] = chip->input_level[0]; in vx_input_level_get() 871 ucontrol->value.integer.value[ in vx_input_level_get() [all...] |
/kernel/linux/linux-5.10/drivers/gpu/drm/rockchip/ |
H A D | inno_hdmi.c | 311 int value; in inno_hdmi_config_video_csc() local 319 value = v_VIDEO_INPUT_BITS(VIDEO_INPUT_8BITS) | in inno_hdmi_config_video_csc() 322 hdmi_writeb(hdmi, HDMI_VIDEO_CONTRL2, value); in inno_hdmi_config_video_csc() 327 value = v_SOF_DISABLE | v_COLOR_DEPTH_NOT_INDICATED(1); in inno_hdmi_config_video_csc() 328 hdmi_writeb(hdmi, HDMI_VIDEO_CONTRL3, value); in inno_hdmi_config_video_csc() 372 value = v_SOF_DISABLE | csc_enable | v_COLOR_DEPTH_NOT_INDICATED(1); in inno_hdmi_config_video_csc() 373 hdmi_writeb(hdmi, HDMI_VIDEO_CONTRL3, value); in inno_hdmi_config_video_csc() 384 int value; in inno_hdmi_config_video_timing() local 387 value = v_EXTERANL_VIDEO(1); in inno_hdmi_config_video_timing() 388 value | in inno_hdmi_config_video_timing() [all...] |
/kernel/linux/linux-6.6/drivers/tty/serial/8250/ |
H A D | 8250_dw.c | 70 static inline int dw8250_modify_msr(struct uart_port *p, int offset, int value) in dw8250_modify_msr() argument 76 value |= d->msr_mask_on; in dw8250_modify_msr() 77 value &= ~d->msr_mask_off; in dw8250_modify_msr() 80 return value; in dw8250_modify_msr() 104 static void dw8250_check_lcr(struct uart_port *p, int value) in dw8250_check_lcr() argument 113 if ((value & ~UART_LCR_SPAR) == (lcr & ~UART_LCR_SPAR)) in dw8250_check_lcr() 120 __raw_writeq(value & 0xff, offset); in dw8250_check_lcr() 124 writel(value, offset); in dw8250_check_lcr() 126 iowrite32be(value, offset); in dw8250_check_lcr() 128 writeb(value, offse in dw8250_check_lcr() 160 dw8250_serial_out(struct uart_port *p, int offset, int value) dw8250_serial_out() argument 170 dw8250_serial_out38x(struct uart_port *p, int offset, int value) dw8250_serial_out38x() argument 181 unsigned int value = readb(p->membase + (offset << p->regshift)); dw8250_serial_in() local 189 unsigned int value; dw8250_serial_inq() local 196 dw8250_serial_outq(struct uart_port *p, int offset, int value) dw8250_serial_outq() argument 210 dw8250_serial_out32(struct uart_port *p, int offset, int value) dw8250_serial_out32() argument 222 unsigned int value = readl(p->membase + (offset << p->regshift)); dw8250_serial_in32() local 227 dw8250_serial_out32be(struct uart_port *p, int offset, int value) dw8250_serial_out32be() argument 239 unsigned int value = ioread32be(p->membase + (offset << p->regshift)); dw8250_serial_in32be() local [all...] |
/kernel/linux/linux-6.6/drivers/media/pci/saa7134/ |
H A D | saa7134-tvaudio.c | 319 __s32 left,right,value; in tvaudio_checkcarrier() local 335 value = saa_readl(SAA7134_LEVEL_READOUT1 >> 2); in tvaudio_checkcarrier() 337 pr_cont(" # %6d # ", value >> 16); in tvaudio_checkcarrier() 339 pr_cont(" %6d", value >> 16); in tvaudio_checkcarrier() 358 value = left > right ? left - right : right - left; in tvaudio_checkcarrier() 361 scan->name, value, left, right); in tvaudio_checkcarrier() 362 return value; in tvaudio_checkcarrier() 682 int saa_dsp_writel(struct saa7134_dev *dev, int reg, u32 value) in saa_dsp_writel() argument 687 (reg << 2) & 0xffffffff, value); in saa_dsp_writel() 691 saa_writel(reg,value); in saa_dsp_writel() 701 u32 value; getstereo_7133() local 763 u32 value, norms; tvaudio_thread_ddep() local [all...] |
/kernel/linux/linux-6.6/drivers/gpu/drm/rockchip/ |
H A D | inno_hdmi.c | 321 int value; in inno_hdmi_config_video_csc() local 329 value = v_VIDEO_INPUT_BITS(VIDEO_INPUT_8BITS) | in inno_hdmi_config_video_csc() 332 hdmi_writeb(hdmi, HDMI_VIDEO_CONTRL2, value); in inno_hdmi_config_video_csc() 337 value = v_SOF_DISABLE | v_COLOR_DEPTH_NOT_INDICATED(1); in inno_hdmi_config_video_csc() 338 hdmi_writeb(hdmi, HDMI_VIDEO_CONTRL3, value); in inno_hdmi_config_video_csc() 382 value = v_SOF_DISABLE | csc_enable | v_COLOR_DEPTH_NOT_INDICATED(1); in inno_hdmi_config_video_csc() 383 hdmi_writeb(hdmi, HDMI_VIDEO_CONTRL3, value); in inno_hdmi_config_video_csc() 394 int value; in inno_hdmi_config_video_timing() local 397 value = v_EXTERANL_VIDEO(1); in inno_hdmi_config_video_timing() 398 value | in inno_hdmi_config_video_timing() [all...] |
/kernel/linux/linux-6.6/sound/pci/vx222/ |
H A D | vx222_ops.c | 94 * @val: the value to write 118 * @val: the value to write 675 /* `data' is a value between 0x0 and VX2_AKM_LEVEL_MAX = 0x093, in the case of the AKM codecs, we need in vx2_write_akm() 677 and the real dBu value in vx2_write_akm() 862 uinfo->value.integer.min = 0; in vx_input_level_info() 863 uinfo->value.integer.max = MIC_LEVEL_MAX; in vx_input_level_info() 872 ucontrol->value.integer.value[0] = chip->input_level[0]; in vx_input_level_get() 873 ucontrol->value.integer.value[ in vx_input_level_get() [all...] |
/third_party/node/deps/v8/src/baseline/arm64/ |
H A D | baseline-assembler-arm64-inl.h | 104 void BaselineAssembler::JumpIfRoot(Register value, RootIndex index, in JumpIfRoot() argument 106 __ JumpIfRoot(value, index, target); in JumpIfRoot() 109 void BaselineAssembler::JumpIfNotRoot(Register value, RootIndex index, in JumpIfNotRoot() argument 111 __ JumpIfNotRoot(value, index, target); in JumpIfNotRoot() 114 void BaselineAssembler::JumpIfSmi(Register value, Label* target, in JumpIfSmi() argument 116 __ JumpIfSmi(value, target); in JumpIfSmi() 119 void BaselineAssembler::JumpIfNotSmi(Register value, Label* target, in JumpIfNotSmi() argument 121 __ JumpIfNotSmi(value, target); in JumpIfNotSmi() 167 void BaselineAssembler::TestAndBranch(Register value, int mask, Condition cc, in TestAndBranch() argument 169 __ Tst(value, Immediat in TestAndBranch() 200 JumpIfPointer(Condition cc, Register value, MemOperand operand, Label* target, Label::Distance) JumpIfPointer() argument 208 JumpIfSmi(Condition cc, Register value, Smi smi, Label* target, Label::Distance distance) JumpIfSmi() argument 220 JumpIfTagged(Condition cc, Register value, MemOperand operand, Label* target, Label::Distance) JumpIfTagged() argument 228 JumpIfTagged(Condition cc, MemOperand operand, Register value, Label* target, Label::Distance) JumpIfTagged() argument 236 JumpIfByte(Condition cc, Register value, int32_t byte, Label* target, Label::Distance) JumpIfByte() argument 244 Move(Register output, TaggedIndex value) Move() argument 253 Move(Register output, Handle<HeapObject> value) Move() argument 256 Move(Register output, int32_t value) Move() argument 458 StoreTaggedSignedField(Register target, int offset, Smi value) StoreTaggedSignedField() argument 467 StoreTaggedFieldWithWriteBarrier(Register target, int offset, Register value) StoreTaggedFieldWithWriteBarrier() argument 476 StoreTaggedFieldNoWriteBarrier(Register target, int offset, Register value) StoreTaggedFieldNoWriteBarrier() argument [all...] |