Home
last modified time | relevance | path

Searched refs:value (Results 1676 - 1700 of 26628) sorted by relevance

1...<<61626364656667686970>>...1066

/third_party/jerryscript/jerry-ext/debugger/
H A Ddebugger-ws.c82 * Convert a 6-bit value to a Base64 character.
87 jerryx_to_base64_character (uint8_t value) /**< 6-bit value */ in jerryx_to_base64_character() argument
89 if (value < 26) in jerryx_to_base64_character()
91 return (uint8_t) (value + 'A'); in jerryx_to_base64_character()
94 if (value < 52) in jerryx_to_base64_character()
96 return (uint8_t) (value - 26 + 'a'); in jerryx_to_base64_character()
99 if (value < 62) in jerryx_to_base64_character()
101 return (uint8_t) (value - 52 + '0'); in jerryx_to_base64_character()
104 if (value in jerryx_to_base64_character()
122 uint8_t value = (source_p[0] >> 2); jerryx_to_base64() local
[all...]
/third_party/node/lib/internal/
H A Dmime.js116 const encode = (value) => {
117 if (value.length === 0) return '""';
118 const encode = SafeStringPrototypeSearch(value, NOT_HTTP_TOKEN_CODE_POINT) !== -1;
119 if (!encode) return value;
120 const escaped = escapeQuoteOrSolidus(value);
143 set(name, value) {
146 value = `${value}`;
156 value,
160 'parameter value',
[all...]
/third_party/node/deps/npm/node_modules/gauge/lib/
H A Drender-template.js44 template.push({ value: values[pre] })
53 template.push({ value: values[post] })
65 if (cloned.value == null) {
70 cloned.value = cloned.default
73 cloned.value = values[type]
76 if (cloned.value == null || cloned.value === '') {
83 cloned.value = generatePreAndPost(cloned, values)
204 return item.value(values, values[item.type + 'Theme'] || {}, length)
206 return item.value(value
[all...]
/third_party/mesa3d/src/util/
H A Dvl_vlc.h52 int8_t value; member
74 dst[i].value = 0; in vl_vlc_init_table()
148 uint64_t value = *(const uint32_t*)vlc->data; in vl_vlc_fillbits() local
151 value = util_bswap32(value); in vl_vlc_fillbits()
154 vlc->buffer |= value << vlc->invalid_bits; in vl_vlc_fillbits()
247 unsigned value; in vl_vlc_get_uimsbf() local
251 value = vlc->buffer >> (64 - num_bits); in vl_vlc_get_uimsbf()
254 return value; in vl_vlc_get_uimsbf()
258 * treat num_bits as signed value an
263 signed value; vl_vlc_get_simsbf() local
288 vl_vlc_search_byte(struct vl_vlc *vlc, unsigned num_bits, uint8_t value) vl_vlc_search_byte() argument
[all...]
/third_party/mesa3d/src/gallium/drivers/r600/sb/
H A Dsb_sched.h120 typedef std::map<value*, unsigned> value_index_map;
154 sel_chan get_value_id(value *v);
226 value *current_ar;
227 value *current_pr;
229 value *current_idx[2];
246 alu_node* create_ar_load(value *v, chan_select ar_channel);
262 typedef std::map<sel_chan, value*> rv_map;
278 void load_index_register(value *v, unsigned idx);
289 void release_src_val(value *v);
291 void init_uc_val(container_node *c, value *
[all...]
/third_party/libphonenumber/metadata/src/main/java/com/google/i18n/phonenumbers/metadata/
H A DDigitSequence.java51 // class will also need to be considered carefully and details like the "index()" value will have
68 // integer domain, to impose a true lexicographical ordering. The value of a digit sequence is
74 // To calculate this value dynamically for any length N, offset=floor(10^N / 9).
117 long next = num.value + 1; in next()
128 long prev = num.value - 1; in previous()
155 /** Returns the digit sequence of length one representing the given digit value. */
157 Preconditions.checkArgument(0 <= digit && digit <= 9, "invalid digit value: %s", digit); in singleton()
196 // The decimal value of the digit sequence (excluding leading zeros, obviously).
197 private final long value; field in DigitSequence
204 DigitSequence(int length, long value) { in DigitSequence() argument
[all...]
/third_party/skia/third_party/externals/angle2/src/tests/gl_tests/
H A DFenceSyncTests.cpp196 GLint value = 30; in TEST_P() local
197 glGetSynciv(sync, GL_OBJECT_TYPE, -1, &length, &value); in TEST_P()
200 EXPECT_EQ(30, value); in TEST_P()
204 glGetSynciv(reinterpret_cast<GLsync>(30), GL_OBJECT_TYPE, 1, &length, &value); in TEST_P()
207 EXPECT_EQ(30, value); in TEST_P()
214 GLint value = 0; in TEST_P() local
217 glGetSynciv(sync, GL_SYNC_CONDITION, 1, &length, &value); in TEST_P()
219 EXPECT_EQ(GL_SYNC_GPU_COMMANDS_COMPLETE, value); in TEST_P()
221 glGetSynciv(sync, GL_OBJECT_TYPE, 1, &length, &value); in TEST_P()
223 EXPECT_EQ(GL_SYNC_FENCE, value); in TEST_P()
242 GLint value = 0; TEST_P() local
[all...]
/third_party/skia/src/core/
H A DSkWriteBuffer.h39 virtual void writeBool(bool value) = 0;
40 virtual void writeScalar(SkScalar value) = 0;
41 virtual void writeScalarArray(const SkScalar* value, uint32_t count) = 0;
42 virtual void writeInt(int32_t value) = 0;
43 virtual void writeIntArray(const int32_t* value, uint32_t count) = 0;
44 virtual void writeUInt(uint32_t value) = 0;
45 void write32(int32_t value) { in write32() argument
46 this->writeInt(value); in write32()
48 virtual void writeString(const char* value) = 0;
104 void writeBool(bool value) overrid
[all...]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ExecutionEngine/Orc/RPC/
H A DRawByteChannel.h91 std::is_base_of<RawByteChannel, ChannelT>::value &&
92 (std::is_same<T, uint8_t>::value || std::is_same<T, int8_t>::value ||
93 std::is_same<T, uint16_t>::value || std::is_same<T, int16_t>::value ||
94 std::is_same<T, uint32_t>::value || std::is_same<T, int32_t>::value ||
95 std::is_same<T, uint64_t>::value || std::is_same<T, int64_t>::value ||
96 std::is_same<T, char>::value)>
[all...]
/third_party/typescript/tests/baselines/reference/
H A DtypeOfThisInStaticMembers11(target=es5).js61 throw new TypeError("Class extends value " + String(b) + " is not a constructor or null");
80 value: 1
86 value: (void 0).a + 1
102 value: function () {
120 value: 2
126 value: (void 0).c + 1
132 value: _super.a + (void 0).c + 1
138 value: function () { return (void 0).c + 1; }
144 value: function () { this.c + 1; }
160 value
[all...]
H A DvoidUndefinedReduction.js4 function isDefined<T>(value: T | undefined | null | void): value is T {
5 return value !== undefined && value !== null;
18 function isDefined(value) {
19 return value !== undefined && value !== null;
/third_party/protobuf/php/tests/
H A DWrapperTypeSettersTest.php33 foreach ($sequence as list($value, $expectedValue)) {
34 // Manually wrap the value to pass to the old setter
35 $wrappedValue = is_null($value) ? $value : new $wrapperClass(['value' => $value]);
39 $newSetterMsg->$valueSetter($value);
44 // Check that old getter returns the same value after using the
49 // Check that new getter returns the unwrapped value from
64 [1.1, new DoubleValue(["value"
[all...]
/third_party/pulseaudio/src/tests/
H A Dhashmap-test.c10 int value; member
45 entry.value = 0; in START_TEST()
60 ck_abort_msg("Got wrong value from hashmap for k=0; got %p, want %p", get_ret, &entry); in START_TEST()
72 ck_abort_msg("Hashmap returned wrong value during free; got %p, want %p", get_ret, &entry); in START_TEST()
93 entries[i].value = i; in START_TEST()
129 entries[i].value = i; in START_TEST()
137 ck_abort_msg("Unexpected failure putting k=%d v=%d into the map", entries[i].key, entries[i].value); in START_TEST()
156 if ((*v).value != i) { in START_TEST()
157 ck_abort_msg("Hashmap returned wrong value for k=%d; got %d, want %d", *k, (*v).value, in START_TEST()
[all...]
/third_party/skia/modules/svg/src/
H A DSkSVGXMLDOM.cpp32 uint64_t value = 0; member
44 SkDOM::Attr* attr, const char name[], const char value[], const SkColorEx& svgThemeColor) { in setSVGColor()
45 if (svgThemeColor.valid && (((strcmp(name, "fill") == 0) && (strcmp(value, "none") != 0)) || in setSVGColor()
46 ((strcmp(name, "stroke") == 0) && (strcmp(value, "none") != 0))) && isPureColor(value)) { in setSVGColor()
50 attr->fValue = dupstr(fAlloc, value, strlen(value)); in setSVGColor()
65 attr->fValue = dupstr(fAlloc, value, strlen(value)); in setSVGColor()
74 bool onAddAttribute(const char name[], const char value[]) overrid
43 setSVGColor( SkDOM::Attr* attr, const char name[], const char value[], const SkColorEx& svgThemeColor) setSVGColor() argument
[all...]
/third_party/vk-gl-cts/framework/common/
H A DtcuFormatUtil.hpp39 // Hexadecimal value formatter.
44 Hex (deUint64 value_) : value(value_) {} in Hex()
55 << value; in toStream()
67 deUint64 value; member in tcu::Format::Hex
93 Bitfield (deUint64 value, const BitDesc* begin, const BitDesc* end) in Bitfield() argument
94 : m_value (value) in Bitfield()
142 typedef const char* (*GetNameFunc) (T value);
144 Enum (GetNameFunc getName, T value) in Enum() argument
146 , m_value (value) in Enum()
249 template <typename T> inline deUint64 toUint64 (T value) { retur in makeMask64() argument
253 toHex(T value) toHex() argument
260 toHex(T value) toHex() argument
267 formatBitfield(T value, const Format::BitDesc (&desc)[Size]) formatBitfield() argument
[all...]
/vendor/ohemu/qemu_riscv32_mini_system_demo/fs_data/data/data/js/pages/index/
H A Dindex.js60 /******/ Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });
62 /******/ Object.defineProperty(exports, '__esModule', { value: true });
66 /******/ // mode & 1: value is a module id, require it
67 /******/ // mode & 2: merge all properties of value into the ns
68 /******/ // mode & 4: return value when already ns object
70 /******/ __webpack_require__.t = function(value, mode) {
71 /******/ if(mode & 1) value = __webpack_require__(value);
72 /******/ if(mode & 8) return value;
73 /******/ if((mode & 4) && typeof value
[all...]
/kernel/linux/linux-5.10/drivers/tty/serial/8250/
H A D8250_dw.c71 static inline int dw8250_modify_msr(struct uart_port *p, int offset, int value) in dw8250_modify_msr() argument
77 value |= d->msr_mask_on; in dw8250_modify_msr()
78 value &= ~d->msr_mask_off; in dw8250_modify_msr()
81 return value; in dw8250_modify_msr()
92 static void dw8250_check_lcr(struct uart_port *p, int value) in dw8250_check_lcr() argument
101 if ((value & ~UART_LCR_SPAR) == (lcr & ~UART_LCR_SPAR)) in dw8250_check_lcr()
108 __raw_writeq(value & 0xff, offset); in dw8250_check_lcr()
112 writel(value, offset); in dw8250_check_lcr()
114 iowrite32be(value, offset); in dw8250_check_lcr()
116 writeb(value, offse in dw8250_check_lcr()
148 dw8250_serial_out38x(struct uart_port *p, int offset, int value) dw8250_serial_out38x() argument
163 dw8250_serial_out(struct uart_port *p, int offset, int value) dw8250_serial_out() argument
175 unsigned int value = readb(p->membase + (offset << p->regshift)); dw8250_serial_in() local
183 unsigned int value; dw8250_serial_inq() local
190 dw8250_serial_outq(struct uart_port *p, int offset, int value) dw8250_serial_outq() argument
204 dw8250_serial_out32(struct uart_port *p, int offset, int value) dw8250_serial_out32() argument
216 unsigned int value = readl(p->membase + (offset << p->regshift)); dw8250_serial_in32() local
221 dw8250_serial_out32be(struct uart_port *p, int offset, int value) dw8250_serial_out32be() argument
233 unsigned int value = ioread32be(p->membase + (offset << p->regshift)); dw8250_serial_in32be() local
[all...]
/kernel/linux/linux-6.6/drivers/media/platform/sunxi/sun6i-csi/
H A Dsun6i_csi_bridge.c238 u32 value = SUN6I_CSI_IF_CFG_IF_CSI; in sun6i_csi_bridge_configure_parallel() local
245 value |= SUN6I_CSI_IF_CFG_SRC_TYPE_INTERLACED | in sun6i_csi_bridge_configure_parallel()
249 value |= SUN6I_CSI_IF_CFG_SRC_TYPE_PROGRESSIVE; in sun6i_csi_bridge_configure_parallel()
254 value |= SUN6I_CSI_IF_CFG_IF_CSI_YUV_COMBINED; in sun6i_csi_bridge_configure_parallel()
256 value |= SUN6I_CSI_IF_CFG_IF_CSI_YUV_RAW; in sun6i_csi_bridge_configure_parallel()
259 value |= SUN6I_CSI_IF_CFG_FIELD_NEGATIVE; in sun6i_csi_bridge_configure_parallel()
261 value |= SUN6I_CSI_IF_CFG_FIELD_POSITIVE; in sun6i_csi_bridge_configure_parallel()
264 value |= SUN6I_CSI_IF_CFG_VREF_POL_NEGATIVE; in sun6i_csi_bridge_configure_parallel()
266 value |= SUN6I_CSI_IF_CFG_VREF_POL_POSITIVE; in sun6i_csi_bridge_configure_parallel()
269 value | in sun6i_csi_bridge_configure_parallel()
323 u32 value = SUN6I_CSI_IF_CFG_IF_MIPI; sun6i_csi_bridge_configure_mipi_csi2() local
346 u32 value = 0; sun6i_csi_bridge_configure_format() local
[all...]
/third_party/node/deps/v8/src/baseline/ppc/
H A Dbaseline-assembler-ppc-inl.h177 void BaselineAssembler::JumpIfRoot(Register value, RootIndex index, in JumpIfRoot() argument
180 __ JumpIfRoot(value, index, target); in JumpIfRoot()
183 void BaselineAssembler::JumpIfNotRoot(Register value, RootIndex index, in JumpIfNotRoot() argument
186 __ JumpIfNotRoot(value, index, target); in JumpIfNotRoot()
189 void BaselineAssembler::JumpIfSmi(Register value, Label* target, in JumpIfSmi() argument
192 __ JumpIfSmi(value, target); in JumpIfSmi()
202 void BaselineAssembler::JumpIfNotSmi(Register value, Label* target, in JumpIfNotSmi() argument
205 __ JumpIfNotSmi(value, target); in JumpIfNotSmi()
236 void BaselineAssembler::TestAndBranch(Register value, int mask, Condition cc, in TestAndBranch() argument
239 __ AndU64(r0, value, Operan in TestAndBranch()
281 JumpIfPointer(Condition cc, Register value, MemOperand operand, Label* target, Label::Distance) JumpIfPointer() argument
291 JumpIfSmi(Condition cc, Register value, Smi smi, Label* target, Label::Distance) JumpIfSmi() argument
307 JumpIfTagged(Condition cc, Register value, MemOperand operand, Label* target, Label::Distance) JumpIfTagged() argument
315 JumpIfTagged(Condition cc, MemOperand operand, Register value, Label* target, Label::Distance) JumpIfTagged() argument
323 JumpIfByte(Condition cc, Register value, int32_t byte, Label* target, Label::Distance) JumpIfByte() argument
334 Move(Register output, TaggedIndex value) Move() argument
349 Move(Register output, Handle<HeapObject> value) Move() argument
354 Move(Register output, int32_t value) Move() argument
509 StoreTaggedSignedField(Register target, int offset, Smi value) StoreTaggedSignedField() argument
518 StoreTaggedFieldWithWriteBarrier(Register target, int offset, Register value) StoreTaggedFieldWithWriteBarrier() argument
528 StoreTaggedFieldNoWriteBarrier(Register target, int offset, Register value) StoreTaggedFieldNoWriteBarrier() argument
[all...]
/third_party/skia/src/ports/
H A DSkFontMgr_config_parser.cpp148 const char* value = attributes[i + 1];
151 size_t valueLen = strlen(value);
153 axisTag = SkSetFourByteTag(value[0], value[1], value[2], value[3]);
166 SK_FONTCONFIGPARSER_WARNING("'%s' is an invalid axis tag", value);
169 if (parse_fixed<16>(value, &axisStyleValue)) {
172 SK_FONTCONFIGPARSER_WARNING("'%s' is an invalid axis stylevalue", value);
179 coordinate.value
461 xml_entity_decl_handler(void *data, const XML_Char *entityName, int is_parameter_entity, const XML_Char *value, int value_length, const XML_Char *base, const XML_Char *systemId, const XML_Char *publicId, const XML_Char *notationName) xml_entity_decl_handler() argument
[all...]
/third_party/protobuf/src/google/protobuf/util/internal/
H A Ddefault_value_objectwriter.cc47 // Helper function to convert string value to given data type by calling the
48 // passed converter function on the DataPiece created from "value" argument.
49 // If value is empty or if conversion fails, the default_value is returned.
51 T ConvertTo(StringPiece value, in ConvertTo() argument
53 if (value.empty()) return default_value; in ConvertTo()
54 StatusOr<T> result = (DataPiece(value, true).*converter_fn)(); in ConvertTo()
55 return result.ok() ? result.value() : default_value; in ConvertTo()
79 StringPiece name, bool value) { in RenderBool()
81 ow_->RenderBool(name, value); in RenderBool()
83 RenderDataPiece(name, DataPiece(value)); in RenderBool()
78 RenderBool( StringPiece name, bool value) RenderBool() argument
88 RenderInt32( StringPiece name, int32 value) RenderInt32() argument
98 RenderUint32( StringPiece name, uint32 value) RenderUint32() argument
108 RenderInt64( StringPiece name, int64 value) RenderInt64() argument
118 RenderUint64( StringPiece name, uint64 value) RenderUint64() argument
128 RenderDouble( StringPiece name, double value) RenderDouble() argument
138 RenderFloat( StringPiece name, float value) RenderFloat() argument
148 RenderString( StringPiece name, StringPiece value) RenderString() argument
161 RenderBytes( StringPiece name, StringPiece value) RenderBytes() argument
[all...]
/third_party/vk-gl-cts/modules/gles3/functional/
H A Des3fDefaultVertexAttributeTests.cpp83 // returns the value loaded
103 tcu::Vector<TYPE, COMPONENTS> value; \
104 value = convertToTypeVec<Type, COMPONENTS>(v); \
107 return convertToTypeVec<float, 4>(value); \
137 tcu::Vector<TYPE, COMPONENTS> value; \
138 value = convertToTypeVec<Type, COMPONENTS>(v); \
140 gl.glVertexAttrib ##COMPS ##TYPECODE (index, value.getPtr()); \
141 return convertToTypeVec<float, 4>(value); \
171 tcu::Vector<TYPE, COMPONENTS> value; \
172 value
478 computeColor(const tcu::Vec4& value) computeColor() argument
[all...]
/kernel/linux/linux-6.6/drivers/platform/x86/
H A Dasus-wmi.c107 /* The WMI hotkey event value is always the same. */
326 tmp = (u32) obj->integer.value; in asus_wmi_evaluate_method3()
369 tmp = (u32) obj->integer.value; in asus_wmi_evaluate_method5()
422 err = (u32)obj->integer.value; in asus_wmi_evaluate_method_buf()
524 static void asus_wmi_tablet_sw_report(struct asus_wmi *asus, bool value) in asus_wmi_tablet_sw_report() argument
527 asus->tablet_switch_inverted ? !value : value); in asus_wmi_tablet_sw_report()
621 int result, value; in charge_mode_show() local
623 result = asus_wmi_get_devstate(asus, ASUS_WMI_DEVID_CHARGE_MODE, &value); in charge_mode_show()
627 return sysfs_emit(buf, "%d\n", value in charge_mode_show()
983 u32 value; ppt_pl2_sppt_store() local
1017 u32 value; ppt_pl1_spl_store() local
1051 u32 value; ppt_fppt_store() local
1085 u32 value; ppt_apu_sppt_store() local
1119 u32 value; ppt_platform_sppt_store() local
1153 u32 value; nv_dynamic_boost_store() local
1187 u32 value; nv_temp_target_store() local
1224 int value, ret, rv; charge_control_end_threshold_store() local
1330 tpd_led_set(struct led_classdev *led_cdev, enum led_brightness value) tpd_led_set() argument
1390 do_kbd_led_set(struct led_classdev *led_cdev, int value) do_kbd_led_set() argument
1402 kbd_led_set(struct led_classdev *led_cdev, enum led_brightness value) kbd_led_set() argument
1412 kbd_led_set_by_kbd(struct asus_wmi *asus, enum led_brightness value) kbd_led_set_by_kbd() argument
1423 int retval, value; kbd_led_get() local
1454 wlan_led_set(struct led_classdev *led_cdev, enum led_brightness value) wlan_led_set() argument
1487 lightbar_led_set(struct led_classdev *led_cdev, enum led_brightness value) lightbar_led_set() argument
1753 asus_get_adapter_status(struct hotplug_slot *hotplug_slot, u8 *value) asus_get_adapter_status() argument
2239 u32 value; asus_wmi_has_agfn_fan() local
2309 int value; pwm1_show() local
2343 int value; pwm1_store() local
2367 int value; fan1_input_show() local
2424 int value; pwm1_enable_store() local
2492 u32 value; asus_hwmon_temp1() local
2509 int value; fan2_input_show() local
2534 int value; fan3_input_show() local
2568 int value; pwm2_enable_store() local
2614 int value; pwm3_enable_store() local
2683 u32 value = ASUS_WMI_UNSUPPORTED_METHOD; asus_hwmon_sysfs_is_visible() local
2803 u8 value; fan_boost_mode_write() local
2988 int value, pwm, index; fan_curve_show() local
3038 u8 value; fan_curve_store() local
3084 int value, err; fan_curve_enable_store() local
3407 u8 value; throttle_thermal_policy_write() local
3800 asus_wmi_get_event_code(u32 value) asus_wmi_get_event_code() argument
3887 asus_wmi_notify(u32 value, void *context) asus_wmi_notify() argument
3942 int err, value; store_sys_wmi() local
3961 int value = asus_wmi_get_devstate_simple(asus, devid); show_sys_wmi() local
4003 int value, rv; cpufv_store() local
[all...]
/third_party/node/deps/v8/src/compiler/
H A Dcode-assembler.h146 static const ObjectType value = ObjectType::k##Name; \
151 static const ObjectType value = ObjectType::k##Name; \
156 static const ObjectType value = ObjectType::k##Name; \
435 !std::is_same<A, MaybeObject>::value, in operator TNode()
438 static_assert(types_have_common_values<A, PreviousType>::value, in operator TNode()
440 static_assert(std::is_convertible<TNode<A>, TNode<Object>>::value, in operator TNode()
445 !std::is_convertible<TNode<PreviousType>, TNode<A>>::value, in operator TNode()
449 if (std::is_same<PreviousType, MaybeObject>::value) { in operator TNode()
460 static_cast<int>(ObjectTypeOf<A>::value))), in operator TNode()
479 TNode<T> UncheckedCast(Node* value) { in UncheckedCast() argument
483 UncheckedCast(TNode<U> value) UncheckedCast() argument
492 ReinterpretCast(Node* value) ReinterpretCast() argument
496 Cast(Node* value, const char* location = �) Cast() argument
501 Cast(TNode<T> value, const char* location = �) Cast() argument
525 Uint64Constant(uint64_t value) Uint64Constant() argument
529 Uint32Constant(uint32_t value) Uint32Constant() argument
532 UintPtrConstant(uintptr_t value) UintPtrConstant() argument
536 PointerConstant(void* value) PointerConstant() argument
544 SmiConstant(E value) SmiConstant() argument
564 BoolConstant(bool value) BoolConstant() argument
596 Parameter( int value, cppgc::SourceLocation loc = cppgc::SourceLocation::Current()) Parameter() argument
602 message << "Parameter " << value; Parameter() local
614 UncheckedParameter(int value) UncheckedParameter() argument
938 Word64Not(TNode<Int64T> value) Word64Not() argument
941 Word64Not(TNode<Uint64T> value) Word64Not() argument
1080 WordShr(TNode<IntPtrT> value, int shift) WordShr() argument
1083 WordSar(TNode<IntPtrT> value, int shift) WordSar() argument
1140 Projection(TNode<PairT<T1, T2>> value) Projection() argument
1462 TNode<T> value() const { value() function in v8::internal::compiler::TypedCodeAssemblerVariable
1466 operator =(TNode<T> value) operator =() argument
[all...]
/third_party/skia/third_party/externals/tint/src/reader/wgsl/
H A Dparser_impl.cc367 auto gv = global_variable_decl(decos.value); in expect_global_decl()
374 builder_.AST().AddGlobalVariable(gv.value); in expect_global_decl()
378 auto gc = global_constant_decl(decos.value); in expect_global_decl()
386 builder_.AST().AddGlobalVariable(gc.value); in expect_global_decl()
398 builder_.AST().AddTypeDecl(ta.value); in expect_global_decl()
402 auto str = struct_decl(decos.value); in expect_global_decl()
410 builder_.AST().AddTypeDecl(str.value); in expect_global_decl()
421 return expect_decorations_consumed(decos.value); in expect_global_decl()
424 auto func = function_decl(decos.value); in expect_global_decl()
429 builder_.AST().AddFunction(func.value); in expect_global_decl()
[all...]

Completed in 20 milliseconds

1...<<61626364656667686970>>...1066