Home
last modified time | relevance | path

Searched refs:value (Results 9776 - 9800 of 23098) sorted by relevance

1...<<391392393394395396397398399400>>...924

/third_party/mesa3d/src/gallium/drivers/lima/ir/pp/
H A Dinstr.c122 if (src->value[i].ui == dst->value[j].ui) in ppir_instr_insert_const()
129 dst->value[dst->num++] = src->value[i]; in ppir_instr_insert_const()
299 printf("%f ", instr->constant[i].value[j].f); in ppir_instr_print_list()
/third_party/mesa3d/src/gallium/drivers/r600/sb/
H A Dsb_ra_checker.cpp92 void ra_checker::check_value_gpr(node *n, unsigned id, value *v) { in check_value_gpr()
96 o << "operand value " << *v << " is not allocated"; in check_value_gpr()
103 o << "operand value " << *v << " was not previously written to its gpr"; in check_value_gpr()
109 o << "expected operand value " << *v in check_value_gpr()
121 value *v = *I; in check_src_vec()
148 value *v = *I; in process_op_dst()
182 value *s = n->src[id]; in check_phi_src()
209 std::fill(prev_dst, prev_dst + 5, (value*)NULL); in check_alu_group()
/third_party/node/deps/openssl/openssl/crypto/x509/
H A Dx509name.c325 return ASN1_STRING_set_by_NID(&ne->value, bytes, in X509_NAME_ENTRY_set_data()
330 i = ASN1_STRING_set(ne->value, bytes, len); in X509_NAME_ENTRY_set_data()
335 ne->value->type = ASN1_PRINTABLE_type(bytes, len); in X509_NAME_ENTRY_set_data()
337 ne->value->type = type; in X509_NAME_ENTRY_set_data()
353 return ne->value; in X509_NAME_ENTRY_get_data()
/third_party/node/deps/openssl/openssl/crypto/ocsp/
H A Docsp_cl.c190 *pname = rid->value.byName; in OCSP_resp_get0_id()
193 *pid = rid->value.byKey; in OCSP_resp_get0_id()
208 *pname = X509_NAME_dup(rid->value.byName); in OCSP_resp_get1_id()
211 *pid = ASN1_OCTET_STRING_dup(rid->value.byKey); in OCSP_resp_get1_id()
246 * revoked. Returns numerical value of status.
261 OCSP_REVOKEDINFO *rev = cst->value.revoked; in OCSP_single_get0_status()
/third_party/openssl/test/
H A Dstack_test.c59 int value; in test_int_stack() member
72 int value; in test_int_stack() member
105 TEST_info("int value %d", i); in test_int_stack()
139 /* find sorted -- the value is matched so we don't need to locate it */ in test_int_stack()
141 if (!TEST_int_eq(sk_sint_find(s, &finds[i].value), finds[i].sorted)) { in test_int_stack()
148 if (!TEST_int_eq(sk_sint_find_ex(s, &finds[i].value), finds[i].ex)) { in test_int_stack()
153 if (!TEST_int_eq(sk_sint_find_ex(s, &exfinds[i].value), exfinds[i].ex)){ in test_int_stack()
/third_party/openssl/test/testutil/
H A Ddriver.c158 test_printf_stderr("Invalid -%s value " in check_single_test_params()
159 "(Value must be a valid test name OR a value between %d..%d)\n", in check_single_test_params()
173 test_printf_stderr("Invalid -%s value for test %d:%s\t" in check_single_test_params()
187 int value; in process_shared_options() local
217 if (!opt_int(opt_arg(), &value)) in process_shared_options()
219 level = 4 * value; in process_shared_options()
223 if (!opt_int(opt_arg(), &value)) in process_shared_options()
225 set_seed(value); in process_shared_options()
/third_party/pulseaudio/src/pulse/
H A Dinternal.h144 int64_t value; member
304 #define PA_CHECK_VALIDITY_RETURN_ANY(context, expression, error, value) \
308 return value; \
320 #define PA_FAIL_RETURN_ANY(context, error, value) \
323 return value; \
/third_party/python/Lib/
H A Drunpy.py50 def __init__(self, value):
51 self.value = value
56 raise RuntimeError("Already preserving saved value")
58 sys.argv[0] = self.value
61 self.value = self._sentinel
215 alter_sys -- if True, sys.argv[0] is updated with the value of
/third_party/openssl/crypto/ocsp/
H A Docsp_cl.c190 *pname = rid->value.byName; in OCSP_resp_get0_id()
193 *pid = rid->value.byKey; in OCSP_resp_get0_id()
208 *pname = X509_NAME_dup(rid->value.byName); in OCSP_resp_get1_id()
211 *pid = ASN1_OCTET_STRING_dup(rid->value.byKey); in OCSP_resp_get1_id()
246 * revoked. Returns numerical value of status.
261 OCSP_REVOKEDINFO *rev = cst->value.revoked; in OCSP_single_get0_status()
/third_party/skia/third_party/externals/angle2/src/libGLESv2/
H A Degl_stubs_autogen.h108 EGLint *value);
128 EGLAttrib *value);
140 EGLint *value);
146 EGLint *value);
156 EGLint value);
/third_party/skia/third_party/externals/angle2/src/tests/gl_tests/
H A DSRGBFramebufferTest.cpp58 GLboolean value = GL_FALSE; in TEST_P() local
62 glGetBooleanv(GL_FRAMEBUFFER_SRGB_EXT, &value); in TEST_P()
66 EXPECT_GL_TRUE(value); in TEST_P()
72 glGetBooleanv(GL_FRAMEBUFFER_SRGB_EXT, &value); in TEST_P()
76 EXPECT_GL_FALSE(value); in TEST_P()
/third_party/skia/third_party/externals/swiftshader/src/Common/
H A DMath.hpp199 // Bit-cast of a floating-point value into a two's complement integer representation.
209 // 'Safe' clamping operation which always returns a value between min and max (inclusive).
382 unsigned char sRGB8toLinear8(unsigned char value);
388 inline T align(T value, unsigned int alignment) in align() argument
390 return ((value + alignment - 1) / alignment) * alignment; in align()
394 inline T align(T value) in align() argument
396 return ((value + alignment - 1) / alignment) * alignment; in align()
/third_party/skia/third_party/externals/swiftshader/src/Renderer/
H A DPixelProcessor.hpp198 void setFloatConstant(unsigned int index, const float value[4]);
199 void setIntegerConstant(unsigned int index, const int value[4]);
226 void setBumpmapMatrix(unsigned int stage, int element, float value);
227 void setLuminanceScale(unsigned int stage, float value);
228 void setLuminanceOffset(unsigned int stage, float value);
/third_party/skia/third_party/externals/swiftshader/src/System/
H A DMath.hpp167 // Bit-cast of a floating-point value into a two's complement integer representation.
177 // 'Safe' clamping operation which always returns a value between min and max (inclusive).
350 unsigned char sRGB8toLinear8(unsigned char value);
356 inline T align(T value, unsigned int alignment) in align() argument
358 return ((value + alignment - 1) / alignment) * alignment; in align()
362 inline T align(T value) in align() argument
364 return ((value + alignment - 1) / alignment) * alignment; in align()
372 // Convert floating value v to fixed point with p digits after the decimal point
/third_party/openssl/crypto/x509/
H A Dx509name.c325 return ASN1_STRING_set_by_NID(&ne->value, bytes, in X509_NAME_ENTRY_set_data()
330 i = ASN1_STRING_set(ne->value, bytes, len); in X509_NAME_ENTRY_set_data()
335 ne->value->type = ASN1_PRINTABLE_type(bytes, len); in X509_NAME_ENTRY_set_data()
337 ne->value->type = type; in X509_NAME_ENTRY_set_data()
353 return ne->value; in X509_NAME_ENTRY_get_data()
/third_party/skia/third_party/externals/icu/source/i18n/
H A Dnumber_skeletons.h220 void roundingMode(UNumberFormatRoundingMode value, UnicodeString& sb);
222 void groupingStrategy(UNumberGroupingStrategy value, UnicodeString& sb);
224 void unitWidth(UNumberUnitWidth value, UnicodeString& sb);
226 void signDisplay(UNumberSignDisplay value, UnicodeString& sb);
228 void decimalSeparatorDisplay(UNumberDecimalSeparatorDisplay value, UnicodeString& sb);
/third_party/skia/third_party/externals/microhttpd/src/include/
H A Dmicrospdy.h114 * SPDY frames (value length) is 8192. The lib will accept and
115 * send frames with length at most this value here.
246 * HTTP versions (a value must be provided in SPDY requests/responses).
306 * Collection of tuples of a SPDY setting ID, value
341 * be followed by a value of a specific type.<p>
371 * Flags for the daemon. Must be followed by a SPDY_DAEMON_FLAG value
379 * SPDY_IO_SUBSYSTEM value.
388 * frames to send and there is no error on writing. Thus, a big value
389 * will affect the performance. Small value gives fairnes for sessions.
391 * default value 1
[all...]
/third_party/skia/src/sfnt/
H A DSkOTUtils.cpp141 nameRecord->platformID.value = SkOTTableName::Record::PlatformID::Windows; in RenameFont()
142 nameRecord->encodingID.windows.value = encoding; in RenameFont()
143 nameRecord->languageID.windows.value = SkOTTableName::Record::LanguageID::Windows::English_UnitedStates; in RenameFont()
144 nameRecord->nameID.predefined.value = name; in RenameFont()
233 if (fsType.raw.value != 0) { in SetAdvancedTypefaceFlags()
/third_party/skia/third_party/externals/dawn/src/dawn_native/vulkan/
H A DUtilsVulkan.cpp219 double value = pipelineConstant.second; in GetVkSpecializationInfo() local
233 entry.b = static_cast<int32_t>(value); in GetVkSpecializationInfo()
236 entry.f32 = static_cast<float>(value); in GetVkSpecializationInfo()
239 entry.i32 = static_cast<int32_t>(value); in GetVkSpecializationInfo()
242 entry.u32 = static_cast<uint32_t>(value); in GetVkSpecializationInfo()
/third_party/skia/third_party/externals/freetype/src/truetype/
H A Dttdriver.c63 const void* value, in tt_property_set()
82 const char* s = (const char*)value; in tt_property_set()
90 FT_UInt* iv = (FT_UInt*)value; in tt_property_set()
120 const void* value ) in tt_property_get()
130 FT_UInt* val = (FT_UInt*)value; in tt_property_get()
309 tt_size_reset( ttsize, 0 ); /* ignore return value */ in tt_size_select()
382 /* if we don't have a resolution value, assume 72dpi */ in tt_size_request()
61 tt_property_set( FT_Module module, const char* property_name, const void* value, FT_Bool value_is_string ) tt_property_set() argument
/third_party/skia/third_party/externals/harfbuzz/src/
H A Dhb-machinery.hh163 template <typename T1, typename T2> struct hb_non_void_t { typedef T1 value; }; typedef
164 template <typename T2> struct hb_non_void_t<void, T2> { typedef T2 value; }; typedef
175 >::value Funcs;
228 bool cmpexch (Stored *current, Stored *value) const in cmpexch()
231 return this->instance.cmpexch (current, value); in cmpexch()
/third_party/python/Modules/_multiprocessing/clinic/
H A Dsemaphore.c.h156 _multiprocessing_SemLock_impl(PyTypeObject *type, int kind, int value,
163 static const char * const _keywords[] = {"kind", "value", "maxvalue", "name", "unlink", NULL}; in _multiprocessing_SemLock()
169 int value; in _multiprocessing_SemLock() local
182 value = _PyLong_AsInt(fastargs[1]); in _multiprocessing_SemLock()
183 if (value == -1 && PyErr_Occurred()) { in _multiprocessing_SemLock()
207 return_value = _multiprocessing_SemLock_impl(type, kind, value, maxvalue, name, unlink); in _multiprocessing_SemLock()
301 "Get the value of the semaphore.");
323 "Return whether semaphore has value zero.");
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ADT/
H A DPointerSumType.h46 /// This allows the user to control the particular tag value associated with
57 /// would be. This means that the zero value for the tag type is significant
64 /// pointer's value is directly stored into this object and we can expose the
73 // We keep both the raw value and the min tag value's pointer in a union. When
74 // the minimum tag value is zero, this allows code below to cleanly expose the
78 // member potentially changing. When we *store* a new value, we directly
80 // when we *read* a value, we copy the underlying storage out to avoid relying
83 // Ensure we get a null default constructed value. We don't use a member
116 /// Clear the value t
[all...]
/third_party/toybox/toys/posix/
H A Dgetconf.c22 -l List available value names (grouped by source)
51 long long value; member
55 // confstr(), or output the macro value directly.
177 long l = i ? pathconf(path, c->value) : sysconf(c->value); in show_conf()
182 confstr(c->value, toybuf, sizeof(toybuf)); in show_conf()
184 } else if (i==3) printf("%lld\n", c->value); in show_conf()
/third_party/typescript/tests/baselines/reference/
H A DexhaustiveSwitchStatements1.js189 function test4(value: 1 | 2) {
191 switch (value) {
423 function test4(value) {
425 switch (value) {
530 declare function test4(value: 1 | 2): string;

Completed in 34 milliseconds

1...<<391392393394395396397398399400>>...924