/kernel/linux/linux-5.10/drivers/mtd/nand/raw/ |
H A D | ams-delta.c | 60 DECLARE_BITMAP(values, BITS_PER_TYPE(byte)) = { byte, }; in gpio_nand_io_write() 63 data_gpiods->info, values); in gpio_nand_io_write() 71 DECLARE_BITMAP(values, BITS_PER_TYPE(byte)) = { byte, }; in gpio_nand_dir_output() 76 test_bit(i, values)); in gpio_nand_dir_output() 87 DECLARE_BITMAP(values, BITS_PER_TYPE(res)) = { 0, }; in gpio_nand_io_read() 93 data_gpiods->info, values); in gpio_nand_io_read() 97 res = values[0]; in gpio_nand_io_read()
|
/kernel/linux/linux-5.10/net/ax25/ |
H A D | ax25_std_in.c | 44 ax25->window = ax25->ax25_dev->values[AX25_VALUES_WINDOW]; in ax25_std_state1_machine() 50 ax25->window = ax25->ax25_dev->values[AX25_VALUES_EWINDOW]; in ax25_std_state1_machine() 86 ax25->window = ax25->ax25_dev->values[AX25_VALUES_WINDOW]; in ax25_std_state1_machine() 150 ax25->window = ax25->ax25_dev->values[AX25_VALUES_WINDOW]; in ax25_std_state3_machine() 153 ax25->window = ax25->ax25_dev->values[AX25_VALUES_EWINDOW]; in ax25_std_state3_machine() 275 ax25->window = ax25->ax25_dev->values[AX25_VALUES_WINDOW]; in ax25_std_state4_machine() 278 ax25->window = ax25->ax25_dev->values[AX25_VALUES_EWINDOW]; in ax25_std_state4_machine()
|
/kernel/linux/linux-6.6/drivers/mtd/nand/raw/ |
H A D | ams-delta.c | 60 DECLARE_BITMAP(values, BITS_PER_TYPE(byte)) = { byte, }; in gpio_nand_io_write() 63 data_gpiods->info, values); in gpio_nand_io_write() 71 DECLARE_BITMAP(values, BITS_PER_TYPE(byte)) = { byte, }; in gpio_nand_dir_output() 76 test_bit(i, values)); in gpio_nand_dir_output() 87 DECLARE_BITMAP(values, BITS_PER_TYPE(res)) = { 0, }; in gpio_nand_io_read() 93 data_gpiods->info, values); in gpio_nand_io_read() 97 res = values[0]; in gpio_nand_io_read()
|
/kernel/linux/linux-6.6/drivers/gpio/ |
H A D | gpio-max3191x.c | 317 unsigned long *values; in gpiod_set_array_single_value_cansleep() local 319 values = bitmap_alloc(ndescs, GFP_KERNEL); in gpiod_set_array_single_value_cansleep() 320 if (!values) in gpiod_set_array_single_value_cansleep() 324 bitmap_fill(values, ndescs); in gpiod_set_array_single_value_cansleep() 326 bitmap_zero(values, ndescs); in gpiod_set_array_single_value_cansleep() 328 gpiod_set_array_value_cansleep(ndescs, desc, info, values); in gpiod_set_array_single_value_cansleep() 329 bitmap_free(values); in gpiod_set_array_single_value_cansleep()
|
/kernel/linux/linux-6.6/net/ax25/ |
H A D | ax25_std_in.c | 44 ax25->window = ax25->ax25_dev->values[AX25_VALUES_WINDOW]; in ax25_std_state1_machine() 50 ax25->window = ax25->ax25_dev->values[AX25_VALUES_EWINDOW]; in ax25_std_state1_machine() 86 ax25->window = ax25->ax25_dev->values[AX25_VALUES_WINDOW]; in ax25_std_state1_machine() 150 ax25->window = ax25->ax25_dev->values[AX25_VALUES_WINDOW]; in ax25_std_state3_machine() 153 ax25->window = ax25->ax25_dev->values[AX25_VALUES_EWINDOW]; in ax25_std_state3_machine() 275 ax25->window = ax25->ax25_dev->values[AX25_VALUES_WINDOW]; in ax25_std_state4_machine() 278 ax25->window = ax25->ax25_dev->values[AX25_VALUES_EWINDOW]; in ax25_std_state4_machine()
|
/third_party/glfw/src/ |
H A D | monitor.c | 467 unsigned short* values; in glfwSetGamma() local 487 values = _glfw_calloc(original->size, sizeof(unsigned short)); in glfwSetGamma() 500 values[i] = (unsigned short) value; in glfwSetGamma() 503 ramp.red = values; in glfwSetGamma() 504 ramp.green = values; in glfwSetGamma() 505 ramp.blue = values; in glfwSetGamma() 509 _glfw_free(values); in glfwSetGamma()
|
/third_party/jerryscript/tests/unit-core/ |
H A D | test-typedarray.cpp | 416 jerry_value_t values[] = 429 for (size_t idx = 0; idx < sizeof (values) / sizeof (values[0]); idx++) 432 bool is_typedarray = jerry_value_is_typedarray (values[idx]); 436 jerry_typedarray_type_t type = jerry_get_typedarray_type (values[idx]); 440 jerry_length_t length = jerry_get_typedarray_length (values[idx]); 445 * and should not modify the output parameter values. 456 jerry_release_value (values[idx]);
|
/third_party/node/deps/v8/tools/ |
H A D | generate-runtime-call-stats.py | 329 s += "\n ".join(str(row) for row in self.data.values()) + "\n" 342 for row in self.data.values(): 345 self.table = sorted(self.data.values(), key=Row.key) 349 for r in self.data.values()) 353 for r in self.data.values()) 415 for bucket in buckets.values(): 450 for b in buckets.values():
|
/third_party/rust/crates/cxx/gen/build/src/syntax/ |
H A D | discriminant.rs | 13 values: BTreeSet<Discriminant>, 33 values: BTreeSet::new(), in new() 43 for &past in &self.values { in insert() 93 if self.values.is_empty() { in inferred_repr() 96 let min = *self.values.iter().next().unwrap(); in inferred_repr() 97 let max = *self.values.iter().next_back().unwrap(); in inferred_repr() 103 let msg = "these discriminant values do not fit in any supported enum repr type"; in inferred_repr() 147 set.values.insert(discriminant); in insert()
|
/third_party/rust/crates/cxx/gen/lib/src/syntax/ |
H A D | discriminant.rs | 13 values: BTreeSet<Discriminant>, 33 values: BTreeSet::new(), in new() 43 for &past in &self.values { in insert() 93 if self.values.is_empty() { in inferred_repr() 96 let min = *self.values.iter().next().unwrap(); in inferred_repr() 97 let max = *self.values.iter().next_back().unwrap(); in inferred_repr() 103 let msg = "these discriminant values do not fit in any supported enum repr type"; in inferred_repr() 147 set.values.insert(discriminant); in insert()
|
/third_party/rust/crates/cxx/macro/src/syntax/ |
H A D | discriminant.rs | 13 values: BTreeSet<Discriminant>, 33 values: BTreeSet::new(), in new() 43 for &past in &self.values { in insert() 93 if self.values.is_empty() { in inferred_repr() 96 let min = *self.values.iter().next().unwrap(); in inferred_repr() 97 let max = *self.values.iter().next_back().unwrap(); in inferred_repr() 103 let msg = "these discriminant values do not fit in any supported enum repr type"; in inferred_repr() 147 set.values.insert(discriminant); in insert()
|
/third_party/rust/crates/cxx/syntax/ |
H A D | discriminant.rs | 13 values: BTreeSet<Discriminant>, 33 values: BTreeSet::new(), in new() 43 for &past in &self.values { in insert() 93 if self.values.is_empty() { in inferred_repr() 96 let min = *self.values.iter().next().unwrap(); in inferred_repr() 97 let max = *self.values.iter().next_back().unwrap(); in inferred_repr() 103 let msg = "these discriminant values do not fit in any supported enum repr type"; in inferred_repr() 147 set.values.insert(discriminant); in insert()
|
/third_party/rust/crates/cxx/gen/cmd/src/syntax/ |
H A D | discriminant.rs | 13 values: BTreeSet<Discriminant>, 33 values: BTreeSet::new(), in new() 43 for &past in &self.values { in insert() 93 if self.values.is_empty() { in inferred_repr() 96 let min = *self.values.iter().next().unwrap(); in inferred_repr() 97 let max = *self.values.iter().next_back().unwrap(); in inferred_repr() 103 let msg = "these discriminant values do not fit in any supported enum repr type"; in inferred_repr() 147 set.values.insert(discriminant); in insert()
|
/third_party/protobuf/conformance/ |
H A D | ConformanceJava.java | 70 // Returns -1 on EOF (the actual values will always be positive). 169 for (int i = 0; i < BinaryDecoderType.values().length; i++) { in parseBinary() 177 for (int i = 0; i < BinaryDecoderType.values().length; ++i) { in parseBinary() 179 //= BinaryDecoderType.values()[i].parseProto3(bytes); in parseBinary() 180 messages.set(i, decoder.decode(bytes, BinaryDecoderType.values()[i], parser, extensions)); in parseBinary() 191 for (int i = 0; i < BinaryDecoderType.values().length; ++i) { in parseBinary() 192 sb.append(BinaryDecoderType.values()[i].name()); in parseBinary() 224 sb.append(BinaryDecoderType.values()[i].name()) in parseBinary() 226 .append(BinaryDecoderType.values()[j].name()) in parseBinary()
|
/third_party/skia/third_party/externals/harfbuzz/src/ |
H A D | hb-cff-interp-common.hh | 554 values.init (); in init() 556 void fini () { values.fini_deep (); } in fini() 560 VAL *val = values.push (); in add_op() 568 VAL *val = values.push (v); in add_op() 581 unsigned get_count () const { return values.length; } in get_count() 582 const VAL &get_value (unsigned int i) const { return values[i]; } in get_value() 586 hb_vector_t<VAL> values; member
|
/third_party/typescript/tests/baselines/reference/ |
H A D | isomorphicMappedTypeInference.js | 34 function assignBoxified<T>(obj: Boxified<T>, values: T) { 35 for (let k in values) { 36 obj[k].value = values[k]; 203 function assignBoxified(obj, values) {
204 for (var k in values) {
205 obj[k].value = values[k];
311 declare function assignBoxified<T>(obj: Boxified<T>, values: T): void;
|
H A D | variadicTuples2.js | 80 function pipe<T extends readonly unknown[]>(...args: [...T, (...values: T) => void]) { 81 const callback = args[args.length - 1] as (...values: T) => void; 82 const values = args.slice(0, -1) as unknown as T; 83 callback(...values); 183 var values = args.slice(0, -1);
184 callback.apply(void 0, values);
261 declare function pipe<T extends readonly unknown[]>(...args: [...T, (...values: T) => void]): void;
|
/third_party/protobuf/java/util/src/test/java/com/google/protobuf/util/ |
H A D | TimeUtilTest.java | 83 private final Timestamp[] values; field in TimeUtilTest.ParseTimestampThread 85 public ParseTimestampThread(String[] strings, Timestamp[] values) { in ParseTimestampThread() argument 87 this.values = values; in ParseTimestampThread() 101 if (result.getSeconds() != values[index].getSeconds() in run() 102 || result.getNanos() != values[index].getNanos()) { in run() 104 "Actual result: " + result.toString() + ", expected: " + values[index].toString(); in run() 268 // which includes negative values. in testDurationStringFormat() 469 // Divisions (with values larger than Long.MAX_VALUE in nanoseconds). in testTimeOperations() 477 // Divisions involving negative values in testTimeOperations() [all...] |
/base/hiviewdfx/hidumper/test/unittest/common/ |
H A D | memory_dumper_test.cpp | 178 vector<string> values;
in HWTEST_F() local 179 StringUtils::GetInstance().StringSplit(result, ":", values); // Dma:0 kB
in HWTEST_F() 181 if (!values.empty() && values.size() >= 2) { // 2: Dma, 0 kB
in HWTEST_F() 182 dmaStr = values[1];
in HWTEST_F()
|
/base/request/request/frameworks/js/napi/src/ |
H A D | js_notify_data_listener.cpp | 188 napi_value values[NapiUtils::TWO_ARG] = { nullptr }; in DoJSTask() local 190 this->NotifyDataProcess(notifyData, values, paramNumber); in DoJSTask() 193 this->OnMessageReceive(values, paramNumber); in DoJSTask() 197 this->OnMessageReceive(values, paramNumber); in DoJSTask() 201 this->OnMessageReceive(values, paramNumber); in DoJSTask()
|
/base/telephony/telephony_data/opkey/src/ |
H A D | opkey_ability.cpp | 110 int OpKeyAbility::BatchInsert(const Uri &uri, const std::vector<DataShare::DataShareValuesBucket> &values) in BatchInsert() argument 142 OHOS::NativeRdb::ValuesBucket values = RdbDataShareAdapter::RdbUtils::ToValuesBucket(value); in Insert() local 143 helper_.Insert(id, values, TABLE_OPKEY_INFO); in Insert() 216 OHOS::NativeRdb::ValuesBucket values = RdbDataShareAdapter::RdbUtils::ToValuesBucket(value); in Update() local 217 result = helper_.Update(changedRows, values, rdbPredicates); in Update()
|
/base/useriam/user_auth_framework/services/context/src/ |
H A D | simple_auth_context.cpp | 63 Attributes values; in GetPropertyForAuthResult() local 64 int32_t ret = resourceNode->GetProperty(attr, values); in GetPropertyForAuthResult() 68 bool getNextDurationRet = values.GetInt32Value(Attributes::ATTR_NEXT_FAIL_LOCKOUT_DURATION, in GetPropertyForAuthResult() 72 bool getFreezingTimeRet = values.GetInt32Value(Attributes::ATTR_FREEZING_TIME, resultInfo.freezingTime); in GetPropertyForAuthResult() 74 bool getRemainTimesRet = values.GetInt32Value(Attributes::ATTR_REMAIN_TIMES, resultInfo.remainTimes); in GetPropertyForAuthResult()
|
/kernel/linux/linux-5.10/drivers/char/agp/ |
H A D | efficeon-agp.c | 92 struct aper_size_info_lvl2 *values; in efficeon_fetch_size() local 95 values = A_SIZE_LVL2(agp_bridge->driver->aperture_sizes); in efficeon_fetch_size() 98 if (temp == values[i].size_value) { in efficeon_fetch_size() 100 agp_bridge->current_size = (void *) (values + i); in efficeon_fetch_size() 102 return values[i].size; in efficeon_fetch_size()
|
H A D | ali-agp.c | 25 struct aper_size_info_32 *values; in ali_fetch_size() local 29 values = A_SIZE_32(agp_bridge->driver->aperture_sizes); in ali_fetch_size() 32 if (temp == values[i].size_value) { in ali_fetch_size() 34 agp_bridge->current_size = (void *) (values + i); in ali_fetch_size() 36 return values[i].size; in ali_fetch_size()
|
/kernel/linux/linux-5.10/drivers/iio/pressure/ |
H A D | hp206c.c | 96 u8 values[3]; in hp206c_read_20bit() local 98 ret = i2c_smbus_read_i2c_block_data(client, cmd, sizeof(values), values); in hp206c_read_20bit() 101 if (ret != sizeof(values)) in hp206c_read_20bit() 103 return get_unaligned_be24(&values[0]) & GENMASK(19, 0); in hp206c_read_20bit()
|