Home
last modified time | relevance | path

Searched refs:value (Results 14601 - 14625 of 31723) sorted by relevance

1...<<581582583584585586587588589590>>...1269

/third_party/skia/third_party/externals/icu/source/tools/genrb/
H A Dreslist.cpp272 const UChar *value, int32_t len, in StringBaseResource()
281 fString.setTo(ConstChar16Ptr(value), len); in StringBaseResource()
289 const icu::UnicodeString &value, UErrorCode &errorCode) in StringBaseResource()
290 : SResource(bundle, NULL, type, NULL, errorCode), fString(value) { in StringBaseResource()
291 if (value.isEmpty() && gFormatVersion > 1) { in StringBaseResource()
304 StringBaseResource::StringBaseResource(int8_t type, const UChar *value, int32_t len, in StringBaseResource() argument
306 : SResource(NULL, NULL, type, NULL, errorCode), fString(TRUE, value, len) { in StringBaseResource()
330 IntResource::IntResource(SRBRoot *bundle, const char *tag, int32_t value, in IntResource() argument
333 fValue = value; in IntResource()
334 fRes = URES_MAKE_RESOURCE(URES_INT, value in IntResource()
271 StringBaseResource(SRBRoot *bundle, const char *tag, int8_t type, const UChar *value, int32_t len, const UString* comment, UErrorCode &errorCode) StringBaseResource() argument
288 StringBaseResource(SRBRoot *bundle, int8_t type, const icu::UnicodeString &value, UErrorCode &errorCode) StringBaseResource() argument
355 add(int32_t value, UErrorCode &errorCode) add() argument
1114 string_open(struct SRBRoot *bundle, const char *tag, const UChar *value, int32_t len, const struct UString* comment, UErrorCode *status) string_open() argument
1120 alias_open(struct SRBRoot *bundle, const char *tag, UChar *value, int32_t len, const struct UString* comment, UErrorCode *status) alias_open() argument
1132 int_open(struct SRBRoot *bundle, const char *tag, int32_t value, const struct UString* comment, UErrorCode *status) int_open() argument
[all...]
/third_party/python/Objects/
H A Ddescrobject.c19 EM_JS(int, descr_set_trampoline_call, (setter set, PyObject *obj, PyObject *value, void *closure), {
20 return wasmTable.get(set)(obj, value, closure);
27 #define descr_set_trampoline_call(set, obj, value, closure) \
28 (set)((obj), (value), (closure))
224 descr_setcheck(PyDescrObject *descr, PyObject *obj, PyObject *value) in descr_setcheck() argument
240 member_set(PyMemberDescrObject *descr, PyObject *obj, PyObject *value) in member_set() argument
242 if (descr_setcheck((PyDescrObject *)descr, obj, value) < 0) { in member_set()
245 return PyMember_SetOne((char *)obj, descr->d_member, value); in member_set()
249 getset_set(PyGetSetDescrObject *descr, PyObject *obj, PyObject *value) in getset_set() argument
251 if (descr_setcheck((PyDescrObject *)descr, obj, value) < in getset_set()
1634 property_descr_set(PyObject *self, PyObject *obj, PyObject *value) property_descr_set() argument
[all...]
/third_party/python/Modules/
H A D_collectionsmodule.c1000 "D.count(value) -- return number of occurrences of value");
1109 "D.index(value, [start, [stop]]) -- return first index of value.\n"
1110 "Raises ValueError if the value is not present.");
1125 PyObject *value; in deque_insert() local
1128 if (!_PyArg_ParseStack(args, nargs, "nO:insert", &index, &value)) { in deque_insert()
1137 return deque_append(deque, value); in deque_insert()
1139 return deque_appendleft(deque, value); in deque_insert()
1143 rv = deque_append(deque, value); in deque_insert()
1225 deque_remove(dequeobject *deque, PyObject *value) deque_remove() argument
1975 PyObject *value; defdict_missing() local
2456 tuplegetter_descr_set(PyObject *self, PyObject *obj, PyObject *value) tuplegetter_descr_set() argument
[all...]
H A D_cursesmodule.c238 long value; in PyCurses_ConvertToChtype() local
240 value = (unsigned char)PyBytes_AsString(obj)[0]; in PyCurses_ConvertToChtype()
250 value = PyUnicode_READ_CHAR(obj, 0); in PyCurses_ConvertToChtype()
251 if (128 < value) { in PyCurses_ConvertToChtype()
262 value = (unsigned char)PyBytes_AS_STRING(bytes)[0]; in PyCurses_ConvertToChtype()
264 value = -1; in PyCurses_ConvertToChtype()
266 if (value < 0) in PyCurses_ConvertToChtype()
272 value = PyLong_AsLongAndOverflow(obj, &long_overflow); in PyCurses_ConvertToChtype()
282 *ch = (chtype)value; in PyCurses_ConvertToChtype()
283 if ((long)*ch != value) in PyCurses_ConvertToChtype()
312 long value; PyCurses_ConvertToCchar_t() local
2448 PyCursesWindow_set_encoding(PyCursesWindowObject *self, PyObject *value, void *Py_UNUSED(ignored)) PyCursesWindow_set_encoding() argument
4462 long value; PyCurses_ConvertToWchar_t() local
[all...]
/kernel/linux/linux-6.6/sound/soc/codecs/
H A Drt5677.c552 * rt5677_dsp_mode_i2c_write_addr - Write value to address on DSP mode.
555 * @value: Address data.
556 * @opcode: opcode value
561 unsigned int addr, unsigned int value, unsigned int opcode) in rt5677_dsp_mode_i2c_write_addr()
571 dev_err(component->dev, "Failed to set addr msb value: %d\n", ret); in rt5677_dsp_mode_i2c_write_addr()
578 dev_err(component->dev, "Failed to set addr lsb value: %d\n", ret); in rt5677_dsp_mode_i2c_write_addr()
583 value >> 16); in rt5677_dsp_mode_i2c_write_addr()
585 dev_err(component->dev, "Failed to set data msb value: %d\n", ret); in rt5677_dsp_mode_i2c_write_addr()
590 value & 0xffff); in rt5677_dsp_mode_i2c_write_addr()
592 dev_err(component->dev, "Failed to set data lsb value in rt5677_dsp_mode_i2c_write_addr()
560 rt5677_dsp_mode_i2c_write_addr(struct rt5677_priv *rt5677, unsigned int addr, unsigned int value, unsigned int opcode) rt5677_dsp_mode_i2c_write_addr() argument
618 rt5677_dsp_mode_i2c_read_addr( struct rt5677_priv *rt5677, unsigned int addr, unsigned int *value) rt5677_dsp_mode_i2c_read_addr() argument
667 rt5677_dsp_mode_i2c_write(struct rt5677_priv *rt5677, unsigned int reg, unsigned int value) rt5677_dsp_mode_i2c_write() argument
683 rt5677_dsp_mode_i2c_read( struct rt5677_priv *rt5677, unsigned int reg, unsigned int *value) rt5677_dsp_mode_i2c_read() argument
2691 unsigned int value; rt5677_if1_adc_tdm_event() local
2714 unsigned int value; rt5677_if2_adc_tdm_event() local
4728 rt5677_gpio_set(struct gpio_chip *chip, unsigned offset, int value) rt5677_gpio_set() argument
4737 rt5677_gpio_direction_out(struct gpio_chip *chip, unsigned offset, int value) rt5677_gpio_direction_out() argument
4751 int value, ret; rt5677_gpio_get() local
4775 rt5677_gpio_config(struct rt5677_priv *rt5677, unsigned offset, int value) rt5677_gpio_config() argument
4866 rt5677_gpio_config(struct rt5677_priv *rt5677, unsigned offset, int value) rt5677_gpio_config() argument
[all...]
/third_party/elfutils/debuginfod/
H A Ddebuginfod.cxx442 static void set_metric(const string& key, double value);
446 double value);
451 double value);
458 double value);
822 // Unique set is a thread-safe structure that lends 'ownership' of a value
836 void acquire(const T& value) in acquire() argument
839 while (values.find(value) != values.end()) in acquire()
841 values.insert(value); in acquire()
844 void release(const T& value) in release() argument
847 // assert (values.find(value) ! in release()
863 unique_set_reserver(unique_set<T>& t, const T& value) unique_set_reserver() argument
2357 string value = header_dup.substr(colon+1,newline-colon-1); handle_buildid() local
2403 metric_label(const string& name, const string& value) metric_label() argument
2422 set_metric(const string& metric, double value) set_metric() argument
2436 set_metric(const string& metric, const string& lname, const string& lvalue, double value) set_metric() argument
2454 add_metric(const string& metric, const string& lname, const string& lvalue, double value) add_metric() argument
2487 add_metric(const string& metric, const string& lname, const string& lvalue, const string& rname, const string& rvalue, double value) add_metric() argument
[all...]
/third_party/node/deps/v8/src/codegen/arm/
H A Dmacro-assembler-arm.cc448 void TurboAssembler::Move(Register dst, Handle<HeapObject> value) { in Move() argument
451 // embedding the relocatable value. in Move()
453 IndirectLoadConstant(dst, value); in Move()
456 mov(dst, Operand(value)); in Move()
462 // embedding the relocatable value. in Move()
630 Register value, in RecordWriteField()
642 JumpIfSmi(value, &done); in RecordWriteField()
654 DCHECK(!AreAliased(object, value, scratch)); in RecordWriteField()
662 RecordWrite(object, Operand(offset - kHeapObjectTag), value, lr_status, in RecordWriteField()
779 Register value, LinkRegisterStatu in CallRecordWriteStub()
629 RecordWriteField(Register object, int offset, Register value, LinkRegisterStatus lr_status, SaveFPRegsMode save_fp, RememberedSetAction remembered_set_action, SmiCheck smi_check) RecordWriteField() argument
778 RecordWrite(Register object, Operand offset, Register value, LinkRegisterStatus lr_status, SaveFPRegsMode fp_mode, RememberedSetAction remembered_set_action, SmiCheck smi_check) CallRecordWriteStub() argument
1832 CompareRange(Register value, unsigned lower_limit, unsigned higher_limit) CallRecordWriteStub() argument
1862 JumpIfIsInRange(Register value, unsigned lower_limit, unsigned higher_limit, Label* on_in_range) CallRecordWriteStub() argument
1990 EmitIncrementCounter(StatsCounter* counter, int value, Register scratch1, Register scratch2) CallRecordWriteStub() argument
2003 EmitDecrementCounter(StatsCounter* counter, int value, Register scratch1, Register scratch2) CallRecordWriteStub() argument
2105 SmiTst(Register value) CallRecordWriteStub() argument
2109 JumpIfSmi(Register value, Label* smi_label) CallRecordWriteStub() argument
2124 JumpIfNotSmi(Register value, Label* not_smi_label) CallRecordWriteStub() argument
[all...]
/kernel/linux/linux-5.10/sound/pci/
H A Dvia82xx.c78 MODULE_PARM_DESC(index, "Index value for VIA 82xx bridge.");
1595 ucontrol->value.enumerated.item[0] = inb(port) & VIA_REG_CAPTURE_CHANNEL_MIC ? 1 : 0; in snd_via8233_capture_source_get()
1609 if (ucontrol->value.enumerated.item[0]) in snd_via8233_capture_source_put()
1634 ucontrol->value.integer.value[0] = (val & VIA8233_SPDIF_DX3) ? 1 : 0; in snd_via8233_dxs3_spdif_get()
1646 if (ucontrol->value.integer.value[0]) in snd_via8233_dxs3_spdif_put()
1649 chip->spdif_on = ucontrol->value.integer.value[0] ? 1 : 0; in snd_via8233_dxs3_spdif_put()
1670 uinfo->value in snd_via8233_dxs_volume_info()
[all...]
/kernel/linux/linux-6.6/drivers/crypto/hisilicon/hpre/
H A Dhpre_crypto.c196 if (atomic64_read(&dfx[HPRE_OVERTIME_THRHLD].value)) in hpre_add_req_to_ctx()
444 overtime_thrhld = atomic64_read(&dfx[HPRE_OVERTIME_THRHLD].value); in hpre_dh_cb()
446 atomic64_inc(&dfx[HPRE_OVER_THRHLD_CNT].value); in hpre_dh_cb()
450 atomic64_inc(&dfx[HPRE_RECV_CNT].value); in hpre_dh_cb()
463 overtime_thrhld = atomic64_read(&dfx[HPRE_OVERTIME_THRHLD].value); in hpre_rsa_cb()
465 atomic64_inc(&dfx[HPRE_OVER_THRHLD_CNT].value); in hpre_rsa_cb()
471 atomic64_inc(&dfx[HPRE_RECV_CNT].value); in hpre_rsa_cb()
482 atomic64_inc(&dfx[HPRE_INVALID_REQ_CNT].value); in hpre_alg_cb()
574 atomic64_inc(&dfx[HPRE_SEND_CNT].value); in hpre_send()
578 atomic64_inc(&dfx[HPRE_SEND_BUSY_CNT].value); in hpre_send()
896 hpre_rsa_set_n(struct hpre_ctx *ctx, const char *value, size_t vlen, bool private) hpre_rsa_set_n() argument
934 hpre_rsa_set_e(struct hpre_ctx *ctx, const char *value, size_t vlen) hpre_rsa_set_e() argument
949 hpre_rsa_set_d(struct hpre_ctx *ctx, const char *value, size_t vlen) hpre_rsa_set_d() argument
[all...]
/kernel/linux/linux-6.6/sound/pci/
H A Dvia82xx.c77 MODULE_PARM_DESC(index, "Index value for VIA 82xx bridge.");
1600 ucontrol->value.enumerated.item[0] = inb(port) & VIA_REG_CAPTURE_CHANNEL_MIC ? 1 : 0; in snd_via8233_capture_source_get()
1614 if (ucontrol->value.enumerated.item[0]) in snd_via8233_capture_source_put()
1639 ucontrol->value.integer.value[0] = (val & VIA8233_SPDIF_DX3) ? 1 : 0; in snd_via8233_dxs3_spdif_get()
1651 if (ucontrol->value.integer.value[0]) in snd_via8233_dxs3_spdif_put()
1654 chip->spdif_on = ucontrol->value.integer.value[0] ? 1 : 0; in snd_via8233_dxs3_spdif_put()
1675 uinfo->value in snd_via8233_dxs_volume_info()
[all...]
/kernel/linux/linux-6.6/sound/soc/mediatek/mt8186/
H A Dmt8186-afe-pcm.c570 ucontrol->value.integer.value[0] = in mt8186_irq_cnt1_get()
587 dev_dbg(afe->dev, "%s(), irq_id %d, irq_cnt = %d, value = %ld\n", in mt8186_irq_cnt1_set()
588 __func__, irq_id, irq_cnt, ucontrol->value.integer.value[0]); in mt8186_irq_cnt1_set()
590 if (irq_cnt == ucontrol->value.integer.value[0]) in mt8186_irq_cnt1_set()
593 irq_cnt = ucontrol->value.integer.value[0]; in mt8186_irq_cnt1_set()
619 ucontrol->value in mt8186_irq_cnt2_get()
2686 unsigned int value = 0; mt8186_afe_runtime_suspend() local
[all...]
/third_party/node/deps/brotli/c/dec/
H A Ddecode.c62 BrotliDecoderState* state, BrotliDecoderParameter p, uint32_t value) { in BrotliDecoderSetParameter()
66 state->canny_ringbuffer_allocation = !!value ? 0 : 1; in BrotliDecoderSetParameter()
70 state->large_window = TO_BROTLI_BOOL(!!value); in BrotliDecoderSetParameter()
182 BrotliDecoderState* s, BrotliBitReader* br, uint32_t* value) { in DecodeVarLenUint8()
190 *value = 0; in DecodeVarLenUint8()
201 *value = 1; in DecodeVarLenUint8()
205 /* Use output value as a temporary storage. It MUST be persisted. */ in DecodeVarLenUint8()
206 *value = bits; in DecodeVarLenUint8()
210 if (BROTLI_PREDICT_FALSE(!BrotliSafeReadBits(br, *value, &bits))) { in DecodeVarLenUint8()
214 *value in DecodeVarLenUint8()
61 BrotliDecoderSetParameter( BrotliDecoderState* state, BrotliDecoderParameter p, uint32_t value) BrotliDecoderSetParameter() argument
181 DecodeVarLenUint8( BrotliDecoderState* s, BrotliBitReader* br, uint32_t* value) DecodeVarLenUint8() argument
426 PreloadSymbol(int safe, const HuffmanCode* table, BrotliBitReader* br, uint32_t* bits, uint32_t* value) PreloadSymbol() argument
442 ReadPreloadedSymbol(const HuffmanCode* table, BrotliBitReader* br, uint32_t* bits, uint32_t* value) ReadPreloadedSymbol() argument
948 uint8_t value = mtf_u8[index]; InverseMoveToFrontTransform() local
1791 uint32_t value; ProcessCommandsInternal() local
[all...]
/third_party/node/deps/v8/src/objects/
H A Dmap.cc707 TransitionsAccessor::SetMigrationTarget(isolate, old_map, new_map.value());
709 return handle(new_map.value(), isolate);
1765 PropertyConstness constness, Object value) { in CanHoldValue()
1770 value.FitsRepresentation(details.representation()) && in CanHoldValue()
1771 descriptors.GetFieldType(descriptor).NowContains(value); in CanHoldValue()
1789 Handle<Object> value) { in UpdateDescriptorForValue()
1791 *value)) { in UpdateDescriptorForValue()
1797 Representation representation = value->OptimalRepresentation(isolate); in UpdateDescriptorForValue()
1798 Handle<FieldType> type = value->OptimalType(isolate, representation); in UpdateDescriptorForValue()
1811 Handle<Object> value) { in PrepareForDataProperty()
1764 CanHoldValue(DescriptorArray descriptors, InternalIndex descriptor, PropertyConstness constness, Object value) CanHoldValue() argument
1786 UpdateDescriptorForValue(Isolate* isolate, Handle<Map> map, InternalIndex descriptor, PropertyConstness constness, Handle<Object> value) UpdateDescriptorForValue() argument
1808 PrepareForDataProperty(Isolate* isolate, Handle<Map> map, InternalIndex descriptor, PropertyConstness constness, Handle<Object> value) PrepareForDataProperty() argument
1819 TransitionToDataProperty(Isolate* isolate, Handle<Map> map, Handle<Name> name, Handle<Object> value, PropertyAttributes attributes, PropertyConstness constness, StoreOrigin store_origin) TransitionToDataProperty() argument
2223 SetShouldBeFastPrototypeMap(Handle<Map> map, bool value, Isolate* isolate) SetShouldBeFastPrototypeMap() argument
2327 MaybeObject value = WeakFixedArray::Get(GetIndex(fast_map)); Get() local
[all...]
/third_party/python/Python/
H A Dsymtable.c596 from free. It is safe to replace the value of name in analyze_cells()
1123 VISIT_QUIT macro returns the specified value exiting from the function but
1239 if (s->v.Return.value) { in symtable_visit_stmt()
1240 VISIT(st, expr, s->v.Return.value); in symtable_visit_stmt()
1249 VISIT(st, expr, s->v.Assign.value); in symtable_visit_stmt()
1277 if (s->v.AnnAssign.value in symtable_visit_stmt()
1290 if (s->v.AnnAssign.value) { in symtable_visit_stmt()
1291 VISIT(st, expr, s->v.AnnAssign.value); in symtable_visit_stmt()
1296 VISIT(st, expr, s->v.AugAssign.value); in symtable_visit_stmt()
1425 VISIT(st, expr, s->v.Expr.value); in symtable_visit_stmt()
2008 symtable_handle_comprehension(struct symtable *st, expr_ty e, identifier scope_name, asdl_comprehension_seq *generators, expr_ty elt, expr_ty value) symtable_handle_comprehension() argument
[all...]
/third_party/skia/third_party/externals/brotli/c/dec/
H A Ddecode.c62 BrotliDecoderState* state, BrotliDecoderParameter p, uint32_t value) { in BrotliDecoderSetParameter()
66 state->canny_ringbuffer_allocation = !!value ? 0 : 1; in BrotliDecoderSetParameter()
70 state->large_window = TO_BROTLI_BOOL(!!value); in BrotliDecoderSetParameter()
182 BrotliDecoderState* s, BrotliBitReader* br, uint32_t* value) { in DecodeVarLenUint8()
190 *value = 0; in DecodeVarLenUint8()
201 *value = 1; in DecodeVarLenUint8()
205 /* Use output value as a temporary storage. It MUST be persisted. */ in DecodeVarLenUint8()
206 *value = bits; in DecodeVarLenUint8()
210 if (BROTLI_PREDICT_FALSE(!BrotliSafeReadBits(br, *value, &bits))) { in DecodeVarLenUint8()
214 *value in DecodeVarLenUint8()
61 BrotliDecoderSetParameter( BrotliDecoderState* state, BrotliDecoderParameter p, uint32_t value) BrotliDecoderSetParameter() argument
181 DecodeVarLenUint8( BrotliDecoderState* s, BrotliBitReader* br, uint32_t* value) DecodeVarLenUint8() argument
426 PreloadSymbol(int safe, const HuffmanCode* table, BrotliBitReader* br, uint32_t* bits, uint32_t* value) PreloadSymbol() argument
442 ReadPreloadedSymbol(const HuffmanCode* table, BrotliBitReader* br, uint32_t* bits, uint32_t* value) ReadPreloadedSymbol() argument
948 uint8_t value = mtf_u8[index]; InverseMoveToFrontTransform() local
1791 uint32_t value; ProcessCommandsInternal() local
[all...]
/third_party/protobuf/src/google/protobuf/util/internal/
H A Dprotostream_objectwriter_test.cc274 ow_->StartObject("")->RenderInt32("value", 12345)->EndObject(); in TEST_P()
280 ow_->StartObject("")->RenderInt32("value", 12345)->EndObject(); in TEST_P()
1518 StringPiece("Field 'dur', Duration value exceeds limits"))); in TEST_P()
1531 StringPiece("Field 'dur', Duration value exceeds limits"))); in TEST_P()
1545 "Field 'ts', Invalid data type for timestamp, value is 1"))) in TEST_P()
1559 "Field 'dur', Invalid data type for duration, value is 1"))) in TEST_P()
1766 ValueWrapper value; in TEST_P() local
1767 value.mutable_value()->set_null_value(google::protobuf::NULL_VALUE); in TEST_P()
1770 ow_->StartObject("")->RenderNull("value")->EndObject(); in TEST_P()
1771 CheckOutput(value); in TEST_P()
2018 std::string name, value; TEST_P() local
2204 ::google::protobuf::Value value; TEST_P() local
2231 ::google::protobuf::Value value; TEST_P() local
2259 ::google::protobuf::Value value; TEST_P() local
[all...]
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/drivers/
H A Ddriver_wext.c43 int idx, u32 value) in wpa_driver_wext_set_auth_param()
51 iwr.u.param.value = value; in wpa_driver_wext_set_auth_param()
56 "value 0x%x) failed: %s)", in wpa_driver_wext_set_auth_param()
57 idx, value, strerror(errno)); in wpa_driver_wext_set_auth_param()
1322 if (p.value > maxrate) in wext_get_scan_rate()
1323 maxrate = p.value; in wext_get_scan_rate()
1414 wpa_printf(MSG_DEBUG, "WEXT: Invalid TSF value"); in wext_get_scan_custom()
2113 int value; in wpa_driver_wext_associate() local
2156 value in wpa_driver_wext_associate()
42 wpa_driver_wext_set_auth_param(struct wpa_driver_wext_data *drv, int idx, u32 value) wpa_driver_wext_set_auth_param() argument
[all...]
/device/soc/rockchip/common/sdk_linux/kernel/sched/
H A Dcore.c984 * The (slow-path) user-space triggers utilization clamp value updates which
1033 * * A task modifying its uclamp value with sched_setattr().
1060 static inline void uclamp_se_set(struct uclamp_se *uc_se, unsigned int value, in uclamp_se_set() argument
1063 uc_se->value = value; in uclamp_se_set()
1064 uc_se->bucket_id = uclamp_bucket_id(value); in uclamp_se_set()
1093 WRITE_ONCE(rq->uclamp[clamp_id].value, clamp_value); in uclamp_idle_reset()
1111 return bucket[bucket_id].value; in uclamp_rq_max_value()
1180 /* Copy by value as we could modify it */ in uclamp_tg_restrict()
1183 unsigned int tg_min, tg_max, value; in uclamp_tg_restrict() local
[all...]
/kernel/linux/linux-5.10/drivers/scsi/
H A Dst.c722 "Async write error %x, return value %d.\n", in write_behind_check()
2285 int value; in st_set_options()
2328 value = (code == MT_ST_SETBOOLEANS); in st_set_options()
2330 STm->do_buffer_writes = value; in st_set_options()
2332 STm->do_async_writes = value; in st_set_options()
2334 STm->defaults_for_writes = value; in st_set_options()
2336 STm->do_read_ahead = value; in st_set_options()
2338 STp->two_fm = value; in st_set_options()
2340 STp->fast_mteom = value; in st_set_options()
2342 STp->do_auto_lock = value; in st_set_options()
2276 int value; st_set_options() local
[all...]
/kernel/linux/linux-5.10/drivers/staging/rtl8723bs/os_dep/
H A Dioctl_linux.c225 iwe.u.bitrate.value = max_rate * 500000; in translate_scan()
388 static int wpa_set_auth_algs(struct net_device *dev, u32 value) in wpa_set_auth_algs() argument
393 if ((value & WLAN_AUTH_SHARED_KEY) && (value & WLAN_AUTH_OPEN)) { in wpa_set_auth_algs()
394 DBG_871X("wpa_set_auth_algs, WLAN_AUTH_SHARED_KEY and WLAN_AUTH_OPEN [value:0x%x]\n", value); in wpa_set_auth_algs()
398 } else if (value & WLAN_AUTH_SHARED_KEY) { in wpa_set_auth_algs()
399 DBG_871X("wpa_set_auth_algs, WLAN_AUTH_SHARED_KEY [value:0x%x]\n", value); in wpa_set_auth_algs()
404 } else if (value in wpa_set_auth_algs()
2753 u8 value = extra_arg & 0x0f; rtw_dbg_port() local
3122 int value; rtw_dbg_port() local
3135 int value; rtw_dbg_port() local
3148 int value; rtw_dbg_port() local
3251 wpa_set_param(struct net_device *dev, u8 name, u32 value) wpa_set_param() argument
[all...]
/kernel/linux/linux-6.6/drivers/scsi/
H A Dst.c723 "Async write error %x, return value %d.\n", in write_behind_check()
2286 int value; in st_set_options()
2329 value = (code == MT_ST_SETBOOLEANS); in st_set_options()
2331 STm->do_buffer_writes = value; in st_set_options()
2333 STm->do_async_writes = value; in st_set_options()
2335 STm->defaults_for_writes = value; in st_set_options()
2337 STm->do_read_ahead = value; in st_set_options()
2339 STp->two_fm = value; in st_set_options()
2341 STp->fast_mteom = value; in st_set_options()
2343 STp->do_auto_lock = value; in st_set_options()
2277 int value; st_set_options() local
[all...]
/third_party/skia/third_party/externals/angle2/src/libGLESv2/
H A Dentry_points_gles_ext_autogen.cpp6564 void GL_APIENTRY GL_ProgramParameteriEXT(GLuint program, GLenum pname, GLint value) in GL_ProgramParameteriEXT() argument
6567 EVENT(context, GLProgramParameteriEXT, "context = %d, program = %u, pname = %s, value = %d", in GL_ProgramParameteriEXT()
6568 CID(context), program, GLenumToString(GLenumGroup::ProgramParameterPName, pname), value); in GL_ProgramParameteriEXT()
6577 programPacked, pname, value)); in GL_ProgramParameteriEXT()
6580 context->programParameteri(programPacked, pname, value); in GL_ProgramParameteriEXT()
6582 ANGLE_CAPTURE(ProgramParameteriEXT, isCallValid, context, programPacked, pname, value); in GL_ProgramParameteriEXT()
6620 const GLfloat *value) in GL_ProgramUniform1fvEXT()
6624 "context = %d, program = %u, location = %d, count = %d, value = 0x%016" PRIxPTR "", in GL_ProgramUniform1fvEXT()
6625 CID(context), program, location, count, (uintptr_t)value); in GL_ProgramUniform1fvEXT()
6635 programPacked, locationPacked, count, value)); in GL_ProgramUniform1fvEXT()
6617 GL_ProgramUniform1fvEXT(GLuint program, GLint location, GLsizei count, const GLfloat *value) GL_ProgramUniform1fvEXT() argument
6676 GL_ProgramUniform1ivEXT(GLuint program, GLint location, GLsizei count, const GLint *value) GL_ProgramUniform1ivEXT() argument
6736 GL_ProgramUniform1uivEXT(GLuint program, GLint location, GLsizei count, const GLuint *value) GL_ProgramUniform1uivEXT() argument
6797 GL_ProgramUniform2fvEXT(GLuint program, GLint location, GLsizei count, const GLfloat *value) GL_ProgramUniform2fvEXT() argument
6858 GL_ProgramUniform2ivEXT(GLuint program, GLint location, GLsizei count, const GLint *value) GL_ProgramUniform2ivEXT() argument
6919 GL_ProgramUniform2uivEXT(GLuint program, GLint location, GLsizei count, const GLuint *value) GL_ProgramUniform2uivEXT() argument
6981 GL_ProgramUniform3fvEXT(GLuint program, GLint location, GLsizei count, const GLfloat *value) GL_ProgramUniform3fvEXT() argument
7043 GL_ProgramUniform3ivEXT(GLuint program, GLint location, GLsizei count, const GLint *value) GL_ProgramUniform3ivEXT() argument
7105 GL_ProgramUniform3uivEXT(GLuint program, GLint location, GLsizei count, const GLuint *value) GL_ProgramUniform3uivEXT() argument
7171 GL_ProgramUniform4fvEXT(GLuint program, GLint location, GLsizei count, const GLfloat *value) GL_ProgramUniform4fvEXT() argument
7233 GL_ProgramUniform4ivEXT(GLuint program, GLint location, GLsizei count, const GLint *value) GL_ProgramUniform4ivEXT() argument
7295 GL_ProgramUniform4uivEXT(GLuint program, GLint location, GLsizei count, const GLuint *value) GL_ProgramUniform4uivEXT() argument
7327 GL_ProgramUniformMatrix2fvEXT(GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLfloat *value) GL_ProgramUniformMatrix2fvEXT() argument
7362 GL_ProgramUniformMatrix2x3fvEXT(GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLfloat *value) GL_ProgramUniformMatrix2x3fvEXT() argument
7397 GL_ProgramUniformMatrix2x4fvEXT(GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLfloat *value) GL_ProgramUniformMatrix2x4fvEXT() argument
7432 GL_ProgramUniformMatrix3fvEXT(GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLfloat *value) GL_ProgramUniformMatrix3fvEXT() argument
7467 GL_ProgramUniformMatrix3x2fvEXT(GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLfloat *value) GL_ProgramUniformMatrix3x2fvEXT() argument
7502 GL_ProgramUniformMatrix3x4fvEXT(GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLfloat *value) GL_ProgramUniformMatrix3x4fvEXT() argument
7537 GL_ProgramUniformMatrix4fvEXT(GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLfloat *value) GL_ProgramUniformMatrix4fvEXT() argument
7572 GL_ProgramUniformMatrix4x2fvEXT(GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLfloat *value) GL_ProgramUniformMatrix4x2fvEXT() argument
7607 GL_ProgramUniformMatrix4x3fvEXT(GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLfloat *value) GL_ProgramUniformMatrix4x3fvEXT() argument
7730 GL_PatchParameteriEXT(GLenum pname, GLint value) GL_PatchParameteriEXT() argument
10262 GL_MinSampleShadingOES(GLfloat value) GL_MinSampleShadingOES() argument
[all...]
/third_party/rust/crates/bindgen/bindgen-tests/tests/
H A Dstylo.hpp819 static constexpr T value = Value; member
879 IsSame<T, float>::value ||
880 IsSame<T, double>::value ||
881 IsSame<T, long double>::value>
992 IsLvalueReference<T>::value || IsRvalueReference<T>::value>
997 : IntegralConstant<bool, IsIntegral<T>::value || IsFloatingPoint<T>::value>
1017 : IntegralConstant<bool, IsArithmetic<T>::value || IsEnum<T>::value ||
[all...]
/third_party/glfw/deps/
H A Dnuklear.h180 /// static float value = 0.6f;
204 /// nk_slider_float(&ctx, 0, &value, 1.0f, 0.1f);
815 /// __key__ | Must be any value specified in enum `nk_keys` that needs to be mirrored
829 /// __btn__ | Must be any value specified in enum `nk_buttons` that needs to be mirrored
836 /// Copies the last mouse scroll value to nuklear. Is generally
837 /// a scroll value. So does not have to come from mouse and could also originate
847 /// __val__ | vector with both X- as well as Y-scroll value
1156 float global_alpha; /* global alpha value */
1331 /// is recommended to check the return value of `nk_begin_xxx` and only process
1332 /// widgets inside the window if the value i
5672 template<typename T, int size_diff> struct nk_helper{enum {value = size_diff};}; global() enumerator
5673 template<typename T> struct nk_helper<T,0>{enum {value = nk_alignof<T>::value};}; global() enumerator
5675 diff = sizeof(Big) - sizeof(T), value = nk_helper<Big, diff>::value};}; global() enumerator
6002 union nk_property value; global() member
6460 int value = 0; nk_strtoi() local
6485 double value = 0; nk_strtod() local
7009 long value = 0; nk_vsnprintf() local
7067 unsigned long value = 0; nk_vsnprintf() local
7144 double value = va_arg(args, double); nk_vsnprintf() local
9563 char value = (char)NK_CLAMP((float)NK_SCHAR_MIN, values[value_index], (float)NK_SCHAR_MAX); nk_draw_vertex_element() local
9568 nk_short value = (nk_short)NK_CLAMP((float)NK_SSHORT_MIN, values[value_index], (float)NK_SSHORT_MAX); nk_draw_vertex_element() local
9573 nk_int value = (nk_int)NK_CLAMP((float)NK_SINT_MIN, values[value_index], (float)NK_SINT_MAX); nk_draw_vertex_element() local
9578 unsigned char value = (unsigned char)NK_CLAMP((float)NK_UCHAR_MIN, values[value_index], (float)NK_UCHAR_MAX); nk_draw_vertex_element() local
9583 nk_ushort value = (nk_ushort)NK_CLAMP((float)NK_USHORT_MIN, values[value_index], (float)NK_USHORT_MAX); nk_draw_vertex_element() local
9588 nk_uint value = (nk_uint)NK_CLAMP((float)NK_UINT_MIN, values[value_index], (float)NK_UINT_MAX); nk_draw_vertex_element() local
9597 double value = (double)values[value_index]; nk_draw_vertex_element() local
15485 nk_add_value(struct nk_context *ctx, struct nk_window *win, nk_hash name, nk_uint value) nk_add_value() argument
19466 nk_value_bool(struct nk_context *ctx, const char *prefix, int value) nk_value_bool() argument
19471 nk_value_int(struct nk_context *ctx, const char *prefix, int value) nk_value_int() argument
19476 nk_value_uint(struct nk_context *ctx, const char *prefix, unsigned int value) nk_value_uint() argument
19481 nk_value_float(struct nk_context *ctx, const char *prefix, float value) nk_value_float() argument
20554 nk_check_flags_text(struct nk_context *ctx, const char *text, int len, unsigned int flags, unsigned int value) nk_check_flags_text() argument
20580 nk_checkbox_flags_text(struct nk_context *ctx, const char *text, int len, unsigned int *flags, unsigned int value) nk_checkbox_flags_text() argument
20601 nk_check_flags_label(struct nk_context *ctx, const char *label, unsigned int flags, unsigned int value) nk_check_flags_label() argument
20610 nk_checkbox_flags_label(struct nk_context *ctx, const char *label, unsigned int *flags, unsigned int value) nk_checkbox_flags_label() argument
20730 nk_do_selectable(nk_flags *state, struct nk_command_buffer *out, struct nk_rect bounds, const char *str, int len, nk_flags align, int *value, const struct nk_style_selectable *style, const struct nk_input *in, const struct nk_user_font *font) nk_do_selectable() argument
20766 nk_do_selectable_image(nk_flags *state, struct nk_command_buffer *out, struct nk_rect bounds, const char *str, int len, nk_flags align, int *value, const struct nk_image *img, const struct nk_style_selectable *style, const struct nk_input *in, const struct nk_user_font *font) nk_do_selectable_image() argument
20813 nk_do_selectable_symbol(nk_flags *state, struct nk_command_buffer *out, struct nk_rect bounds, const char *str, int len, nk_flags align, int *value, enum nk_symbol_type sym, const struct nk_style_selectable *style, const struct nk_input *in, const struct nk_user_font *font) nk_do_selectable_symbol() argument
20861 nk_selectable_text(struct nk_context *ctx, const char *str, int len, nk_flags align, int *value) nk_selectable_text() argument
20890 nk_selectable_image_text(struct nk_context *ctx, struct nk_image img, const char *str, int len, nk_flags align, int *value) nk_selectable_image_text() argument
20919 nk_selectable_symbol_text(struct nk_context *ctx, enum nk_symbol_type sym, const char *str, int len, nk_flags align, int *value) nk_selectable_symbol_text() argument
20948 nk_selectable_symbol_label(struct nk_context *ctx, enum nk_symbol_type sym, const char *title, nk_flags align, int *value) nk_selectable_symbol_label() argument
20953 nk_select_text(struct nk_context *ctx, const char *str, int len, nk_flags align, int value) nk_select_text() argument
20958 nk_selectable_label(struct nk_context *ctx, const char *str, nk_flags align, int *value) nk_selectable_label() argument
20962 nk_selectable_image_label(struct nk_context *ctx,struct nk_image img, const char *str, nk_flags align, int *value) nk_selectable_image_label() argument
20967 nk_select_label(struct nk_context *ctx, const char *str, nk_flags align, int value) nk_select_label() argument
20971 nk_select_image_label(struct nk_context *ctx, struct nk_image img, const char *str, nk_flags align, int value) nk_select_image_label() argument
20976 nk_select_image_text(struct nk_context *ctx, struct nk_image img, const char *str, int len, nk_flags align, int value) nk_select_image_text() argument
20982 nk_select_symbol_text(struct nk_context *ctx, enum nk_symbol_type sym, const char *title, int title_len, nk_flags align, int value) nk_select_symbol_text() argument
20988 nk_select_symbol_label(struct nk_context *ctx, enum nk_symbol_type sym, const char *title, nk_flags align, int value) nk_select_symbol_label() argument
21046 nk_draw_slider(struct nk_command_buffer *out, nk_flags state, const struct nk_style_slider *style, const struct nk_rect *bounds, const struct nk_rect *visual_cursor, float min, float value, float max) nk_draw_slider() argument
21194 nk_slider_float(struct nk_context *ctx, float min_value, float *value, float max_value, float value_step) nk_slider_float() argument
21235 float value = (float)val; nk_slide_int() local
21243 float value = (float)*val; nk_slider_int() local
21259 nk_progress_behavior(nk_flags *state, struct nk_input *in, struct nk_rect r, struct nk_rect cursor, nk_size max, nk_size value, int modifiable) nk_progress_behavior() argument
21289 nk_draw_progress(struct nk_command_buffer *out, nk_flags state, const struct nk_style_progress *style, const struct nk_rect *bounds, const struct nk_rect *scursor, nk_size value, nk_size max) nk_draw_progress() argument
21324 nk_do_progress(nk_flags *state, struct nk_command_buffer *out, struct nk_rect bounds, nk_size value, nk_size max, int modifiable, const struct nk_style_progress *style, struct nk_input *in) nk_do_progress() argument
23804 nk_property_variant_int(int value, int min_value, int max_value, int step) nk_property_variant_int() argument
23815 nk_property_variant_float(float value, float min_value, float max_value, float step) nk_property_variant_float() argument
23826 nk_property_variant_double(double value, double min_value, double max_value, double step) nk_property_variant_double() argument
24128 nk_chart_push_line(struct nk_context *ctx, struct nk_window *win, struct nk_chart *g, float value, int slot) nk_chart_push_line() argument
24198 nk_chart_push_column(const struct nk_context *ctx, struct nk_window *win, struct nk_chart *chart, float value, int slot) nk_chart_push_column() argument
24244 nk_chart_push_slot(struct nk_context *ctx, float value, int slot) nk_chart_push_slot() argument
24270 nk_chart_push(struct nk_context *ctx, float value) nk_chart_push() argument
24329 float value = value_getter(userdata, i + offset); nk_plot_function() local
[all...]
/kernel/linux/linux-5.10/tools/power/pm-graph/
H A Dsleepgraph.py380 def setOutputFolder(self, value):
387 return value.format(**args)
461 def getValueList(self, value):
463 for i in value.split(','):
467 def setDeviceFilter(self, value):
468 self.devicefilter = self.getValueList(value)
469 def setCallgraphFilter(self, value):
470 self.cgfilter = self.getValueList(value)
471 def skipKprobes(self, value):
472 for k in self.getValueList(value)
[all...]

Completed in 102 milliseconds

1...<<581582583584585586587588589590>>...1269