/kernel/liteos_a/testsuites/kernel/sample/kernel_base/core/task/full/ |
H A D | It_los_task_063.c | 43 int value; in TaskF02() local 47 HAL_READ_UINT32(&g_testCount, value); in TaskF02() 49 while (value != 4) { // 4, assert value . in TaskF02() 50 HAL_READ_UINT32(&g_testCount, value); in TaskF02() 53 HAL_READ_UINT32(&g_testCount, value); in TaskF02() 54 g_testCount = value; in TaskF02()
|
H A D | It_los_task_075.c | 42 int value; in TaskF02() local 47 HAL_READ_UINT32(&g_testCount, value); in TaskF02() 49 while (value <= 2) { // 2, Waiting for the change of value. in TaskF02() 50 HAL_READ_UINT32(&g_testCount, value); in TaskF02() 53 HAL_READ_UINT32(&g_testCount, value); in TaskF02() 54 g_testCount = value; in TaskF02()
|
/kernel/linux/linux-6.6/sound/soc/codecs/ |
H A D | rl6347a.c | 16 int rl6347a_hw_write(void *context, unsigned int reg, unsigned int value) in rl6347a_hw_write() argument 28 rl6347a->index_cache[i].def = value; in rl6347a_hw_write() 40 * 12 bit VID: value should be 0 in rl6347a_hw_write() 43 data[2] = ((reg >> 8) & 0xff) | ((value >> 8) & 0xff); in rl6347a_hw_write() 44 data[3] = value & 0xff; in rl6347a_hw_write() 59 int rl6347a_hw_read(void *context, unsigned int reg, unsigned int *value) in rl6347a_hw_read() argument 100 *value = be32_to_cpu(buf); in rl6347a_hw_read()
|
/kernel/linux/linux-6.6/scripts/ |
H A D | check-sysctl-docs | 36 # Remove punctuation from the given value 37 function trimpunct(value) { 38 while (value ~ /^["&]/) { 39 value = substr(value, 2) 41 while (value ~ /[]["&,}]$/) { 42 value = substr(value, 1, length(value) - 1) 44 return value [all...] |
/third_party/ffmpeg/libavcodec/ |
H A D | mlp.h | 166 static inline uint8_t xor_32_to_8(uint32_t value) in xor_32_to_8() argument 168 value ^= value >> 16; in xor_32_to_8() 169 value ^= value >> 8; in xor_32_to_8() 170 return value; in xor_32_to_8()
|
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/ |
H A D | CalendarUtil.java | 36 * value of calendar keyword is returned. Otherwise, 45 // canonicalize keyword value. in getCalendarType() 83 public void put(UResource.Key key, UResource.Value value, boolean noFallback) { in put() argument 84 UResource.Table calendarPreferenceData = value.getTable(); in put() 85 for (int i = 0; calendarPreferenceData.getKeyAndValue(i, key, value); ++i) { in put() 86 UResource.Array types = value.getArray(); in put() 88 if (types.getValue(0, value)) { in put() 89 String type = value.getString(); in put()
|
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/impl/ |
H A D | CalendarUtil.java | 38 * value of calendar keyword is returned. Otherwise, 47 // canonicalize keyword value. in getCalendarType() 85 public void put(UResource.Key key, UResource.Value value, boolean noFallback) { in put() argument 86 UResource.Table calendarPreferenceData = value.getTable(); in put() 87 for (int i = 0; calendarPreferenceData.getKeyAndValue(i, key, value); ++i) { in put() 88 UResource.Array types = value.getArray(); in put() 90 if (types.getValue(0, value)) { in put() 91 String type = value.getString(); in put()
|
/third_party/jerryscript/tests/jerry/ |
H A D | array-prototype-indexof.js | 92 var value = array.indexOf(4, { variable 98 assert(value === -1); 102 var value = array.indexOf(2, { variable 108 assert(value === 1); 112 var value = array.indexOf(6, { variable 118 assert(value === -1);
|
H A D | array-prototype-map.js | 66 var newArr = arr.map(function(value) { return value; }); 100 var func2 = function(value) { 101 return this.add + value; 108 var func3 = function(value, idx, thisobj) { 109 return value * idx + thisobj.const;
|
H A D | array-prototype-lastindexof.js | 75 var value = array.lastIndexOf(4, { variable 81 assert(value === -1); 85 var value = array.lastIndexOf(1, { variable 91 assert(value === 0); 95 var value = array.indexOf(5, { variable 101 assert(value === -1);
|
/third_party/jerryscript/tests/jerry/es2015/ |
H A D | array-prototype-keys.js | 29 assert (current_item.value === i); 35 assert (current_item.value === undefined); 53 assert (current_item.value === i); 62 assert (current_item.value === undefined); 71 assert (current_item.value === undefined); 81 assert (current_item.value === i);
|
H A D | generator-yield-iterator.js | 16 function check_result(result, value, done) 18 assert(result.value === value) 83 return { value:2, done:false } 88 return { value:3, done:false } 91 return { value:4, done:true }
|
/third_party/jerryscript/jerry-core/ext/ |
H A D | debug-utils.c | 15 void PrintObjectValueProperties(ecma_value_t value) in PrintObjectValueProperties() argument 17 if (!ecma_is_value_object(value)) { in PrintObjectValueProperties() 20 ecma_object_t* object = ecma_get_object_from_value(value); in PrintObjectValueProperties() 47 if (ecma_is_value_object(prop_value_p.value)) { in PrintObjectProperties() 49 string_value = ecma_op_to_string (prop_value_p.value); in PrintObjectProperties() 51 string_value = ecma_op_to_string (prop_value_p.value); in PrintObjectProperties() 53 // handle value_value is error value? in PrintObjectProperties()
|
/third_party/jerryscript/jerry-core/ecma/operations/ |
H A D | ecma-symbol-object.c | 41 * @return ecma value 42 * Returned value must be freed with ecma_free_value 79 * @return ecma value 80 * Returned value must be freed with ecma_free_value 83 ecma_op_create_symbol_object (const ecma_value_t value) /**< symbol value */ in ecma_op_create_symbol_object() argument 85 JERRY_ASSERT (ecma_is_value_symbol (value)); in ecma_op_create_symbol_object() 94 ext_object_p->u.class_prop.u.value = ecma_copy_value (value); in ecma_op_create_symbol_object() 118 * @return ecma value [all...] |
/third_party/jinja2/ |
H A D | meta.py | 88 if isinstance(template_name.value, str): 89 yield template_name.value 98 if isinstance(template.value, str): 99 yield template.value 104 template.value, (tuple, list) 106 for template_name in template.value:
|
/third_party/node/lib/internal/util/parse_args/ |
H A D | utils.js | 40 * Determines if the argument may be used as an option value. 47 function isOptionValue(value) { 48 if (value == null) return false; 58 * In strict mode we throw errors if value is option-like. 60 function isOptionLikeValue(value) { 61 if (value == null) return false; 63 return value.length > 1 && StringPrototypeCharAt(value, 0) === '-'; 91 * Determines if `arg` is a long option and value in the same argument. 112 * // -fb is an option and a value, no [all...] |
/third_party/node/lib/internal/webstreams/ |
H A D | compression.js | 41 function isCompressionStream(value) { 42 return typeof value?.[kHandle] === 'object' && 43 value?.[kType] === 'CompressionStream'; 46 function isDecompressionStream(value) { 47 return typeof value?.[kHandle] === 'object' && 48 value?.[kType] === 'DecompressionStream';
|
/third_party/node/deps/v8/src/wasm/ |
H A D | memory-tracing.cc | 20 base::EmbeddedVector<char, 91> value; in TraceMemoryOperation() local 26 base::SNPrintF(value, str ":" format, \ in TraceMemoryOperation() 38 SNPrintF(value, "s128:%d %d %d %d / %08x %08x %08x %08x", in TraceMemoryOperation() 49 SNPrintF(value, "???"); in TraceMemoryOperation() 52 tier.has_value() ? ExecutionTierToString(tier.value()) : "?"; in TraceMemoryOperation() 55 value.begin()); in TraceMemoryOperation()
|
/third_party/node/deps/v8/third_party/jinja2/ |
H A D | meta.py | 78 if isinstance(template_name.value, string_types): 79 yield template_name.value 88 if isinstance(node.template.value, string_types): 89 yield node.template.value 94 node.template.value, (tuple, list) 96 for template_name in node.template.value:
|
/third_party/node/tools/inspector_protocol/jinja2/ |
H A D | meta.py | 84 if isinstance(template_name.value, string_types): 85 yield template_name.value 94 if isinstance(node.template.value, string_types): 95 yield node.template.value 100 isinstance(node.template.value, (tuple, list)): 101 for template_name in node.template.value:
|
/third_party/node/deps/npm/node_modules/@pkgjs/parseargs/ |
H A D | utils.js | 40 * Determines if the argument may be used as an option value. 47 function isOptionValue(value) { 48 if (value == null) return false; 58 * In strict mode we throw errors if value is option-like. 60 function isOptionLikeValue(value) { 61 if (value == null) return false; 63 return value.length > 1 && StringPrototypeCharAt(value, 0) === '-'; 91 * Determines if `arg` is a long option and value in the same argument. 112 * // -fb is an option and a value, no [all...] |
/third_party/node/deps/npm/node_modules/spdx-expression-parse/ |
H A D | scan.js | 15 // `value` can be a regexp or a string. 18 function read (value) { 19 if (value instanceof RegExp) { 21 var match = chars.match(value) 27 if (source.indexOf(value, index) === index) { 28 index += value.length 29 return value
|
/third_party/mesa3d/src/panfrost/drm-shim/ |
H A D | panfrost_noop.c | 55 gp->value = strtol(override_version, NULL, 16); in pan_ioctl_get_param() 57 gp->value = PAN_GPU_ID_DEFAULT; in pan_ioctl_get_param() 64 gp->value = 0xF; in pan_ioctl_get_param() 67 gp->value = 0x809; in pan_ioctl_get_param() 72 gp->value = ~0; in pan_ioctl_get_param() 77 gp->value = 0; in pan_ioctl_get_param()
|
/third_party/libdrm/radeon/ |
H A D | bof.h | 50 void *value; member 61 extern int bof_object_set(bof_t *object, const char *keyname, bof_t *value); 64 extern int bof_array_append(bof_t *array, bof_t *value); 68 extern bof_t *bof_blob(unsigned size, void *value); 72 extern bof_t *bof_string(const char *value); 74 extern bof_t *bof_int32(int32_t value);
|
/third_party/libexif/libexif/ |
H A D | exif-utils.h | 68 /*! Retrieve an #ExifShort value from memory. 70 * \param[in] b pointer to raw EXIF value in memory 71 * \param[in] order byte order of raw value 72 * \return value 76 /*! Retrieve an #ExifSShort value from memory. 78 * \param[in] b pointer to raw EXIF value in memory 79 * \param[in] order byte order of raw value 80 * \return value 84 /*! Retrieve an #ExifLong value from memory. 86 * \param[in] b pointer to raw EXIF value i [all...] |