/third_party/skia/third_party/externals/icu/source/tools/toolutil/ |
H A D | ppucd.cpp | 97 "value", 355 // No binary value for a binary property. in parseProperty() 363 // Binary value for a non-binary property. in parseProperty() 371 "error in preparsed UCD: prop value is invalid: '%d' for line %ld\n", in parseProperty() 375 int32_t value=pnames->getPropertyValueEnum(prop, v); in parseProperty() local 376 if(value==UCHAR_INVALID_CODE && prop==UCHAR_CANONICAL_COMBINING_CLASS) { in parseProperty() 381 value=(int32_t)ccc; in parseProperty() 384 if(value==UCHAR_INVALID_CODE) { in parseProperty() 386 "error in preparsed UCD: '%s' is not a valid value on line %ld\n", in parseProperty() 390 props.intProps[prop-UCHAR_INT_START]=value; in parseProperty() 529 uint32_t value=(uint32_t)uprv_strtoul(s, &end, 16); parseCodePoint() local [all...] |
/third_party/python/Lib/test/ |
H A D | test_funcattrs.py | 30 def cannot_set_attr(self, obj, name, value, exceptions): 32 setattr(obj, name, value) 36 self.fail("shouldn't be able to set %s to %r" % (name, value)) 327 # Test value 346 value = "Some string" 348 d[self.b] = value 349 self.assertEqual(d[self.b], value) 368 def cell(value): 369 """Create a cell containing the given value.""" 372 a = value [all...] |
/third_party/python/Lib/xml/dom/ |
H A D | pulldom.py | 56 for aname, value in xmlns_attrs: 57 attrs._attrs[(xmlns_uri, aname)] = value 82 for aname,value in attrs.items(): 102 attr.value = value 118 for aname,value in attrs.items(): 120 attr.value = value
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-subzero/include/llvm/ADT/ |
H A D | ilist.h | 122 static const bool value = sizeof(test<TraitsT>(nullptr)) == sizeof(Yes); member 136 static const bool value = sizeof(test<TraitsT>(nullptr)) == sizeof(Yes); member 152 static const bool value = sizeof(test<TraitsT>(nullptr)) == sizeof(Yes); member 156 static const bool value = HasGetNext<TraitsT, NodeT>::value || member 157 HasCreateSentinel<TraitsT>::value || 158 HasCreateNode<TraitsT, NodeT>::value; 203 !ilist_detail::HasObsoleteCustomization<TraitsT, value_type>::value,
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ADT/ |
H A D | ilist.h | 110 static const bool value = sizeof(test<TraitsT>(nullptr)) == sizeof(Yes); member 124 static const bool value = sizeof(test<TraitsT>(nullptr)) == sizeof(Yes); member 140 static const bool value = sizeof(test<TraitsT>(nullptr)) == sizeof(Yes); member 144 static const bool value = HasGetNext<TraitsT, NodeT>::value || member 145 HasCreateSentinel<TraitsT>::value || 146 HasCreateNode<TraitsT, NodeT>::value; 188 !ilist_detail::HasObsoleteCustomization<TraitsT, value_type>::value,
|
/third_party/protobuf/js/binary/ |
H A D | decoder.js | 273 * function with the value in two signed 32 bit integers to produce the result. 274 * Since this does not convert the value to a number, no precision is lost. 285 * the result value, takes parameters (lowBits, highBits). 328 * the conversion function with the value in two signed 32 bit integers to 329 * produce the result. Since this does not convert the value to a number, no 341 * the result value, takes parameters (lowBits, highBits). 353 * Reads a 64-bit fixed-width value from the stream and invokes the conversion 354 * function with the value in two signed 32 bit integers to produce the result. 355 * Since this does not convert the value to a number, no precision is lost. 358 * the result value, take [all...] |
/third_party/protobuf/ruby/src/main/java/com/google/protobuf/jruby/ |
H A D | RubyMap.java | 81 * indicate the type of the map key and value fields. 86 * The supported value types are: :int32, :int64, :uint32, :uint64, :bool, 95 * key and value types. Also note that this argument may be present whether or 100 * references to underlying objects will be shared if the value type is a 133 // Table value type is always UINT64: this ensures enough space to store the in initialize() 134 // native_slot value. in initialize() 143 * Map.[]=(key, value) => value 145 * Inserts or overwrites the value at the given key with the given new value 150 indexSet(ThreadContext context, IRubyObject key, IRubyObject value) indexSet() argument [all...] |
/third_party/python/Lib/test/test_email/ |
H A D | test_policy.py | 68 for attr, value in expected.items(): 70 self.assertEqual(getattr(policy, attr), value, 107 # None of the attributes has a default value of None, so we set them 128 for attr, value in expected.items(): 129 self.assertEqual(getattr(added, attr), value) 132 for attr, value in expected.items(): 133 self.assertEqual(getattr(added, attr), value) 135 for attr, value in expected.items(): 136 self.assertEqual(getattr(added, attr), value)
|
/third_party/python/Lib/xml/sax/ |
H A D | saxutils.py | 14 for key, value in d.items(): 15 s = s.replace(key, value) 23 strings; each key will be replaced with its corresponding value. 39 strings; each key will be replaced with its corresponding value. 49 """Escape and quote an attribute value. 52 an attribute value. The \" character will be escaped as well, if 57 strings; each key will be replaced with its corresponding value. 169 for (name, value) in attrs.items(): 170 self._write(' %s=%s' % (name, quoteattr(value))) 194 for (name, value) i [all...] |
/third_party/vk-gl-cts/framework/opengl/simplereference/ |
H A D | sglrContextWrapper.cpp | 179 void ContextWrapper::glTexParameteri (deUint32 target, deUint32 pname, int value) in glTexParameteri() argument 181 m_curCtx->texParameteri(target, pname, value); in glTexParameteri() 269 void ContextWrapper::glClearBufferiv (deUint32 buffer, int drawbuffer, const int* value) in glClearBufferiv() argument 271 m_curCtx->clearBufferiv(buffer, drawbuffer, value); in glClearBufferiv() 274 void ContextWrapper::glClearBufferfv (deUint32 buffer, int drawbuffer, const float* value) in glClearBufferfv() argument 276 m_curCtx->clearBufferfv(buffer, drawbuffer, value); in glClearBufferfv() 279 void ContextWrapper::glClearBufferuiv (deUint32 buffer, int drawbuffer, const deUint32* value) in glClearBufferuiv() argument 281 m_curCtx->clearBufferuiv(buffer, drawbuffer, value); in glClearBufferuiv()
|
/third_party/vk-gl-cts/framework/randomshaders/ |
H A D | rsgStatement.cpp | 271 const ValueEntry* value = state.getVariableManager().getValue(variable); in DeclarationStatement() local 278 DE_ASSERT(value); in DeclarationStatement() 283 // initializer is always created if value isn't null. in DeclarationStatement() 284 createInitializer = value; in DeclarationStatement() 296 // Take copy of value range for generating initializer expression in DeclarationStatement() 297 ValueRange valueRange = value->getValueRange(); in DeclarationStatement() 299 // Declare (removes value entry) in DeclarationStatement() 350 execCtx.getValue(m_variable) = m_expression->getValue().value(); in execute() 408 // Pop previous value scope. in createNextChild() 504 trueMask = m_condition->getValue().value(); in execute() 535 AssignStatement(const Variable* variable, Expression* value) AssignStatement() argument [all...] |
/third_party/vulkan-loader/scripts/ |
H A D | helper_file_generator.py | 105 self.StructType = namedtuple('StructType', ['name', 'value']) 244 value = re.sub('([a-z0-9])([A-Z])', r'\1_\2', typename) 246 value = value.upper() 248 return re.sub('VK_', 'VK_STRUCTURE_TYPE_', value) 277 # Retrieve the value of the len tag 337 # Extract the required struct type value from the comments 342 value = result.group(0) 344 value = self.genVkStructureType(typeName) 345 # Store the required type value [all...] |
/third_party/zlib/examples/ |
H A D | zran.c | 145 int ret; // the return value from zlib, or Z_ERRNO in deflate_index_build() 250 // Append the low bits bits of value to in[] at bit position *have, updating 251 // *have. value must be zero above its low bits bits. bits must be positive. 255 static inline void append_bits(unsigned value, int bits, in append_bits() argument 257 in += *have >> 3; // where the first bits from value will go in append_bits() 261 *in |= value << k; // write value above the low k bits in append_bits() 263 *in = value; in append_bits() 266 value >>= k; // drop the bits appended in append_bits() 269 *++in = value; in append_bits() 279 inflatePreface(z_stream *strm, int bits, int value) inflatePreface() argument [all...] |
/third_party/mesa3d/src/egl/drivers/dri2/ |
H A D | egl_dri2.c | 407 unsigned int attrib, value, double_buffer; in dri2_add_config() local 423 if (!dri2_dpy->core->indexConfigAttrib(dri_config, i, &attrib, &value)) in dri2_add_config() 428 if (value & __DRI_ATTRIB_FLOAT_BIT) in dri2_add_config() 430 if (value & __DRI_ATTRIB_RGBA_BIT) in dri2_add_config() 431 value = EGL_RGB_BUFFER; in dri2_add_config() 432 else if (value & __DRI_ATTRIB_LUMINANCE_BIT) in dri2_add_config() 433 value = EGL_LUMINANCE_BUFFER; in dri2_add_config() 436 base.ColorBufferType = value; in dri2_add_config() 440 if (value & __DRI_ATTRIB_NON_CONFORMANT_CONFIG) in dri2_add_config() 441 value in dri2_add_config() 859 unsigned int value = 0; dri2_renderer_query_integer() local 2496 dri2_query_surface(_EGLDisplay *disp, _EGLSurface *surf, EGLint attribute, EGLint *value) dri2_query_surface() argument 3326 dri2_query_wayland_buffer_wl(_EGLDisplay *disp, struct wl_resource *buffer_resource, EGLint attribute, EGLint *value) dri2_query_wayland_buffer_wl() argument [all...] |
/third_party/vk-gl-cts/external/vulkancts/scripts/ |
H A D | gen_framework.py | 161 def __init__ (self, name, aType, alias, value): 165 self.value = value 184 def __init__ (self, name, value, bitpos): 187 self.value = value # some enums specify value and some bitpos 204 intValue = parseInt(enumerator.value) 294 def __init__ (self, name, extends, alias, value, extnumber, offset, bitpos, vdir, comment): 298 self.value [all...] |
/base/msdp/device_status/test/unittest/frameworks/src/ |
H A D | interaction_drag_drawing_test.cpp | 193 int32_t ret = InteractionManager::GetInstance()->StartDrag(dragData.value(), in HWTEST_F() 238 int32_t ret = InteractionManager::GetInstance()->StartDrag(dragData.value(), in HWTEST_F() 283 int32_t ret = InteractionManager::GetInstance()->StartDrag(dragData.value(), in HWTEST_F() 328 int32_t ret = InteractionManager::GetInstance()->StartDrag(dragData.value(), in HWTEST_F() 373 int32_t ret = InteractionManager::GetInstance()->StartDrag(dragData.value(), in HWTEST_F() 415 int32_t ret = InteractionManager::GetInstance()->StartDrag(dragData.value(), in HWTEST_F() 457 int32_t ret = InteractionManager::GetInstance()->StartDrag(dragData.value(), in HWTEST_F() 499 int32_t ret = InteractionManager::GetInstance()->StartDrag(dragData.value(), in HWTEST_F() 541 int32_t ret = InteractionManager::GetInstance()->StartDrag(dragData.value(), in HWTEST_F() 582 int32_t ret = InteractionManager::GetInstance()->StartDrag(dragData.value(), in HWTEST_F() [all...] |
/third_party/skia/third_party/externals/swiftshader/src/Renderer/ |
H A D | Renderer.cpp | 727 void Renderer::clear(void *value, Format format, Surface *dest, const Rect &clearRect, unsigned int rgbaMask) in clear() argument 729 blitter->clear(value, format, dest, clearRect, rgbaMask); in clear() 2215 float value[4]; in loadConstants() local 2217 value[0] = instruction->src[0].value[0]; in loadConstants() 2218 value[1] = instruction->src[0].value[1]; in loadConstants() 2219 value[2] = instruction->src[0].value[2]; in loadConstants() 2220 value[ in loadConstants() 2259 float value[4]; loadConstants() local [all...] |
/third_party/wpa_supplicant/wpa_supplicant-2.9/wpa_supplicant/ |
H A D | ctrl_iface.c | 136 "BSSID value '%s'", pos); in set_disallow_aps() 176 "SSID value '%s'", pos); in set_disallow_aps() 186 wpa_printf(MSG_DEBUG, "Unexpected disallow_aps value " in set_disallow_aps() 423 char *value; in wpa_supplicant_ctrl_iface_set() local 426 value = os_strchr(cmd, ' '); in wpa_supplicant_ctrl_iface_set() 427 if (value == NULL) in wpa_supplicant_ctrl_iface_set() 429 *value++ = '\0'; in wpa_supplicant_ctrl_iface_set() 431 wpa_printf(MSG_DEBUG, "CTRL_IFACE SET '%s'='%s'", cmd, value); in wpa_supplicant_ctrl_iface_set() 434 atoi(value), -1, -1, -1); in wpa_supplicant_ctrl_iface_set() 437 -1, atoi(value), in wpa_supplicant_ctrl_iface_set() 3434 wpa_supplicant_ctrl_iface_update_network( struct wpa_supplicant *wpa_s, struct wpa_ssid *ssid, char *name, char *value) wpa_supplicant_ctrl_iface_update_network() argument 3480 char *name, *value; wpa_supplicant_ctrl_iface_set_network() local 3531 char *name, *value; wpa_supplicant_ctrl_iface_get_network() local 3574 char *name, *id, *value; wpa_supplicant_ctrl_iface_dup_network() local 3787 char *name, *value; wpa_supplicant_ctrl_iface_set_cred() local 3832 char *name, *value; wpa_supplicant_ctrl_iface_get_cred() local 8359 scan_id_list_parse(struct wpa_supplicant *wpa_s, const char *value, unsigned int *scan_id_count, int scan_id[]) scan_id_list_parse() argument 11257 char *value; wpas_global_ctrl_iface_set() local 11449 hw_magiclink_ctrl_iface_update_network( struct wpa_supplicant *wpa_s, struct wpa_ssid *ssid, char *name, char *value) hw_magiclink_ctrl_iface_update_network() argument [all...] |
/kernel/linux/linux-6.6/drivers/edac/ |
H A D | amd64_edac.c | 40 * or higher value'. 184 * Scan the scrub rate mapping table for a close or matching bandwidth value to 185 * issue. If requested is too big, then use last maximum value found. 193 * map the configured rate (new_bw) to a value specific to the AMD64 in __set_scrub_rate() 287 /* The K8 treats this as a 40-bit value. However, bits 63-40 will be in base_limit_match() 319 * The value of this field should be the same for all DRAM Base in find_mc_by_sys_addr() 336 amd64_warn("DRAM Base[IntlvEn] junk value: 0x%x, BIOS bug?\n", intlv_en); in find_mc_by_sys_addr() 607 * store error injection section value which refers to one of 4 16-byte sections 618 unsigned long value; in inject_section_store() local 621 ret = kstrtoul(data, 10, &value); in inject_section_store() 654 unsigned long value; inject_word_store() local 690 unsigned long value; inject_ecc_vector_store() local 716 unsigned long value; inject_read_store() local 750 unsigned long value; inject_write_store() local 3521 u32 value, mask = 0x3; /* UECC/CECC enable */ enable_ecc_error_reporting() local 3572 u32 value, mask = 0x3; /* UECC/CECC enable */ restore_ecc_error_reporting() local 3600 u32 value; dct_ecc_enabled() local [all...] |
/third_party/mesa3d/src/gallium/drivers/svga/ |
H A D | svga_tgsi_insn.c | 326 return (svga_shader_emit_dword( emit, src.base.value ) && in emit_src() 327 svga_shader_emit_dword( emit, src.indirect.value )); in emit_src() 331 return svga_shader_emit_dword( emit, src.base.value ); in emit_src() 342 return svga_shader_emit_dword( emit, dest.value ); in emit_dst() 411 * Apply the absolute value modifier to the given src_register, returning 461 assert(SVGA3dShaderGetRegType(dst.value) == SVGA3DREG_TEMP); in emit_repl() 531 temp.value = 0; in submit_op2() 532 type0 = SVGA3dShaderGetRegType( src0.base.value ); in submit_op2() 533 type1 = SVGA3dShaderGetRegType( src1.base.value ); in submit_op2() 583 temp0.value in submit_op3() 884 common_immediate_swizzle(float value) common_immediate_swizzle() argument 3019 float value[4]; svga_emit_immediate() local [all...] |
/third_party/node/deps/v8/src/parsing/ |
H A D | parser.cc | 49 // Set start and end position to the same value in DefaultConstructor() 174 int value = DoubleToInt32(x_val) | DoubleToInt32(y_val); in ShortcutNumericLiteralBinaryExpression() local 175 *x = factory()->NewNumberLiteral(value, pos); in ShortcutNumericLiteralBinaryExpression() 179 int value = DoubleToInt32(x_val) & DoubleToInt32(y_val); in ShortcutNumericLiteralBinaryExpression() local 180 *x = factory()->NewNumberLiteral(value, pos); in ShortcutNumericLiteralBinaryExpression() 184 int value = DoubleToInt32(x_val) ^ DoubleToInt32(y_val); in ShortcutNumericLiteralBinaryExpression() local 185 *x = factory()->NewNumberLiteral(value, pos); in ShortcutNumericLiteralBinaryExpression() 189 int value = in ShortcutNumericLiteralBinaryExpression() local 191 *x = factory()->NewNumberLiteral(value, pos); in ShortcutNumericLiteralBinaryExpression() 196 uint32_t value in ShortcutNumericLiteralBinaryExpression() local 202 int value = ArithmeticShiftRight(DoubleToInt32(x_val), shift); ShortcutNumericLiteralBinaryExpression() local 270 double value = literal->AsNumber(); BuildUnaryExpression() local 340 uint32_t value = scanner()->smi_value(); ExpressionFromLiteral() local 344 double value = scanner()->DoubleValue(); ExpressionFromLiteral() local 809 WrapREPLResult(Expression* value) WrapREPLResult() argument 1560 Expression* value = ParseAssignmentExpression(); ParseExportDefault() local 1885 DeclareClass(const AstRawString* variable_name, Expression* value, ZonePtrList<const AstRawString>* names, int class_token_pos, int end_pos) DeclareClass() argument 3610 Expression* value = property->value(); SetFunctionNameFromPropertyName() local 3629 SetFunctionNameFromIdentifierRef(Expression* value, Expression* identifier) SetFunctionNameFromIdentifierRef() argument 3637 SetFunctionName(Expression* value, const AstRawString* name, const AstRawString* prefix) SetFunctionName() argument [all...] |
/third_party/node/deps/v8/src/profiler/ |
H A D | heap-snapshot-generator.cc | 505 // an entry with zero value. Otherwise it's impossible to tell if in HeapObjectsMap() 507 // having the value of zero. in HeapObjectsMap() 531 if (to_entry->value != nullptr) { in MoveObject() 534 // value in addr field. It is bad because later at RemoveDeadEntries in MoveObject() 538 static_cast<int>(reinterpret_cast<intptr_t>(to_entry->value)); in MoveObject() 553 to_entry->value = from_value; in MoveObject() 568 int entry_index = static_cast<int>(reinterpret_cast<intptr_t>(entry->value)); in FindEntry() 581 if (entry->value != nullptr) { in FindOrAddEntry() 583 static_cast<int>(reinterpret_cast<intptr_t>(entry->value)); in FindOrAddEntry() 593 entry->value in FindOrAddEntry() 1262 Object value = table.get(value_index); ExtractEphemeronHashTableReferences() local 1572 ExtractArrayBoilerplateDescriptionReferences( HeapEntry* entry, ArrayBoilerplateDescription value) ExtractArrayBoilerplateDescriptionReferences() argument 1580 ExtractRegExpBoilerplateDescriptionReferences( HeapEntry* entry, RegExpBoilerplateDescription value) ExtractRegExpBoilerplateDescriptionReferences() argument 1758 Object value = js_obj.RawFastPropertyAt(field_index); ExtractPropertyReferences() local 1781 Object value = cell.value(); ExtractPropertyReferences() local 1795 Object value = dictionary.ValueAt(i); ExtractPropertyReferences() local 1806 Object value = dictionary.ValueAt(i); ExtractPropertyReferences() local 2786 utoa_impl(T value, const base::Vector<char>& buffer, int buffer_pos) utoa_impl() argument 2806 utoa(T value, const base::Vector<char>& buffer, int buffer_pos) utoa() argument [all...] |
/drivers/peripheral/audio/test/systemtest/adm/audio_adm_interface/src/ |
H A D | audio_adm_interface_test.cpp | 86 .value[0] = 5, in HWTEST_F() 122 .value[0] = 6, in HWTEST_F() 214 * @tc.desc Test the ADM ctrl function,return 0 when setting gain's value is in the range(value=5) 229 .value[0] = 5, in HWTEST_F() 239 * @tc.desc Test the ADM ctrl function,return 0 when setting gain's value is min value 254 .value[0] = MIN_GAIN_VALUE, in HWTEST_F() 264 * @tc.desc Test the ADM ctrl function,return 0 when setting gain's value is max value [all...] |
/kernel/linux/linux-5.10/sound/soc/codecs/ |
H A D | ab8500-codec.c | 46 /* Macrocell value definitions */ 75 long value[128]; member 168 unsigned int *value) in ab8500_codec_read_reg() 176 *value = (unsigned int)value8; in ab8500_codec_read_reg() 183 unsigned int value) in ab8500_codec_write_reg() 188 reg, value); in ab8500_codec_write_reg() 1130 ucontrol->value.enumerated.item[0] = drvdata->sid_status; in sid_status_control_get() 1147 if (ucontrol->value.enumerated.item[0] != SID_APPLY_FIR) { in sid_status_control_put() 1199 ucontrol->value.enumerated.item[0] = drvdata->anc_status; in anc_status_control_get() 1220 req = ucontrol->value in anc_status_control_put() 167 ab8500_codec_read_reg(void *context, unsigned int reg, unsigned int *value) ab8500_codec_read_reg() argument 182 ab8500_codec_write_reg(void *context, unsigned int reg, unsigned int value) ab8500_codec_write_reg() argument 1948 unsigned int value; ab8500_audio_setup_mics() local 2407 u32 value; ab8500_codec_of_probe() local [all...] |
/kernel/linux/linux-6.6/drivers/net/wireless/realtek/rtw88/ |
H A D | pci.c | 1257 static int rtw_dbi_read8(struct rtw_dev *rtwdev, u16 addr, u8 *value) in rtw_dbi_read8() argument 1270 *value = rtw_read8(rtwdev, read_addr); in rtw_dbi_read8() 1309 u8 value; in rtw_pci_clkreq_set() local 1315 ret = rtw_dbi_read8(rtwdev, RTK_PCIE_LINK_CFG, &value); in rtw_pci_clkreq_set() 1322 value |= BIT_CLKREQ_SW_EN; in rtw_pci_clkreq_set() 1324 value &= ~BIT_CLKREQ_SW_EN; in rtw_pci_clkreq_set() 1326 rtw_dbi_write8(rtwdev, RTK_PCIE_LINK_CFG, value); in rtw_pci_clkreq_set() 1331 u8 value; in rtw_pci_clkreq_pad_low() local 1334 ret = rtw_dbi_read8(rtwdev, RTK_PCIE_LINK_CFG, &value); in rtw_pci_clkreq_pad_low() 1341 value in rtw_pci_clkreq_pad_low() 1350 u8 value; rtw_pci_aspm_set() local 1456 u16 value; rtw_pci_phy_cfg() local [all...] |