Home
last modified time | relevance | path

Searched refs:value (Results 2601 - 2625 of 13907) sorted by relevance

1...<<101102103104105106107108109110>>...557

/third_party/mesa3d/src/imagination/rogue/
H A Drogue_constreg.c41 uint32_t value; member
47 .value = (VALUE), .index = (INDEX), \
167 if (l->value < r->value) in constreg_cmp()
169 else if (l->value > r->value) in constreg_cmp()
176 * \brief Determines whether a given integer value exists in a constant
179 * \param[in] value The value required.
180 * \return The index of the constant register containing the value, o
183 rogue_constreg_lookup(uint32_t value) rogue_constreg_lookup() argument
[all...]
/third_party/node/deps/icu-small/source/common/
H A Dhash.h84 inline void* put(const UnicodeString& key, void* value, UErrorCode& status);
86 inline int32_t puti(const UnicodeString& key, int32_t value, UErrorCode& status);
88 inline int32_t putiAllowZero(const UnicodeString& key, int32_t value, UErrorCode& status);
204 inline void* Hashtable::put(const UnicodeString& key, void* value, UErrorCode& status) { in put() argument
205 return uhash_put(hash, new UnicodeString(key), value, &status); in put()
208 inline int32_t Hashtable::puti(const UnicodeString& key, int32_t value, UErrorCode& status) { in puti() argument
209 return uhash_puti(hash, new UnicodeString(key), value, &status); in puti()
212 inline int32_t Hashtable::putiAllowZero(const UnicodeString& key, int32_t value, in putiAllowZero() argument
214 return uhash_putiAllowZero(hash, new UnicodeString(key), value, &status); in putiAllowZero()
/third_party/ltp/testcases/kernel/syscalls/fgetxattr/
H A Dfgetxattr02.c16 * - checks returned value to be the same as we set
19 * - checks returned value to be the same as we set
22 * - checks returned value to be the same as we set
54 #define XATTR_TEST_VALUE "this is a test value"
73 char *value; member
86 .value = XATTR_TEST_VALUE,
97 .value = XATTR_TEST_VALUE,
108 .value = XATTR_TEST_VALUE,
119 .value = XATTR_TEST_VALUE,
129 .value
[all...]
/third_party/lwip/src/apps/snmp/
H A Dsnmp_scalar.c45 static s16_t snmp_scalar_array_get_value(struct snmp_node_instance *instance, void *value);
46 static snmp_err_t snmp_scalar_array_set_test(struct snmp_node_instance *instance, u16_t value_len, void *value);
47 static snmp_err_t snmp_scalar_array_set_value(struct snmp_node_instance *instance, u16_t value_len, void *value);
194 snmp_scalar_array_get_value(struct snmp_node_instance *instance, void *value) in snmp_scalar_array_get_value() argument
201 result = array_node->get_value(array_node_def, value); in snmp_scalar_array_get_value()
207 snmp_scalar_array_set_test(struct snmp_node_instance *instance, u16_t value_len, void *value) in snmp_scalar_array_set_test() argument
214 result = array_node->set_test(array_node_def, value_len, value); in snmp_scalar_array_set_test()
220 snmp_scalar_array_set_value(struct snmp_node_instance *instance, u16_t value_len, void *value) in snmp_scalar_array_set_value() argument
227 result = array_node->set_value(array_node_def, value_len, value); in snmp_scalar_array_set_value()
/third_party/libdrm/tests/proptest/
H A Dproptest.c77 dump_prop(uint32_t prop_id, uint64_t value) in dump_prop() argument
130 (uint64_t)prop->enums[i].value); in dump_prop()
136 (1LL << prop->enums[i].value)); in dump_prop()
153 dump_blob(value); in dump_prop()
155 printf(" %"PRId64"\n", value); in dump_prop()
157 printf(" %"PRIu64"\n", value); in dump_prop()
236 uint64_t value; in setProperty() local
250 value = atoll(argv[3]); in setProperty()
252 return drmModeObjectSetProperty(fd, obj_id, obj_type, prop_id, value); in setProperty()
259 " %s [options] [obj id] [obj type] [prop id] [value]\ in usage()
[all...]
/third_party/mesa3d/src/gallium/drivers/svga/
H A Dsvga_tgsi_emit.h186 return svga_shader_emit_opcode(emit, opcode.value); in emit_instruction()
196 inst.value = 0; in inst_token()
212 inst.value = 0; in inst_token_predicated()
229 inst.value = 0; in inst_token_setp()
251 dest.value = 0; in dst_register()
289 src.value = 0;
310 src.indirect.value = 0;
319 return dst_register(SVGA3dShaderGetRegType(src.base.value), src.base.num);
327 return src_register(SVGA3dShaderGetRegType(dst.value), dst.num);
/third_party/node/deps/undici/src/lib/fetch/
H A Dfile.js199 value: 'File',
245 converter: (value) => {
246 value = webidl.converters.DOMString(value)
247 value = value.toLowerCase()
249 if (value !== 'native') {
250 value = 'transparent'
253 return value
/third_party/libphonenumber/metadata/src/main/java/com/google/i18n/phonenumbers/metadata/table/
H A DColumn.java24 import com.google.auto.value.AutoValue;
57 * Returns a column for the specified enum type. The string representation of a value in this
58 * column is just the {@code toString()} value of the enum.
67 * stripped on parsing and added back for any String value with leading/trailing whitespace. The
68 * default value is the empty string.
76 * Returns a column for unsigned integers. The string representation of a value in this column
77 * matches the {@link Integer#toString(int)} value. The default value is {@code 0}.
84 * Returns a column for booleans. The string representation of a value in this column can be any
86 * value i
150 cast(@ullable Object value) cast() argument
182 serialize(@ullable Object value) serialize() argument
[all...]
/third_party/python/Tools/peg_generator/pegen/
H A Dfirst_sets.py102 if item.value not in self.rules:
103 return {item.value}
105 if item.value not in self.first_sets:
106 self.first_sets[item.value] = self.visit(self.rules[item.value])
107 return self.first_sets[item.value]
108 elif item.value in self.in_process:
111 return self.first_sets[item.value]
114 return {item.value}
/third_party/python/Lib/lib2to3/pgen2/
H A Ddriver.py45 type = value = start = end = line_text = None
48 type, value, start, end, line_text = quintuple
60 prefix += value
62 if value.endswith("\n"):
67 type = grammar.opmap[value]
70 token.tok_name[type], value, prefix)
71 if p.addtoken(type, value, (prefix, start)):
77 if value.endswith("\n"):
83 type, value, (prefix, start))
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/
H A DProgramImpl.h106 const GLfloat *value) = 0;
110 const GLfloat *value) = 0;
114 const GLfloat *value) = 0;
118 const GLfloat *value) = 0;
122 const GLfloat *value) = 0;
126 const GLfloat *value) = 0;
130 const GLfloat *value) = 0;
134 const GLfloat *value) = 0;
138 const GLfloat *value) = 0;
/third_party/skia/third_party/externals/angle2/src/libANGLE/
H A DCLKernel.cpp23 cl_int Kernel::getInfo(KernelInfo name, size_t valueSize, void *value, size_t *valueSizeRet) const in getInfo() argument
63 if (value != nullptr) in getInfo()
73 std::memcpy(value, copyValue, copySize); in getInfo()
86 void *value, in getWorkGroupInfo()
137 if (value != nullptr) in getWorkGroupInfo()
147 std::memcpy(value, copyValue, copySize); in getWorkGroupInfo()
160 void *value, in getArgInfo()
193 if (value != nullptr) in getArgInfo()
203 std::memcpy(value, copyValue, copySize); in getArgInfo()
83 getWorkGroupInfo(cl_device_id device, KernelWorkGroupInfo name, size_t valueSize, void *value, size_t *valueSizeRet) const getWorkGroupInfo() argument
157 getArgInfo(cl_uint argIndex, KernelArgInfo name, size_t valueSize, void *value, size_t *valueSizeRet) const getArgInfo() argument
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/gl/
H A DProgramGL.h67 const GLfloat *value) override;
71 const GLfloat *value) override;
75 const GLfloat *value) override;
79 const GLfloat *value) override;
83 const GLfloat *value) override;
87 const GLfloat *value) override;
91 const GLfloat *value) override;
95 const GLfloat *value) override;
99 const GLfloat *value) override;
/third_party/skia/third_party/externals/angle2/src/common/vulkan/
H A Dvulkan_icd.cpp23 void ResetEnvironmentVar(const char *variableName, const Optional<std::string> &value) in ResetEnvironmentVar() argument
25 if (!value.valid()) in ResetEnvironmentVar()
30 if (value.value().empty()) in ResetEnvironmentVar()
36 angle::SetEnvironmentVar(variableName, value.value().c_str()); in ResetEnvironmentVar()
143 mPreviousCWD = cwd.value();
188 angle::SetCWD(mPreviousCWD.value().c_str());
288 *physicalDeviceOut = integratedDevice.value();
/third_party/skia/third_party/externals/spirv-tools/test/
H A Dunit_spirv.h56 uint32_t value; member
58 #define I32_ENDIAN_HOST (o32_host_order.value)
66 // This function can be used by the gtest value printer.
77 const std::vector<uint32_t>& value() const { return value_; } in value() function in spvtest::WordVector
94 for (uint32_t value : words.value()) { in PrintTo()
95 *os << "0x" << std::setw(8) << std::setfill('0') << std::hex << value in PrintTo() local
139 explicit AutoText(const std::string& value) in AutoText()
140 : str(value), text({str.data(), str.size()}) {} in AutoText()
146 // An example case for an enumerated value, optionall
154 uint32_t value() const { return static_cast<uint32_t>(enum_value_); } value() function in spvtest::EnumCase
[all...]
/third_party/skia/third_party/externals/angle2/src/tests/egl_tests/
H A DEGLCreateContextAttribsTest.cpp105 EGLint value = 0; in TEST_P() local
106 EXPECT_EGL_TRUE(eglGetConfigAttrib(mDisplay, config, EGL_RENDERABLE_TYPE, &value)); in TEST_P()
108 if (((value & EGL_OPENGL_ES_BIT) == 0) && (notGLES1Config == EGL_NO_CONFIG_KHR)) in TEST_P()
113 if (((value & EGL_OPENGL_ES2_BIT) == 0) && (notGLES2Config == EGL_NO_CONFIG_KHR)) in TEST_P()
118 if (((value & EGL_OPENGL_ES3_BIT) == 0) && (notGLES3Config == EGL_NO_CONFIG_KHR)) in TEST_P()
189 EGLint value = 0; in TEST_P() local
190 EXPECT_EGL_TRUE(eglQueryContext(mDisplay, context, EGL_CONTEXT_PRIORITY_LEVEL_IMG, &value)); in TEST_P()
206 EGLint value = 0; in TEST_P() local
208 eglQueryContext(mDisplay, context, EGL_CONTEXT_PRIORITY_LEVEL_IMG, &value)); in TEST_P()
/third_party/skia/third_party/externals/angle2/src/tests/gl_tests/
H A DFramebufferMixedSamplesTest.cpp151 GLint value = -1; in TEST_P() local
152 glGetIntegerv(GL_COVERAGE_MODULATION_CHROMIUM, &value); in TEST_P()
153 EXPECT_EQ(GL_NONE, value); in TEST_P()
158 value = -1; in TEST_P()
159 glGetIntegerv(GL_COVERAGE_MODULATION_CHROMIUM, &value); in TEST_P()
160 EXPECT_EQ(expect, static_cast<GLenum>(value)); in TEST_P()
166 value = -1; in TEST_P()
167 glGetIntegerv(GL_COVERAGE_MODULATION_CHROMIUM, &value); in TEST_P()
168 EXPECT_EQ(static_cast<GLenum>(GL_ALPHA), static_cast<GLenum>(value)); in TEST_P()
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/test/
H A Dunit_spirv.h56 uint32_t value; member
58 #define I32_ENDIAN_HOST (o32_host_order.value)
66 // This function can be used by the gtest value printer.
77 const std::vector<uint32_t>& value() const { return value_; } in value() function in spvtest::WordVector
94 for (uint32_t value : words.value()) { in PrintTo()
95 *os << "0x" << std::setw(8) << std::setfill('0') << std::hex << value in PrintTo() local
139 explicit AutoText(const std::string& value) in AutoText()
140 : str(value), text({str.data(), str.size()}) {} in AutoText()
146 // An example case for an enumerated value, optionall
154 uint32_t value() const { return static_cast<uint32_t>(enum_value_); } value() function in spvtest::EnumCase
[all...]
/third_party/skia/third_party/externals/dawn/src/include/dawn/
H A DEnumClassBitmasks.h57 constexpr BoolConvertible(Integral value) : value(value) { in BoolConvertible()
60 return value != 0; in operator bool()
63 return static_cast<T>(value); in operator T()
66 Integral value; member
149 constexpr bool HasZeroOrOneBits(T value) { in HasZeroOrOneBits() argument
151 return (static_cast<Integral>(value) & (static_cast<Integral>(value) - 1)) == 0; in HasZeroOrOneBits()
/third_party/skia/third_party/externals/harfbuzz/src/
H A Dhb-ot-stat-table.hh42 OLDER_SIBLING_FONT_ATTRIBUTE = 0x0001, /* If set, this axis value table
43 * provides axis value information
54 * value represents the “normal” value
63 float get_value () const { return value.to_float (); } in get_value()
77 * to which the axis value record applies.
82 * attribute value. */
83 HBFixed value; /* A numeric value for this attribute value member
143 HBFixed value; /* A numeric value for this attribute value. */ global() member
165 HBFixed value; /* A numeric value for this attribute value. */ global() member
[all...]
/third_party/skia/third_party/externals/icu/source/common/
H A Dhash.h84 inline void* put(const UnicodeString& key, void* value, UErrorCode& status);
86 inline int32_t puti(const UnicodeString& key, int32_t value, UErrorCode& status);
88 inline int32_t putiAllowZero(const UnicodeString& key, int32_t value, UErrorCode& status);
204 inline void* Hashtable::put(const UnicodeString& key, void* value, UErrorCode& status) { in put() argument
205 return uhash_put(hash, new UnicodeString(key), value, &status); in put()
208 inline int32_t Hashtable::puti(const UnicodeString& key, int32_t value, UErrorCode& status) { in puti() argument
209 return uhash_puti(hash, new UnicodeString(key), value, &status); in puti()
212 inline int32_t Hashtable::putiAllowZero(const UnicodeString& key, int32_t value, in putiAllowZero() argument
214 return uhash_putiAllowZero(hash, new UnicodeString(key), value, &status); in putiAllowZero()
/third_party/skia/third_party/externals/abseil-cpp/absl/strings/internal/
H A Dcordz_sample_token_test.cc47 static_assert(std::is_copy_constructible<CordzSampleToken::Iterator>::value, in TEST()
49 static_assert(std::is_copy_assignable<CordzSampleToken::Iterator>::value, ""); in TEST()
50 static_assert(std::is_move_constructible<CordzSampleToken::Iterator>::value, in TEST()
52 static_assert(std::is_move_assignable<CordzSampleToken::Iterator>::value, ""); in TEST()
56 std::input_iterator_tag>::value, in TEST()
60 const CordzInfo&>::value, in TEST()
65 ptrdiff_t>::value, in TEST()
69 const CordzInfo*>::value, in TEST()
73 const CordzInfo&>::value, in TEST()
/third_party/selinux/libsepol/src/
H A Dutil.c77 if (v->val == perdatum->s.value) { in perm_name()
131 uint16_t value; in sepol_extended_perms_to_string() local
155 /* continue until high value found */ in sepol_extended_perms_to_string()
158 /* low value */ in sepol_extended_perms_to_string()
165 value = xperms->driver<<8 | bit; in sepol_extended_perms_to_string()
168 len = snprintf(p, sizeof(xpermsbuf) - xpermslen, "0x%hx-0x%hx ", low_value, value); in sepol_extended_perms_to_string()
170 len = snprintf(p, sizeof(xpermsbuf) - xpermslen, "0x%hx ", value); in sepol_extended_perms_to_string()
173 value = bit << 8; in sepol_extended_perms_to_string()
176 len = snprintf(p, sizeof(xpermsbuf) - xpermslen, "0x%hx-0x%hx ", low_value, (uint16_t) (value|0xff)); in sepol_extended_perms_to_string()
178 len = snprintf(p, sizeof(xpermsbuf) - xpermslen, "0x%hx-0x%hx ", value, (uint16_ in sepol_extended_perms_to_string()
[all...]
/third_party/spirv-tools/test/
H A Dunit_spirv.h56 uint32_t value; member
58 #define I32_ENDIAN_HOST (o32_host_order.value)
66 // This function can be used by the gtest value printer.
77 const std::vector<uint32_t>& value() const { return value_; } in value() function in spvtest::WordVector
94 for (uint32_t value : words.value()) { in PrintTo()
95 *os << "0x" << std::setw(8) << std::setfill('0') << std::hex << value in PrintTo() local
139 explicit AutoText(const std::string& value) in AutoText()
140 : str(value), text({str.data(), str.size()}) {} in AutoText()
146 // An example case for an enumerated value, optionall
154 uint32_t value() const { return static_cast<uint32_t>(enum_value_); } value() function in spvtest::EnumCase
[all...]
/third_party/libinput/src/
H A Devdev-tablet.c43 This value is higher during test suite runs */
186 current = e->value; in tablet_filter_axis_fuzz()
235 tablet->current_value[axis] = e->value; in tablet_process_absolute()
242 tablet->current_tool.id = e->value; in tablet_process_absolute()
338 double value = (absinfo->value - absinfo->minimum) / absinfo_range(absinfo); in normalize_slider() local
340 return value * 2 - 1; in normalize_slider()
346 double value = (absinfo->value - absinfo->minimum) / absinfo_range(absinfo); in normalize_distance() local
348 return value; in normalize_distance()
368 double value = (absinfo->value - base) / range; normalize_pressure() local
376 double value = (absinfo->value - absinfo->minimum) / absinfo_range(absinfo); adjust_tilt() local
434 double value = (absinfo->value - absinfo->minimum) / absinfo_range(absinfo); convert_to_degrees() local
440 normalize_wheel(struct tablet_dispatch *tablet, int value) normalize_wheel() argument
453 int value; tablet_update_xy() local
[all...]

Completed in 17 milliseconds

1...<<101102103104105106107108109110>>...557