/third_party/skia/third_party/externals/dng_sdk/source/ |
H A D | dng_bad_pixels.cpp | 183 uint16 value; in ProcessArea() local 188 value = sPtr [-srcBuffer.fRowStep - 1]; in ProcessArea() 190 if (value != badPixel) in ProcessArea() 193 total += value; in ProcessArea() 196 value = sPtr [-srcBuffer.fRowStep + 1]; in ProcessArea() 198 if (value != badPixel) in ProcessArea() 201 total += value; in ProcessArea() 204 value = sPtr [srcBuffer.fRowStep - 1]; in ProcessArea() 206 if (value != badPixel) in ProcessArea() 209 total += value; in ProcessArea() [all...] |
/applications/standard/contacts_data/dataBusiness/contacts/src/ |
H A D | contacts_data_ability.cpp | 188 * @param value Inserted data value of the database 192 int ContactsDataAbility::Insert(const Uri &uri, const DataShare::DataShareValuesBucket &value) in Insert() argument 199 OHOS::NativeRdb::ValuesBucket valuesBucket = RdbDataShareAdapter::RdbUtils::ToValuesBucket(value); in Insert() 235 int ContactsDataAbility::InsertExecute(int &code, const OHOS::NativeRdb::ValuesBucket &value) in InsertExecute() argument 242 rowId = contactDataBase_->InsertRawContact(Contacts::ContactTableName::RAW_CONTACT, value); in InsertExecute() 247 rowId = contactDataBase_->InsertContactData(Contacts::ContactTableName::CONTACT_DATA, value); in InsertExecute() 252 rowId = contactDataBase_->InsertGroup(Contacts::ContactTableName::GROUPS, value); in InsertExecute() 257 rowId = contactDataBase_->InsertBlockList(Contacts::ContactTableName::CONTACT_BLOCKLIST, value); in InsertExecute() 271 * @param value Inserte 299 OHOS::NativeRdb::ValuesBucket value = RdbDataShareAdapter::RdbUtils::ToValuesBucket(rawContactValues); BatchInsert() local 334 Update( const Uri &uri, const DataShare::DataSharePredicates &predicates, const DataShare::DataShareValuesBucket &value) Update() argument 361 UpdateExecute(int &retCode, int code, const OHOS::NativeRdb::ValuesBucket &value, DataShare::DataSharePredicates &dataSharePredicates) UpdateExecute() argument 400 SwitchUpdate(int &retCode, int &code, const OHOS::NativeRdb::ValuesBucket &value, DataShare::DataSharePredicates &dataSharePredicates) SwitchUpdate() argument [all...] |
/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/navigation/ |
H A D | navigation_toolbar_util.cpp | 100 if (barItem.iconSymbol.has_value() && barItem.iconSymbol.value() != nullptr) { in CreateToolbarItemIconNode() 107 barItem.iconSymbol.value()(AccessibilityManager::WeakClaim(AccessibilityManager::RawPtr(iconNode))); in CreateToolbarItemIconNode() 114 ImageSourceInfo info(barItem.icon.value()); in CreateToolbarItemIconNode() 155 ((barItem.activeIcon.has_value() && !barItem.activeIcon.value().empty()) || in UpdateBarItemPattern() 156 (barItem.activeIconSymbol.has_value() && barItem.activeIconSymbol.value() != nullptr)) && in UpdateBarItemPattern() 157 ((barItem.icon.has_value() && !barItem.icon.value().empty()) || in UpdateBarItemPattern() 158 (barItem.iconSymbol.has_value() && barItem.iconSymbol.value() != nullptr))) { in UpdateBarItemPattern() 159 if (barItem.iconSymbol.has_value() && barItem.iconSymbol.value() != nullptr) { in UpdateBarItemPattern() 160 barItemPattern->SetInitialIconSymbol(barItem.iconSymbol.value()); in UpdateBarItemPattern() 162 ImageSourceInfo initialIconInfo(barItem.icon.value()); in UpdateBarItemPattern() [all...] |
/foundation/resourceschedule/device_standby/utils/policy/src/ |
H A D | standby_config_manager.cpp | 561 if (!element.value().is_primitive()) { in ParseStandbyConfig() 566 if (element.value().is_boolean()) { in ParseStandbyConfig() 567 standbySwitchMap_[element.key()] = element.value().get<bool>(); in ParseStandbyConfig() 568 } else if (element.value().is_number_integer()) { in ParseStandbyConfig() 569 if (element.value().get<int32_t>() < 0) { in ParseStandbyConfig() 570 STANDBYSERVICE_LOGW("there is negative value in standby config %{public}s", element.key().c_str()); in ParseStandbyConfig() 574 standbyParaMap_[element.key()] = element.value().get<int32_t>(); in ParseStandbyConfig() 584 if (!element.value().is_array()) { in ParseIntervalList() 585 STANDBYSERVICE_LOGW("there is unexpected value of %{public}s in standby interval list", in ParseIntervalList() 591 for (const int32_t interval : element.value()) { in ParseIntervalList() [all...] |
/foundation/resourceschedule/work_scheduler/interfaces/kits/js/napi/src/ |
H A D | common.cpp | 285 napi_value value = nullptr; in GetIntProperty() local 286 napi_status getNameStatus = napi_get_named_property(env, object, propertyName.c_str(), &value); in GetIntProperty() 291 napi_typeof(env, value, &valueType); in GetIntProperty() 300 napi_get_value_int32(env, value, &intValue); in GetIntProperty() 308 napi_value value = nullptr; in GetBoolProperty() local 309 napi_status getNameStatus = napi_get_named_property(env, object, propertyName.c_str(), &value); in GetBoolProperty() 314 napi_typeof(env, value, &valueType); in GetBoolProperty() 323 napi_get_value_bool(env, value, &boolValue); in GetBoolProperty() 331 napi_value value = nullptr; in GetBoolToIntProperty() local 332 napi_status getNameStatus = napi_get_named_property(env, object, propertyName.c_str(), &value); in GetBoolToIntProperty() 356 napi_value value = nullptr; GetStringProperty() local 380 MatchValueType(napi_env env, napi_value value, napi_valuetype targetType) MatchValueType() argument [all...] |
/foundation/distributeddatamgr/kv_store/frameworks/cj/src/ |
H A D | distributed_kv_store_ffi.cpp | 103 int32_t FfiOHOSDistributedKVStoreSingleKVStorePut(int64_t id, const char* key, ValueType value) in FfiOHOSDistributedKVStoreSingleKVStorePut() argument 109 return instance->Put(key, value); in FfiOHOSDistributedKVStoreSingleKVStorePut() 400 void FfiOHOSDistributedKVStoreQueryEqualTo(int64_t id, const char* field, ValueType value) in FfiOHOSDistributedKVStoreQueryEqualTo() argument 406 return instance->EqualTo(field, value); in FfiOHOSDistributedKVStoreQueryEqualTo() 409 void FfiOHOSDistributedKVStoreQueryNotEqualTo(int64_t id, const char* field, ValueType value) in FfiOHOSDistributedKVStoreQueryNotEqualTo() argument 415 return instance->NotEqualTo(field, value); in FfiOHOSDistributedKVStoreQueryNotEqualTo() 418 void FfiOHOSDistributedKVStoreQueryGreaterThan(int64_t id, const char* field, ValueType value) in FfiOHOSDistributedKVStoreQueryGreaterThan() argument 424 return instance->GreaterThan(field, value); in FfiOHOSDistributedKVStoreQueryGreaterThan() 427 void FfiOHOSDistributedKVStoreQueryLessThan(int64_t id, const char* field, ValueType value) in FfiOHOSDistributedKVStoreQueryLessThan() argument 433 return instance->LessThan(field, value); in FfiOHOSDistributedKVStoreQueryLessThan() 436 FfiOHOSDistributedKVStoreQueryGreaterThanOrEqualTo(int64_t id, const char* field, ValueType value) FfiOHOSDistributedKVStoreQueryGreaterThanOrEqualTo() argument 445 FfiOHOSDistributedKVStoreQueryLessThanOrEqualTo(int64_t id, const char* field, ValueType value) FfiOHOSDistributedKVStoreQueryLessThanOrEqualTo() argument 499 FfiOHOSDistributedKVStoreQueryLike(int64_t id, const char* field, const char* value) FfiOHOSDistributedKVStoreQueryLike() argument 508 FfiOHOSDistributedKVStoreQueryUnlike(int64_t id, const char* field, const char* value) FfiOHOSDistributedKVStoreQueryUnlike() argument [all...] |
/foundation/distributeddatamgr/relational_store/frameworks/native/rdb/src/ |
H A D | rdb_service_proxy.cpp | 103 uint32_t value = ++seqNum_; in GetSeqNum() local 104 if (value == 0) { in GetSeqNum() 105 value = ++seqNum_; in GetSeqNum() 107 return value; in GetSeqNum() 226 observers_.Compute(name, [observer, ¶m, &option](const auto &key, std::list<ObserverParam> &value) { in Subscribe() 227 for (const auto &element : value) { in Subscribe() 233 value.push_back({ observer, param.bundleName_, option }); in Subscribe() 262 observers_.ComputeIfPresent(name, [observer](const auto &key, std::list<ObserverParam> &value) { in UnSubscribe() 263 LOG_INFO("before remove size=%{public}d", static_cast<int>(value.size())); in UnSubscribe() 264 value in UnSubscribe() [all...] |
/foundation/distributeddatamgr/udmf/framework/jskitsimpl/common/ |
H A D | napi_data_utils.cpp | 141 std::string value; in GetValue() local 142 status = GetValue(env, item, value); in GetValue() 144 out.push_back(value); in GetValue() 198 LOG_ERROR_RETURN((status == napi_ok), "napi_value <- std::vector<uint8_t> invalid value", status); in SetValue() 219 for (const auto &[key, value] : in) { in SetValue() 226 napi_create_int32(env, static_cast<int32_t>(value), &jsValue); in SetValue() 250 for (const auto &[key, value] : in) { in SetValue() 257 napi_create_int64(env, static_cast<int64_t>(value), &jsValue); in SetValue() 327 LOG_ERROR(UDMF_KITS_NAPI, "napi_value <- UDVariant INVALID value type"); in SetValue() 471 std::visit([&](auto &value) {statu in GetValue() 544 IsNull(napi_env env, napi_value value) IsNull() argument [all...] |
/kernel/linux/linux-5.10/arch/parisc/kernel/ |
H A D | module.c | 28 * should do a value offset, like this: 132 /* The reassemble_* functions prepare an immediate value for 134 in the instruction to hold the value. */ 365 static Elf64_Word get_got(struct module *me, unsigned long value, long addend) in get_got() argument 370 value += addend; in get_got() 372 BUG_ON(value == 0); in get_got() 376 if (got[i].addr == value) in get_got() 381 got[i].addr = value; in get_got() 384 value); in get_got() 390 static Elf_Addr get_fdesc(struct module *me, unsigned long value) in get_fdesc() argument 421 get_stub(struct module *me, unsigned long value, long addend, enum elf_stub_type stub_type, Elf_Addr loc0, unsigned int targetsec) get_stub() argument [all...] |
/kernel/linux/linux-6.6/arch/parisc/kernel/ |
H A D | module.c | 28 * should do a value offset, like this: 113 /* The reassemble_* functions prepare an immediate value for 115 in the instruction to hold the value. */ 348 static Elf64_Word get_got(struct module *me, unsigned long value, long addend) in get_got() argument 353 value += addend; in get_got() 355 BUG_ON(value == 0); in get_got() 359 if (got[i].addr == value) in get_got() 364 got[i].addr = value; in get_got() 367 value); in get_got() 373 static Elf_Addr get_fdesc(struct module *me, unsigned long value) in get_fdesc() argument 404 get_stub(struct module *me, unsigned long value, long addend, enum elf_stub_type stub_type, Elf_Addr loc0, unsigned int targetsec) get_stub() argument [all...] |
/kernel/linux/linux-5.10/sound/drivers/ |
H A D | mts64.c | 31 MODULE_PARM_DESC(index, "Index value for " CARD_NAME " soundcard."); 436 uctl->value.integer.value[0] = mts->smpte_switch; in snd_mts64_ctl_smpte_switch_get() 449 int val = !!uctl->value.integer.value[0]; in snd_mts64_ctl_smpte_switch_put() 487 uinfo->value.integer.min = 0; in snd_mts64_ctl_smpte_time_h_info() 488 uinfo->value.integer.max = 23; in snd_mts64_ctl_smpte_time_h_info() 497 uinfo->value.integer.min = 0; in snd_mts64_ctl_smpte_time_f_info() 498 uinfo->value.integer.max = 99; in snd_mts64_ctl_smpte_time_f_info() 507 uinfo->value in snd_mts64_ctl_smpte_time_info() [all...] |
/kernel/linux/linux-5.10/sound/parisc/ |
H A D | harmony.c | 51 MODULE_PARM_DESC(index, "Index value for Harmony driver."); 674 uinfo->value.integer.min = 0; in snd_harmony_mixercontrol_info() 675 uinfo->value.integer.max = mask; in snd_harmony_mixercontrol_info() 700 ucontrol->value.integer.value[0] = left; in snd_harmony_volume_get() 702 ucontrol->value.integer.value[1] = right; in snd_harmony_volume_get() 723 left = ucontrol->value.integer.value[0] & mask; in snd_harmony_volume_put() 730 right = ucontrol->value in snd_harmony_volume_put() 758 int value; snd_harmony_captureroute_get() local 775 int value; snd_harmony_captureroute_put() local [all...] |
/kernel/linux/linux-5.10/fs/f2fs/ |
H A D | xattr.c | 68 const char *name, const void *value, in f2fs_xattr_generic_set() 85 value, size, NULL, flags); in f2fs_xattr_generic_set() 111 const char *name, const void *value, in f2fs_xattr_advise_set() 119 if (value == NULL) in f2fs_xattr_advise_set() 122 new_advise = *(char *)value; in f2fs_xattr_advise_set() 143 xattr->name, xattr->value, in f2fs_initxattrs() 618 const void *value, size_t size) in f2fs_xattr_value_same() 623 !memcmp(pval, value, size); in f2fs_xattr_value_same() 627 const char *name, const void *value, size_t size, in __f2fs_setxattr() 640 if (value in __f2fs_setxattr() 66 f2fs_xattr_generic_set(const struct xattr_handler *handler, struct dentry *unused, struct inode *inode, const char *name, const void *value, size_t size, int flags) f2fs_xattr_generic_set() argument 109 f2fs_xattr_advise_set(const struct xattr_handler *handler, struct dentry *unused, struct inode *inode, const char *name, const void *value, size_t size, int flags) f2fs_xattr_advise_set() argument 617 f2fs_xattr_value_same(struct f2fs_xattr_entry *entry, const void *value, size_t size) f2fs_xattr_value_same() argument 626 __f2fs_setxattr(struct inode *inode, int index, const char *name, const void *value, size_t size, struct page *ipage, int flags) __f2fs_setxattr() argument 772 f2fs_setxattr(struct inode *inode, int index, const char *name, const void *value, size_t size, struct page *ipage, int flags) f2fs_setxattr() argument [all...] |
/kernel/linux/linux-5.10/drivers/media/usb/dvb-usb/ |
H A D | af9005.c | 134 int af9005_read_ofdm_register(struct dvb_usb_device *d, u16 reg, u8 * value) in af9005_read_ofdm_register() argument 140 value, 1); in af9005_read_ofdm_register() 144 deb_reg("value %x\n", *value); in af9005_read_ofdm_register() 163 int af9005_write_ofdm_register(struct dvb_usb_device *d, u16 reg, u8 value) in af9005_write_ofdm_register() argument 166 u8 temp = value; in af9005_write_ofdm_register() 167 deb_reg("write register %x value %x ", reg, value); in af9005_write_ofdm_register() 196 u8 len, u8 * value) in af9005_read_register_bits() 206 *value in af9005_read_register_bits() 195 af9005_read_register_bits(struct dvb_usb_device *d, u16 reg, u8 pos, u8 len, u8 * value) af9005_read_register_bits() argument 212 af9005_write_register_bits(struct dvb_usb_device *d, u16 reg, u8 pos, u8 len, u8 value) af9005_write_register_bits() argument 408 u8 *value; af9005_i2c_xfer() local [all...] |
/kernel/linux/linux-6.6/drivers/media/usb/dvb-usb/ |
H A D | af9005.c | 134 int af9005_read_ofdm_register(struct dvb_usb_device *d, u16 reg, u8 * value) in af9005_read_ofdm_register() argument 140 value, 1); in af9005_read_ofdm_register() 144 deb_reg("value %x\n", *value); in af9005_read_ofdm_register() 163 int af9005_write_ofdm_register(struct dvb_usb_device *d, u16 reg, u8 value) in af9005_write_ofdm_register() argument 166 u8 temp = value; in af9005_write_ofdm_register() 167 deb_reg("write register %x value %x ", reg, value); in af9005_write_ofdm_register() 196 u8 len, u8 * value) in af9005_read_register_bits() 206 *value in af9005_read_register_bits() 195 af9005_read_register_bits(struct dvb_usb_device *d, u16 reg, u8 pos, u8 len, u8 * value) af9005_read_register_bits() argument 212 af9005_write_register_bits(struct dvb_usb_device *d, u16 reg, u8 pos, u8 len, u8 value) af9005_write_register_bits() argument 408 u8 *value; af9005_i2c_xfer() local [all...] |
/kernel/linux/linux-6.6/fs/f2fs/ |
H A D | xattr.c | 70 const char *name, const void *value, in f2fs_xattr_generic_set() 87 value, size, NULL, flags); in f2fs_xattr_generic_set() 114 const char *name, const void *value, in f2fs_xattr_advise_set() 122 if (value == NULL) in f2fs_xattr_advise_set() 125 new_advise = *(char *)value; in f2fs_xattr_advise_set() 146 xattr->name, xattr->value, in f2fs_initxattrs() 620 const void *value, size_t size) in f2fs_xattr_value_same() 625 !memcmp(pval, value, size); in f2fs_xattr_value_same() 629 const char *name, const void *value, size_t size, in __f2fs_setxattr() 642 if (value in __f2fs_setxattr() 67 f2fs_xattr_generic_set(const struct xattr_handler *handler, struct mnt_idmap *idmap, struct dentry *unused, struct inode *inode, const char *name, const void *value, size_t size, int flags) f2fs_xattr_generic_set() argument 111 f2fs_xattr_advise_set(const struct xattr_handler *handler, struct mnt_idmap *idmap, struct dentry *unused, struct inode *inode, const char *name, const void *value, size_t size, int flags) f2fs_xattr_advise_set() argument 619 f2fs_xattr_value_same(struct f2fs_xattr_entry *entry, const void *value, size_t size) f2fs_xattr_value_same() argument 628 __f2fs_setxattr(struct inode *inode, int index, const char *name, const void *value, size_t size, struct page *ipage, int flags) __f2fs_setxattr() argument 791 f2fs_setxattr(struct inode *inode, int index, const char *name, const void *value, size_t size, struct page *ipage, int flags) f2fs_setxattr() argument [all...] |
/kernel/linux/linux-6.6/drivers/power/supply/ |
H A D | mt6360_charger.c | 264 u32 sel, value; in mt6360_charger_get_ichg() local 270 ret = linear_range_get_value(&mt6360_chg_range[MT6360_RANGE_ICHG], sel, &value); in mt6360_charger_get_ichg() 272 val->intval = value; in mt6360_charger_get_ichg() 287 u32 sel, value; in mt6360_charger_get_cv() local 293 ret = linear_range_get_value(&mt6360_chg_range[MT6360_RANGE_VOREG], sel, &value); in mt6360_charger_get_cv() 295 val->intval = value; in mt6360_charger_get_cv() 310 u32 sel, value; in mt6360_charger_get_aicr() local 316 ret = linear_range_get_value(&mt6360_chg_range[MT6360_RANGE_AICR], sel, &value); in mt6360_charger_get_aicr() 318 val->intval = value; in mt6360_charger_get_aicr() 326 u32 sel, value; in mt6360_charger_get_mivr() local 342 u32 sel, value; mt6360_charger_get_iprechg() local 358 u32 sel, value; mt6360_charger_get_ieoc() local [all...] |
/kernel/linux/linux-6.6/sound/drivers/ |
H A D | mts64.c | 31 MODULE_PARM_DESC(index, "Index value for " CARD_NAME " soundcard."); 435 uctl->value.integer.value[0] = mts->smpte_switch; in snd_mts64_ctl_smpte_switch_get() 448 int val = !!uctl->value.integer.value[0]; in snd_mts64_ctl_smpte_switch_put() 486 uinfo->value.integer.min = 0; in snd_mts64_ctl_smpte_time_h_info() 487 uinfo->value.integer.max = 23; in snd_mts64_ctl_smpte_time_h_info() 496 uinfo->value.integer.min = 0; in snd_mts64_ctl_smpte_time_f_info() 497 uinfo->value.integer.max = 99; in snd_mts64_ctl_smpte_time_f_info() 506 uinfo->value in snd_mts64_ctl_smpte_time_info() [all...] |
/kernel/linux/linux-6.6/sound/parisc/ |
H A D | harmony.c | 51 MODULE_PARM_DESC(index, "Index value for Harmony driver."); 660 uinfo->value.integer.min = 0; in snd_harmony_mixercontrol_info() 661 uinfo->value.integer.max = mask; in snd_harmony_mixercontrol_info() 686 ucontrol->value.integer.value[0] = left; in snd_harmony_volume_get() 688 ucontrol->value.integer.value[1] = right; in snd_harmony_volume_get() 709 left = ucontrol->value.integer.value[0] & mask; in snd_harmony_volume_put() 716 right = ucontrol->value in snd_harmony_volume_put() 744 int value; snd_harmony_captureroute_get() local 761 int value; snd_harmony_captureroute_put() local [all...] |
/kernel/linux/linux-6.6/sound/pci/emu10k1/ |
H A D | emuproc.c | 164 u32 value; in snd_emu10k1_proc_spdif_read() local 171 snd_emu1010_fpga_read(emu, EMU_HANA_IRQ_STATUS, &value); in snd_emu10k1_proc_spdif_read() 172 snd_iprintf(buffer, "Lock status 1: %#x\n", value & 0x10); in snd_emu10k1_proc_spdif_read() 176 snd_emu1010_fpga_read(emu, EMU_HANA_LOCK_STS_LO, &value); in snd_emu10k1_proc_spdif_read() 178 snd_iprintf(buffer, "Lock status 2: %#x %#x\n", value, value2); in snd_emu10k1_proc_spdif_read() 193 snd_emu1010_fpga_read(emu, EMU_HANA_SPDIF_MODE, &value); in snd_emu10k1_proc_spdif_read() 194 if (value & EMU_HANA_SPDIF_MODE_RX_INVALID) in snd_emu10k1_proc_spdif_read() 198 value & EMU_HANA_SPDIF_MODE_RX_PRO ? "professional" : "consumer", in snd_emu10k1_proc_spdif_read() 199 value & EMU_HANA_SPDIF_MODE_RX_NOCOPY ? ", no copy" : ""); in snd_emu10k1_proc_spdif_read() 459 u32 value; in snd_emu_proc_emu1010_reg_read() local 505 unsigned long value; snd_emu_proc_io_reg_read() local 566 unsigned long value; snd_emu_proc_ptr_reg_read() local [all...] |
/third_party/libcoap/src/ |
H A D | coap_ws.c | 308 char *value; in coap_ws_rd_http_header_server() local 320 value = coap_ws_split_rd_header(session); in coap_ws_rd_http_header_server() 321 if (!value) in coap_ws_rd_http_header_server() 335 if (strcasecmp(value, "websocket") != 0) { in coap_ws_rd_http_header_server() 345 if (strcasecmp(value, "Upgrade") != 0) { in coap_ws_rd_http_header_server() 357 if (!coap_base64_decode_buffer(value, &len, ws->key, in coap_ws_rd_http_header_server() 360 coap_log_info("WS: Invalid Sec-WebSocket-Key: %s\n", value); in coap_ws_rd_http_header_server() 370 if (strcasecmp(value, "coap") != 0) { in coap_ws_rd_http_header_server() 380 if (strcasecmp(value, "13") != 0) { in coap_ws_rd_http_header_server() 422 char *value; in coap_ws_rd_http_header_client() local [all...] |
/third_party/json/tests/src/ |
H A D | unit-udt.cpp | 540 !(std::is_pod<U>::value && std::is_class<U>::value), int >::type = 0 > 550 std::is_pod<U>::value && std::is_class<U>::value, int >::type = 0 > 553 std::uint64_t value = 0; in from_json() local 568 nlohmann::from_json(j, value); in from_json() 569 auto* bytes = static_cast<char*>(static_cast<void*>(&value)); in from_json() 570 std::memcpy(&t, bytes, sizeof(value)); in from_json() 576 !(std::is_pod<U>::value && std::is_class<U>::value), in 589 std::uint64_t value = 0; global() variable [all...] |
/third_party/jerryscript/jerry-core/vm/ |
H A D | opcodes.c | 76 * and CreateMutableBinding sets the created binding's value to undefined */ in vm_var_decl() 86 * Set var binding to a function literal value. 95 ecma_value_t lit_value) /**< function value */ in vm_set_var() 114 * @return ecma value 115 * Returned value must be freed with ecma_free_value 118 opfunc_typeof (ecma_value_t left_value) /**< left value */ in opfunc_typeof() 128 ecma_value_t object, /**< object value */ in opfunc_set_accessor() 130 ecma_value_t accessor) /**< accessor value */ in opfunc_set_accessor() 187 * @return ecma value 188 * Returned value mus 362 ecma_value_t value = ecma_op_iterator_value (next_value); opfunc_append_to_spread_array() local 454 ecma_value_t value = ecma_op_iterator_value (next_value); opfunc_spread_arguments() local 648 opfunc_resume_executable_object(vm_executable_object_t *executable_object_p, ecma_value_t value) opfunc_resume_executable_object() argument 751 opfunc_return_promise(ecma_value_t value) opfunc_return_promise() argument [all...] |
/third_party/mesa3d/src/amd/llvm/ |
H A D | ac_llvm_build.h | 155 int ac_get_llvm_num_components(LLVMValueRef value); 159 LLVMValueRef ac_llvm_extract_elem(struct ac_llvm_context *ac, LLVMValueRef value, int index); 183 LLVMValueRef ac_build_ballot(struct ac_llvm_context *ctx, LLVMValueRef value); 184 LLVMValueRef ac_get_i1_sgpr_mask(struct ac_llvm_context *ctx, LLVMValueRef value); 186 LLVMValueRef ac_build_vote_all(struct ac_llvm_context *ctx, LLVMValueRef value); 188 LLVMValueRef ac_build_vote_any(struct ac_llvm_context *ctx, LLVMValueRef value); 190 LLVMValueRef ac_build_vote_eq(struct ac_llvm_context *ctx, LLVMValueRef value); 203 LLVMValueRef ac_extract_components(struct ac_llvm_context *ctx, LLVMValueRef value, unsigned start, 206 LLVMValueRef ac_build_expand(struct ac_llvm_context *ctx, LLVMValueRef value, 209 LLVMValueRef ac_build_expand_to_vec4(struct ac_llvm_context *ctx, LLVMValueRef value, [all...] |
/third_party/node/deps/v8/src/parsing/ |
H A D | scanner.cc | 13 #include "src/ast/ast-value-factory.h" 228 // Magic comments are of the form: //[#@]\s<name>=\s*<value>\s*.* and this in TryToParseSourceURLComment() 243 LiteralBuffer* value; in TryToParseSourceURLComment() local 245 value = &source_url_; in TryToParseSourceURLComment() 247 value = &source_mapping_url_; in TryToParseSourceURLComment() 253 value->Start(); in TryToParseSourceURLComment() 262 value->AddChar(c0_); in TryToParseSourceURLComment() 268 value->Start(); in TryToParseSourceURLComment() 662 bool Scanner::ScanDecimalAsSmiWithNumericSeparators(uint64_t* value) { in ScanDecimalAsSmiWithNumericSeparators() argument 676 *value in ScanDecimalAsSmiWithNumericSeparators() 691 ScanDecimalAsSmi(uint64_t* value, bool allow_numeric_separator) ScanDecimalAsSmi() argument 801 uint64_t value = 0; ScanNumber() local [all...] |