/third_party/mesa3d/src/intel/isl/ |
H A D | isl.c | 109 * "Destination MOCS value, which is used to program MOCS index in isl_device_setup_mocs() 120 * "Source MOCS value, which is used to program MOCS index for in isl_device_setup_mocs() 416 * to TILEMODE_WMAJOR), the pitch must be set to 2x the value in isl_tiling_get_info() 567 isl_color_value_is_zero(union isl_color_value value, in isl_color_value_is_zero() argument 573 if (fmtl->channels.c.bits && value.u32[i] != 0) \ in isl_color_value_is_zero() 587 isl_color_value_is_zero_one(union isl_color_value value, in isl_color_value_is_zero_one() argument 593 if (fmtl->channels.c.bits && value.field[i] != 0 && value.field[i] != 1) \ in isl_color_value_is_zero_one() 752 * - Software must ensure that this field is set to a value in isl_choose_array_pitch_span() 785 * the depth buffer and stencil buffer have an implied value o in isl_choose_array_pitch_span() [all...] |
/third_party/node/deps/v8/src/compiler/ |
H A D | verifier.cc | 105 // Data structure to check that each {kIfValue} has a unique value. in CheckSwitch() 113 // Check if each value is unique. in CheckSwitch() 115 if_value_parameters.emplace(IfValueParametersOf(use->op()).value()) in CheckSwitch() 178 // Verify all value inputs actually produce a value. in Check() 180 Node* value = NodeProperties::GetValueInput(node, i); in Check() local 181 CheckOutput(value, node, value->op()->ValueOutputCount(), "value"); in Check() 186 value in Check() [all...] |
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/tessellation/ |
H A D | vktTessellationInvarianceTests.cpp | 63 NUM_EXTRA_TESS_GEOM_INVOCATIONS = 4, // Need to set this value properly to allocate enough memory to store vertices data 417 //! and the coordinate's value along that edge. 1286 * value sets. 1926 typedef bool (*CompareFunc)(tcu::TestLog& log, const float value); 1928 bool compareTessCoordRange (tcu::TestLog& log, const float value) in compareTessCoordRange() argument 1930 if (!de::inRange(value, 0.0f, 1.0f)) in compareTessCoordRange() 1938 bool compareOneMinusTessCoord (tcu::TestLog& log, const float value) in compareOneMinusTessCoord() argument 1940 if (value != 1.0f) in compareOneMinusTessCoord()
|
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/transform_feedback/ |
H A D | vktTransformFeedbackFuzzLayoutCase.cpp | 928 const int value = rnd.getInt(1, 127); in generateValue() local 932 case glu::TYPE_DOUBLE: *((double*)compPtr) = (double) (sign * value); break; in generateValue() 933 case glu::TYPE_FLOAT: *((float*)compPtr) = (float) (sign * value); break; in generateValue() 934 case glu::TYPE_INT: *((deInt32*)compPtr) = (deInt32) (sign * value); break; in generateValue() 935 case glu::TYPE_UINT: *((deUint32*)compPtr) = (deUint32)( value); break; in generateValue()
|
/third_party/vk-gl-cts/external/openglcts/modules/gl/ |
H A D | gl4cVertexAttrib64BitTest.cpp | 174 /** Get value of GL_MAX_VERTEX_ATTRIBS 243 /** Return "random" double value from range <min:max> 250 static glw::GLushort value = 0x1234; in RandomDouble() local 252 GLdouble fraction = ((GLdouble)value) / ((GLdouble)max_value); in RandomDouble() 255 value = static_cast<glw::GLushort>((max_value <= value) ? 0 : value + 1); in RandomDouble() 1175 * Double attributes should be assigned the value: 1210 * Subsequent matrix elements should be assigned the following value: 1722 /* Double attributes should be assigned the value in configureAttribute() [all...] |
/third_party/skia/third_party/externals/angle2/src/libGLESv2/ |
H A D | entry_points_gles_1_0_autogen.cpp | 1709 void GL_APIENTRY GL_SampleCoveragex(GLclampx value, GLboolean invert) in GL_SampleCoveragex() argument 1712 EVENT(context, GLSampleCoveragex, "context = %d, value = 0x%X, invert = %s", CID(context), in GL_SampleCoveragex() 1713 value, GLbooleanToString(invert)); in GL_SampleCoveragex() 1720 ValidateSampleCoveragex(context, angle::EntryPoint::GLSampleCoveragex, value, invert)); in GL_SampleCoveragex() 1723 context->sampleCoveragex(value, invert); in GL_SampleCoveragex() 1725 ANGLE_CAPTURE(SampleCoveragex, isCallValid, context, value, invert); in GL_SampleCoveragex()
|
/third_party/skia/third_party/externals/angle2/src/tests/gl_tests/ |
H A D | CopyTextureTest.cpp | 72 GLubyte value = static_cast<GLubyte>(i); in testGradientDownsampleUniqueValues() local 73 sourceGradient[i] = GLColor(value, value, value, value); in testGradientDownsampleUniqueValues() 850 // Invalid value for a valid target enum but is not valid for the destination texture in TEST_P()
|
/third_party/openssl/ohos_lite/include/openssl/ |
H A D | ssl.h | 300 * Reserved value (until OpenSSL 1.2.0) 0x00000001U 301 * Reserved value (until OpenSSL 1.2.0) 0x00000002U 306 /* Reserved value (until OpenSSL 1.2.0) 0x00000008U */ 308 /* Reserved value (until OpenSSL 1.2.0) 0x00000020U */ 311 * Reserved value (until OpenSSL 1.2.0) 0x00000080U 312 * Reserved value (until OpenSSL 1.2.0) 0x00000100U 313 * Reserved value (until OpenSSL 1.2.0) 0x00000200U 568 /* Configuration value types */ 579 * Note: SSL[_CTX]_set_{options,mode} use |= op on the previous value, they 660 * a server. Return value shoul [all...] |
/third_party/python/Lib/test/test_zoneinfo/ |
H A D | test_zoneinfo.py | 926 out += b"TZif" # Magic value 1531 def python_tzpath_context(value): 1538 os.environ[path_var] = value 1629 with self.subTest(value=bad_value): 1866 for key, value in zoneinfo_data.items(): 1868 raw_data = self._decode_text(value)
|
/third_party/python/Modules/ |
H A D | _testbuffer.c | 1865 ndarray_ass_subscript(NDArrayObject *self, PyObject *key, PyObject *value) in ndarray_ass_subscript() argument 1878 if (value == NULL) { in ndarray_ass_subscript() 1886 return pack_single(ptr, value, dest->format, dest->itemsize); in ndarray_ass_subscript() 1903 return pack_single(ptr, value, dest->format, dest->itemsize); in ndarray_ass_subscript() 1907 if (PyObject_GetBuffer(value, &src, PyBUF_FULL_RO) == -1) in ndarray_ass_subscript()
|
/third_party/vk-gl-cts/modules/glshared/ |
H A D | glsVertexArrayTests.cpp | 762 const float u_coordScale = getUniformByName("u_coordScale").value.f; in shadeVertices() 763 const float u_colorScale = getUniformByName("u_colorScale").value.f; in shadeVertices() 1473 T roundTo (const T& step, const T& value) in roundTo() argument 1475 return value - (value % step); in roundTo()
|
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/tessellation/ |
H A D | vktTessellationInvarianceTests.cpp | 63 NUM_EXTRA_TESS_GEOM_INVOCATIONS = 4, // Need to set this value properly to allocate enough memory to store vertices data 407 //! and the coordinate's value along that edge. 1274 * value sets. 1909 typedef bool (*CompareFunc)(tcu::TestLog& log, const float value); 1911 bool compareTessCoordRange (tcu::TestLog& log, const float value) in compareTessCoordRange() argument 1913 if (!de::inRange(value, 0.0f, 1.0f)) in compareTessCoordRange() 1921 bool compareOneMinusTessCoord (tcu::TestLog& log, const float value) in compareOneMinusTessCoord() argument 1923 if (value != 1.0f) in compareOneMinusTessCoord()
|
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/transform_feedback/ |
H A D | vktTransformFeedbackFuzzLayoutCase.cpp | 928 const int value = rnd.getInt(1, 127); in generateValue() local 932 case glu::TYPE_DOUBLE: *((double*)compPtr) = (double) (sign * value); break; in generateValue() 933 case glu::TYPE_FLOAT: *((float*)compPtr) = (float) (sign * value); break; in generateValue() 934 case glu::TYPE_INT: *((deInt32*)compPtr) = (deInt32) (sign * value); break; in generateValue() 935 case glu::TYPE_UINT: *((deUint32*)compPtr) = (deUint32)( value); break; in generateValue()
|
/third_party/wpa_supplicant/wpa_supplicant-2.9/src/rsn_supp/ |
H A D | tdls.c | 66 u8 value[TDLS_TIMEOUT_LEN]; member 2001 lifetime = WPA_GET_LE32(timeoutie->value); in wpa_tdls_process_tpk_m1() 2402 lifetime = WPA_GET_LE32(timeoutie->value); in wpa_tdls_process_tpk_m2() 2580 lifetime = WPA_GET_LE32(timeoutie->value); in wpa_tdls_process_tpk_m3() 2637 WPA_PUT_LE32(lifetime->value, tsecs); in wpa_add_tdls_timeoutie() 3058 /* ignore the return value */ in wpa_tdls_disable_chan_switch()
|
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/rsn_supp/ |
H A D | tdls.c | 66 u8 value[TDLS_TIMEOUT_LEN]; member 2078 lifetime = WPA_GET_LE32(timeoutie->value); 2481 lifetime = WPA_GET_LE32(timeoutie->value); 2659 lifetime = WPA_GET_LE32(timeoutie->value); 2716 WPA_PUT_LE32(lifetime->value, tsecs); 3146 /* ignore the return value */
|
/third_party/vixl/src/aarch32/ |
H A D | assembler-aarch32.cc | 1353 uint32_t value = nreglist.GetTransferLane() << 1; in Index_1() local 1355 SetEncodingValue(value); in Index_1() 1362 uint32_t value = nreglist.GetTransferLane() << 2; in Index_1() local 1363 if (nreglist.IsDoubleSpaced()) value |= 2; in Index_1() 1364 SetEncodingValue(value); in Index_1() 1371 uint32_t value = nreglist.GetTransferLane() << 3; in Index_1() local 1372 if (nreglist.IsDoubleSpaced()) value |= 4; in Index_1() 1373 SetEncodingValue(value); in Index_1() 1393 uint32_t value; in Align_index_align_1() local 1395 value in Align_index_align_1() 1407 uint32_t value; Align_index_align_1() local 1423 uint32_t value; Align_index_align_1() local 1455 uint32_t value; Align_index_align_2() local 1472 uint32_t value; Align_index_align_2() local 1489 uint32_t value; Align_index_align_2() local 1522 uint32_t value; Align_index_align_3() local 1539 uint32_t value; Align_index_align_3() local 1556 uint32_t value; Align_index_align_3() local [all...] |
/third_party/mesa3d/src/amd/compiler/ |
H A D | aco_optimizer.cpp | 970 /* use the single 16bit value */ in propagate_constants_vop3p() 2267 is_operand_constant(opt_ctx& ctx, Operand op, unsigned bit_size, uint64_t* value) in is_operand_constant() argument 2270 *value = op.constantValue64(); in is_operand_constant() 2276 *value = get_constant_op(ctx, ctx.info[id], bit_size).constantValue64(); in is_operand_constant() 2283 is_constant_nan(uint64_t value, unsigned bit_size) in is_constant_nan() argument 2286 return ((value >> 10) & 0x1f) == 0x1f && (value & 0x3ff); in is_constant_nan() 2288 return ((value >> 23) & 0xff) == 0xff && (value & 0x7fffff); in is_constant_nan() 2290 return ((value >> 5 in is_constant_nan() [all...] |
/third_party/skia/third_party/externals/expat/expat/tests/ |
H A D | runtests.c | 233 int is_parameter_entity, const XML_Char *value, in dummy_entity_decl_handler() 240 UNUSED_P(value); in dummy_entity_decl_handler() 448 int is_parameter_entity, const XML_Char *value, in param_entity_match_handler() 467 || xcstrncmp(value, entity_value_to_match, value_length)) { in param_entity_match_handler() 586 /* "accumulate" the value of the first attribute we see */ in accumulate_attribute() 727 characters as PCDATA and attribute value content, and XML Name 864 fail("bad value of first_chunk_bytes"); in START_TEST() 1294 the rules for attribute value normalization. The 'is_cdata' flag 1357 const XML_Char *value = atts[i + 1]; in check_attr_contains_normalized_whitespace() local 1361 if (! is_whitespace_normalized(value, in check_attr_contains_normalized_whitespace() 232 dummy_entity_decl_handler(void *userData, 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) dummy_entity_decl_handler() argument 447 param_entity_match_handler(void *userData, 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) param_entity_match_handler() argument 2832 const XML_Char *value; global() member 6176 accumulate_entity_decl(void *userData, 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) accumulate_entity_decl() argument [all...] |
/device/soc/rockchip/common/sdk_linux/drivers/regulator/ |
H A D | core.c | 955 * NOTE: If the regulator is disabled it will return the voltage value. This
1273 int value;
in machine_constraints_voltage() local 1275 value = ops->list_voltage(rdev, i);
in machine_constraints_voltage() 1276 if (value <= 0) {
in machine_constraints_voltage() 1281 if (value >= cmin && value < min_uV) {
in machine_constraints_voltage() 1282 min_uV = value;
in machine_constraints_voltage() 1284 if (value <= cmax && value > max_uV) {
in machine_constraints_voltage() 1285 max_uV = value;
in machine_constraints_voltage() [all...] |
/drivers/hdf_core/framework/model/storage/src/mmc/ |
H A D | mmc_protocol.c | 299 static int32_t MmcSwitch(struct MmcCntlr *cntlr, uint8_t set, uint8_t index, uint8_t value) in MmcSwitch() argument 312 | (value << 8) in MmcSwitch() 1919 cmd.argument |= (param->value & 0xF) << (param->group * 4); in SdCmdSwitchFunc() 2003 * ERASE_SIZE = 1, value = 1AU; ERASE_SIZE = 2, value = 2AU... in SdDecodeSSr() 2127 * A value of zero means 1 write block, 127 means 128 write blocks. in SdDecodeCsdRev1Field() 2148 /* The Minimum value of C_SIZE for SDXC in CSD Version 2.0 is 00FFFFh(65535). */ in SdDecodeCsdRev2Field() 2337 param.value = 1; in SdReadSwitchCapbility() 2497 param.value = currentLimit; in SdSetMaxCurrentLimit() 2546 param.value in SdSetBusSpeedMode() 3582 const uint8_t value[16] = { 0, 10, 12, 13, 15, 20, 25, 30, 35, 40, 45, 50, 55, 60, 70, 80 }; SdioDecodeCisTplFunceCommon() local [all...] |
/third_party/mesa3d/src/nouveau/codegen/ |
H A D | nv50_ir_lowering_nvc0.cpp | 235 // Note that on NVIDIA hardware, a shift > 32 yields a 0 value, which we in handleShift() 843 i->setSrc(0, rZero); // initial value must be 0 in visit() 897 // TODO: when we generate actual functions pass this value along somehow in visit() 1012 i->tex.s = 0; // only a single cX[] value possible here in handleTEX() 1230 // that lane 0 is pointing at the proper array index, indirect value, in handleManualTXD() 1274 // the target lane pick up the proper value. in handleManualTXD() 1490 // Read the old value, and write the new one. in handleSharedATOMNVE4() 1576 // Read the old value, and write the new one. in handleSharedATOM() 1746 // Also, it sometimes returns the new value instead of the old one in handleCasExch() 2377 // make sure to initialize dst value whe in handleSurfaceOpNVE4() [all...] |
/third_party/node/deps/v8/src/builtins/arm/ |
H A D | builtins-arm.cc | 90 Register value = temps.Acquire(); in Generate_PushArguments() local 95 __ ldr(value, MemOperand(array, counter, LSL, kSystemPointerSizeLog2)); in Generate_PushArguments() 97 __ ldr(value, MemOperand(value)); in Generate_PushArguments() 99 __ push(value); in Generate_PushArguments() 294 // Otherwise we do a smi check and fall through to check if the return value in Generate_JSConstructStubGeneric() 380 // -- r0 : the value to pass to the generator in Generate_ResumeGeneratorTrampoline() 384 // Store input value into generator object. in Generate_ResumeGeneratorTrampoline() 595 // Clear c_entry_fp, now we've pushed its previous value to the stack. in Generate_JSEntryVariant() 607 // If this is the outermost JS call, set js_entry_sp value in Generate_JSEntryVariant() 2052 Register value = temps.Acquire(); Generate_AllocateSpaceAndShiftExistingArguments() local [all...] |
/third_party/rust/crates/libc/src/unix/linux_like/linux/ |
H A D | mod.rs | 190 pub value: ::__s32, 201 pub value: ::__s32, 1586 // defined in arch/<arch>/include/uapi/asm/auxvec.h but has the same value 1809 note = "This value was increased in the newer kernel \ 3960 value: *mut ::c_void, in getxattr() 3966 value: *mut ::c_void, in lgetxattr() 3972 value: *mut ::c_void, in fgetxattr() 3978 value: *const ::c_void, in setxattr() 3985 value: *const ::c_void, in lsetxattr() 3992 value in fsetxattr() [all...] |
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/ |
H A D | glslang_wrapper_utils.cpp | 1772 // This is an input varying, need to cast the mediump value that came from 1773 // the previous stage into a highp value that the code wants to work with. 1776 // Build OpLoad instruction to load the mediump value into a temporary 1783 // Build OpStore instruction to cast the mediump value to highp for use in 1824 // Build OpLoad instruction to load the highp value into a temporary 1831 // Build OpStore instruction to cast the highp value to mediump for output 1893 uint32_t value, 2155 uint32_t value, 2159 if (value == ShaderInterfaceVariableXfbInfo::kInvalid) 2164 if (mIntNIds.size() <= value) [all...] |
/third_party/skia/third_party/externals/swiftshader/src/OpenGL/compiler/ |
H A D | OutputASM.cpp | 517 outputQualifier = EvqOutput; // Initialize outputQualifier to any value other than EvqFragColor or EvqFragData in OutputASM() 1574 // Insert the scalar value on the main diagonal. in visitAggregate() 1976 TIntermTyped *value = node->getExpression(); in visitBranch() local 1978 if(value) in visitBranch() 1980 copy(functionArray[currentFunction].ret, value); in visitBranch() 2463 parameter.value[i] = constants[component + 0].getAsFloat(); in source() 2467 parameter.value[i] = constants[component + i].getAsFloat(); in source() 2471 parameter.value[i] = 0.0f; in source() 2541 return mContext.error(src->getLine(), "Result type should match the l-value type in compound assignment", src->isVector() ? "vector" : "matrix"); in assignLvalue() 2660 int leftSwizzle = lvalue(root, offset, rel, mask, address, left); // Resolve the l-value o in lvalue() 3910 int value = constant->getUnionArrayPointer()[0].getIConst(); LoopInfo() local [all...] |