Home
last modified time | relevance | path

Searched refs:value (Results 10201 - 10225 of 14075) sorted by relevance

1...<<401402403404405406407408409410>>...563

/third_party/python/Lib/test/
H A Dtest_plistlib.py786 value = plistlib.loads(pl)
787 self.assertEqual(value, 456)
790 value = plistlib.loads(pl)
791 self.assertEqual(value, 10)
794 value = plistlib.loads(pl)
795 self.assertEqual(value, 123)
/third_party/spirv-tools/source/val/
H A Dvalidate_cfg.cpp100 // Incoming value type must match the phi result type. in ValidatePhi()
105 << " does not match incoming value <id> " << _.getIdName(inc_id) in ValidatePhi()
237 const auto value = _.FindDef(value_id); in ValidateReturnValue() local
238 if (!value || !value->type_id()) { in ValidateReturnValue()
241 << " does not represent a value."; in ValidateReturnValue()
243 auto value_type = _.FindDef(value->type_id()); in ValidateReturnValue()
246 << "OpReturnValue value's type <id> " in ValidateReturnValue()
247 << _.getIdName(value->type_id()) << " is missing or void."; in ValidateReturnValue()
254 << "OpReturnValue value' in ValidateReturnValue()
[all...]
/third_party/vk-gl-cts/modules/gles3/functional/
H A Des3fShaderBuiltinVarTests.cpp59 int value = -1; in getInteger() local
60 gl.getIntegerv(pname, &value); in getInteger()
62 return value; in getInteger()
73 int value = -1; in getVectorsFromComps() local
74 gl.getIntegerv(pname, &value); in getVectorsFromComps()
77 return value/4; in getVectorsFromComps()
152 m_testCtx.setTestResult(QP_TEST_RESULT_FAIL, "Invalid builtin constant value"); in iterate()
604 // value. in iterate()
H A Des3fShaderStructTests.cpp649 LOCAL_STRUCT_CASE(return, "Struct as a return value", in init()
1314 void setUniform (const glw::Functions& gl, deUint32 programID, const char* name, float value) in setUniform() argument
1317 gl.uniform1f(loc, value); in setUniform()
1321 void setUniform (const glw::Functions& gl, deUint32 programID, const char* name, int value) in setUniform() argument
1324 gl.uniform1i(loc, value); in setUniform()
1328 void setUniform (const glw::Functions& gl, deUint32 programID, const char* name, const float* value, int arraySize) in setUniform() argument
1331 gl.uniform1fv(loc, arraySize, value); in setUniform()
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/ycbcr/
H A DvktYCbCrCopyTests.cpp890 vk::VkImageTiling value; in initYcbcrDefaultCopyTests() member
919 const vk::VkImageTiling srcTiling = imageTilings[srcTilingNdx].value; in initYcbcrDefaultCopyTests()
924 const vk::VkImageTiling dstTiling = imageTilings[dstTilingNdx].value; in initYcbcrDefaultCopyTests()
994 vk::VkImageTiling value; in initYcbcrDimensionsCopyTests() member
1028 const vk::VkImageTiling srcTiling = imageTilings[srcTilingNdx].value; in initYcbcrDimensionsCopyTests()
1033 const vk::VkImageTiling dstTiling = imageTilings[dstTilingNdx].value; in initYcbcrDimensionsCopyTests()
/third_party/wpa_supplicant/wpa_supplicant-2.9/src/tls/
H A Dtlsv1_cred.c202 "TLSv1: Unsupported ca_cert hash value '%s'", in tlsv1_set_ca_cert()
215 "TLSv1: Invalid SHA256 hash value in ca_cert '%s'", in tlsv1_set_ca_cert()
629 const u8 *value; in pkcs12_safebag() local
652 value = hdr.payload; in pkcs12_safebag()
654 wpa_hexdump_key(MSG_MSGDUMP, "PKCS #12: bagValue", value, value_len); in pkcs12_safebag()
689 return pkcs12_keybag(cred, value, value_len); in pkcs12_safebag()
691 return pkcs12_pkcs8_keybag(cred, value, value_len, passwd); in pkcs12_safebag()
693 return pkcs12_certbag(cred, value, value_len); in pkcs12_safebag()
/third_party/vk-gl-cts/framework/opengl/
H A DgluShaderLibrary.cpp73 const Value& value = values[valNdx]; in isValid() local
75 if (!value.type.isBasicType()) in isValid()
77 print("ERROR: Value '%s' is of unsupported type!\n", value.name.c_str()); in isValid()
81 if (value.elements.size() != refArrayLen*(size_t)value.type.getScalarSize()) in isValid()
83 print("ERROR: Value '%s' has invalid number of scalars!\n", value.name.c_str()); in isValid()
907 deUint32 value; in getGLEnumFromName() member
918 return names[ndx].value; in getGLEnumFromName()
1005 parseError(string("unexpected token encountered when parsing value classifier")); in parseValue()
1011 parseError(string("unexpected token when parsing value dat in parseValue()
1030 Value value; parseValue() local
[all...]
/third_party/vk-gl-cts/framework/opengl/simplereference/
H A DsglrReferenceContext.hpp645 virtual void texParameteri (deUint32 target, deUint32 pname, int value);
669 virtual void clearBufferiv (deUint32 buffer, int drawbuffer, const int* value);
670 virtual void clearBufferfv (deUint32 buffer, int drawbuffer, const float* value);
671 virtual void clearBufferuiv (deUint32 buffer, int drawbuffer, const deUint32* value);
736 virtual void uniformMatrix3fv (deInt32 location, deInt32 count, deBool transpose, const float *value);
737 virtual void uniformMatrix4fv (deInt32 location, deInt32 count, deBool transpose, const float *value);
/third_party/vk-gl-cts/modules/gles2/functional/
H A Des2fShaderStructTests.cpp678 LOCAL_STRUCT_CASE(return, "Struct as a return value", 0, in init()
1310 void setUniform (const glw::Functions& gl, deUint32 programID, const char* name, float value) in setUniform() argument
1313 gl.uniform1f(loc, value); in setUniform()
1317 void setUniform (const glw::Functions& gl, deUint32 programID, const char* name, int value) in setUniform() argument
1320 gl.uniform1i(loc, value); in setUniform()
1324 void setUniform (const glw::Functions& gl, deUint32 programID, const char* name, const float* value, int arraySize) in setUniform() argument
1327 gl.uniform1fv(loc, arraySize, value); in setUniform()
/device/soc/rockchip/common/sdk_linux/drivers/net/ethernet/stmicro/stmmac/
H A Ddwmac-rk.c133 static int xpcs_write(void *priv, int reg, u16 value) in xpcs_write() argument
137 return regmap_write(bsp_priv->xpcs, (reg * XPCS_APB_INCREMENT) & XPCS_APB_MASK, value); in xpcs_write()
268 dev_err(dev, "unknown speed value for RMII! speed=%d", speed); in px30_set_rmii_speed()
349 dev_err(dev, "unknown speed value for RGMII! speed=%d", speed); in rk1808_set_rgmii_speed()
378 dev_err(dev, "unknown speed value for RMII! speed=%d", speed); in rk1808_set_rmii_speed()
457 dev_err(dev, "unknown speed value for RGMII! speed=%d", speed); in rk3128_set_rgmii_speed()
475 dev_err(dev, "unknown speed value for RMII! speed=%d", speed); in rk3128_set_rmii_speed()
563 dev_err(dev, "unknown speed value for RGMII! speed=%d", speed); in rk3228_set_rgmii_speed()
581 dev_err(dev, "unknown speed value for RMII! speed=%d", speed); in rk3228_set_rmii_speed()
666 dev_err(dev, "unknown speed value fo in rk3288_set_rgmii_speed()
1815 int value; rk_gmac_setup() local
[all...]
/third_party/ffmpeg/libavcodec/
H A Ddnxhdenc.c44 // The largest value that will not lead to overflow for 10-bit samples.
970 ctx->mb_cmp[mb].value = varc; in dnxhd_mb_var_thread()
998 ctx->mb_cmp[mb].value = sqmean - mean * mean; in dnxhd_mb_var_thread()
1142 static inline int get_bucket(int value, int shift) in get_bucket() argument
1144 value >>= shift; in get_bucket()
1145 value &= NBUCKETS - 1; in get_bucket()
1146 return NBUCKETS - 1 - value; in get_bucket()
1155 int v = data[i].value; in radix_count()
1176 int v = get_bucket(data[i].value, shift); in radix_sort_pass()
1212 ctx->mb_cmp[mb].value in dnxhd_encode_fast()
[all...]
/third_party/backends/backend/
H A Dnet.c129 client/server have different endianness. A value of -1 means, that there's
130 no hang over; otherwise the value has to be casted to SANE_Byte. hang_over
138 client/server have different endianness. A value of -1 means, that there's
139 no left over; otherwise the value has to be casted to SANE_Byte. left_over
445 /* We're connected now, so reset SO_SNDTIMEO to the default value of 0 */
1351 /* now free up the rpc return value: */
1719 SANE_Action action, void *value, SANE_Word * info)
1754 && (((SANE_Int) strlen ((SANE_String) value) + 1)
1756 value_size = strlen ((SANE_String) value) + 1;
1764 if (value
1718 sane_control_option(SANE_Handle handle, SANE_Int option, SANE_Action action, void *value, SANE_Word * info) global() argument
[all...]
/third_party/curl/lib/
H A Dmime.c336 char *value = NULL; in match_header() local
339 for(value = hdr->data + len + 1; *value == ' '; value++) in match_header()
341 return value; in match_header()
348 char *value = NULL; in search_header() local
350 for(; !value && hdrlist; hdrlist = hdrlist->next) in search_header()
351 value = match_header(hdrlist, hdr, len); in search_header()
353 return value; in search_header()
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
H A DNormalizer2Impl.java531 // Add the start code point of each same-value range of the trie. in addPropertyStarts()
537 int value = range.getValue(); in addPropertyStarts()
539 if (start != end && isAlgorithmicNoNo(value) && in addPropertyStarts()
540 (value & DELTA_TCCC_MASK) > DELTA_TCCC_1) { in addPropertyStarts()
541 // Range of code points with same-norm16-value algorithmic decompositions. in addPropertyStarts()
564 // Add the start code point of each same-value range of the canonical iterator data trie. in addCanonIterPropertyStarts()
577 public int apply(int value) {
578 return value & CANON_NOT_SEGMENT_STARTER;
633 // Do not modify the whole-range norm16 value. in ensureCanonIterData()
750 /** Gets the FCD value fro
[all...]
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/impl/
H A DNormalizer2Impl.java540 // Add the start code point of each same-value range of the trie. in addPropertyStarts()
546 int value = range.getValue(); in addPropertyStarts()
548 if (start != end && isAlgorithmicNoNo(value) && in addPropertyStarts()
549 (value & DELTA_TCCC_MASK) > DELTA_TCCC_1) { in addPropertyStarts()
550 // Range of code points with same-norm16-value algorithmic decompositions. in addPropertyStarts()
573 // Add the start code point of each same-value range of the canonical iterator data trie. in addCanonIterPropertyStarts()
586 public int apply(int value) {
587 return value & CANON_NOT_SEGMENT_STARTER;
642 // Do not modify the whole-range norm16 value. in ensureCanonIterData()
759 /** Gets the FCD value fro
[all...]
/third_party/libcoap/examples/
H A Dcoap-client.c512 "\t \t\t(value must be a multiple of 16 not larger than 1024)\n" in usage()
543 "\t \t\tbetween each one. Must have a value between 1 and 255\n" in usage()
546 "\t \t\thave a value between 1 and 255 inclusive.\n" in usage()
549 "\t-L value\tSum of one or more COAP_BLOCK_* flag valuess for block\n" in usage()
566 "\t \t\t(default is 8388864). Maximum value of 2^32 -1\n" in usage()
663 uint16_t value; in cmdline_content_type() local
667 value = atoi(arg); in cmdline_content_type()
676 value = content_types[i].code; in cmdline_content_type()
683 node = coap_new_optlist(key, coap_encode_var_safe(buf, sizeof(buf), value), buf); in cmdline_content_type()
692 uint32_t value; in cmdline_hop_limit() local
[all...]
/third_party/node/lib/
H A Dnet.js256 function setDefaultAutoSelectFamily(value) {
257 validateBoolean(value, 'value');
258 autoSelectFamilyDefault = value;
265 function setDefaultAutoSelectFamilyAttemptTimeout(value) {
266 validateInt32(value, 'value', 1);
268 if (value < 10) {
269 value = 10;
272 autoSelectFamilyAttemptTimeoutDefault = value;
[all...]
/third_party/node/
H A Dconfigure.py904 def b(value):
905 """Returns the string 'true' if value is truthy, 'false' otherwise."""
906 return 'true' if value else 'false'
908 def B(value):
909 """Returns 1 if value is truthy, 0 otherwise."""
910 return 1 if value else 0
1160 for key, value in matchup.items():
1162 rtn = value
1943 for key, value in icu_src.items():
1945 path = f'../../{icu_full_path}/source/{value}'
[all...]
/third_party/node/deps/v8/src/codegen/arm64/
H A Dmacro-assembler-arm64-inl.h438 // Conditionally move a value into the destination register. Only X registers
539 void TurboAssembler::Fcmp(const VRegister& fn, double value) { in Fcmp() argument
541 if (value != 0.0) { in Fcmp()
544 Fmov(tmp, value); in Fcmp()
547 fcmp(fn, value); in Fcmp()
1070 // Load value directly from the upper half-word. in SmiUntag()
1107 void TurboAssembler::JumpIfSmi(Register value, Label* smi_label, in JumpIfSmi() argument
1112 Tbz(value, 0, smi_label); in JumpIfSmi()
1118 Tbnz(value, 0, not_smi_label); in JumpIfSmi()
1130 void MacroAssembler::JumpIfNotSmi(Register value, Labe argument
[all...]
/third_party/mesa3d/src/gallium/drivers/crocus/
H A Dcrocus_resource.c489 * immediately on allocation. The clear value for MCS buffers is all in crocus_resource_configure_aux()
502 * A CCS value of 0 indicates that the corresponding block is in the in crocus_resource_configure_aux()
977 uint64_t *value) in crocus_resource_get_param()
997 *value = util_format_get_num_planes(res->external_format); in crocus_resource_get_param()
1002 *value = count; in crocus_resource_get_param()
1006 *value = wants_aux ? res->aux.surf.row_pitch_B : res->surf.row_pitch_B; in crocus_resource_get_param()
1009 *value = wants_aux ? res->aux.offset : 0; in crocus_resource_get_param()
1012 *value = res->mod_info ? res->mod_info->modifier : in crocus_resource_get_param()
1018 *value = handle; in crocus_resource_get_param()
1029 *value in crocus_resource_get_param()
969 crocus_resource_get_param(struct pipe_screen *pscreen, struct pipe_context *context, struct pipe_resource *resource, unsigned plane, unsigned layer, unsigned level, enum pipe_resource_param param, unsigned handle_usage, uint64_t *value) crocus_resource_get_param() argument
[all...]
/third_party/python/Lib/asyncio/
H A Dbase_events.py1758 value = context[key]
1760 tb = ''.join(traceback.format_list(value))
1761 value = 'Object created at (most recent call last):\n'
1762 value += tb.rstrip()
1764 tb = ''.join(traceback.format_list(value))
1765 value = 'Handle created at (most recent call last):\n'
1766 value += tb.rstrip()
1768 value = repr(value)
1769 log_lines.append(f'{key}: {value}')
[all...]
/third_party/skia/src/core/
H A DSkAAClip.cpp1326 auto appendXRun = [&xArray](uint8_t value, int count) {
1335 data[1] = value;
1364 // create a new record for this Y value
1793 static inline uint8_t mergeOne(uint8_t value, unsigned alpha) {
1794 return SkMulDiv255Round(value, alpha);
1797 static inline uint16_t mergeOne(uint16_t value, unsigned alpha) {
1798 unsigned r = SkGetPackedR16(value);
1799 unsigned g = SkGetPackedG16(value);
1800 unsigned b = SkGetPackedB16(value);
1858 // some value >
[all...]
/third_party/skia/third_party/externals/libpng/
H A Dpngwutil.c244 * deflate header) to correct the windowBits value to match the actual data
368 * next windowBits size we need to fix up the value later. (Because even in png_deflate_claim()
1328 /* Each value is saved in 1/100,000ths */ in png_write_cHRM_fixed()
1371 /* One 16-bit value */ in png_write_tRNS()
2120 int value; in png_do_write_interlace() local
2132 value = (int)(*sp >> (7 - (int)(i & 0x07))) & 0x01; in png_do_write_interlace()
2133 d |= (value << shift); in png_do_write_interlace()
2158 int value; in png_do_write_interlace() local
2170 value = (*sp >> ((3 - (int)(i & 0x03)) << 1)) & 0x03; in png_do_write_interlace()
2171 d |= (value << shif in png_do_write_interlace()
2195 int value; png_do_write_interlace() local
[all...]
/third_party/toybox/toys/pending/
H A Dfdisk.c96 static void set_levalue(unsigned char *cp, sector_t value ) in set_levalue()
98 uint32_t val = SWAP_LE32(value); in set_levalue()
128 printf("Unknown value(s) for:"); in chs_warn()
789 xprintf("Using default value %lld\n", defalt); in ask_value()
1327 sector_t value; in expert_menu() local
1341 value = ask_value(mesg, 1, 1048576, g_cylinders); in expert_menu()
1342 g_cylinders = TT.cylinders = value; in expert_menu()
1360 value = ask_value(mesg, 1, 256, g_heads); in expert_menu()
1361 g_heads = TT.heads = value; in expert_menu()
1378 value in expert_menu()
[all...]
/third_party/python/Python/
H A Dimport.c353 PyObject *value = _PyObject_CallMethodOneArg( in import_ensure_initialized() local
355 if (value == NULL) { in import_ensure_initialized()
358 Py_DECREF(value); in import_ensure_initialized()
637 PyObject *type, *value, *traceback; in remove_module() local
638 _PyErr_Fetch(tstate, &type, &value, &traceback); in remove_module()
651 _PyErr_ChainExceptions(type, value, traceback); in remove_module()
1214 // We hit the end-of-list sentinel value. in look_up_frozen()
1485 PyObject *exception, *value, *base_tb, *tb; in remove_importlib_frames() local
1492 _PyErr_Fetch(tstate, &exception, &value, &base_tb); in remove_importlib_frames()
1533 _PyErr_Restore(tstate, exception, value, base_t in remove_importlib_frames()
[all...]

Completed in 52 milliseconds

1...<<401402403404405406407408409410>>...563