| /misc/config_tools/board_inspector/smbiosparser/ |
| A D | smbios.py | 191 if self.length > 0x8: 205 if self.length > 0x19: 243 if self.length > 0x8: 246 if self.length > 0x9: 254 if self.length > 0xA: 257 if self.length > 0xB: 260 if self.length > 0xD: 263 if self.length > 0xE: 320 if self.length > 9: 340 if self.length > 0xd: [all …]
|
| /misc/config_tools/board_inspector/acpiparser/aml/ |
| A D | visitors.py | 85 def __format_length(length): argument 86 assert length <= 0x0FFFFFFF 87 if length <= 0x3F: 105 assert length <= 0x0FFFFFFB 106 if length <= 0x3E: 107 length += 1 108 elif length <= 0x0FFD: 109 length += 2 110 elif length <= 0x0FFFFC: 111 length += 3 [all …]
|
| A D | datatypes.py | 47 def __init__(self, length): argument 48 self.__length = length 180 def __init__(self, stream, base, length): argument 181 super().__init__(length) 325 def open_system_memory(cls, name, offset, length): argument 338 iobuf = StreamIOBuffer(mm, offset & 0xFFF, length) 342 def open_system_io(cls, name, offset, length): argument 347 iobuf = StreamIOBuffer(cls.devport, offset, length) 352 assert offset <= 0xFF and (offset + length) <= 0x100 360 iobuf = StreamIOBuffer(f, offset, length) [all …]
|
| A D | context.py | 26 def __init__(self, name, length, tree): argument 28 self.length = length 42 def __init__(self, name, length, tree): argument 46 self.length = length
|
| A D | parser.py | 526 length = field.FieldLength.value 531 bit_offset += length 533 length = field.FieldLength.value 534 bit_offset += length 549 length = field.FieldLength.value 553 bit_offset += length 555 length = field.FieldLength.value 556 bit_offset += length 562 length = tree.FieldLength.value 563 sym = OperationFieldDecl(name, length, tree)
|
| /misc/config_tools/board_inspector/acpiparser/ |
| A D | dmar.py | 39 def dmar_device_scope_list(addr, length): argument 40 end = addr + length 48 num_dev_scope_path = (subtable.length - base_len_DMARDeviceScope) // len_DMARDeviceScopePath 50 addr += subtable.length 177 def dmar_subtable_list(addr, length): argument 178 end = addr + length 189 … next_field_list = dmar_device_scope_list(addr + base_len_DRHD, subtable.length - base_len_DRHD) 200 cls = DMARSubTableANDD_factory(subtable.length - base_len_ANDD) 202 cls = DMARSubtableUnknown_factory(subtable.length - ctypes.sizeof(DMARSubtable)) 203 addr += subtable.length [all …]
|
| A D | rtct.py | 184 def rtct_version(addr, length): argument 185 end = addr + length 195 def rtct_v1_subtable_list(addr, length): argument 196 end = addr + length 219 def rtct_v2_subtable_list(addr, length): argument 220 end = addr + length 253 def rtct_version_and_subtable_list(addr, length): argument 254 version = rtct_version(addr, length) 257 return (version, rtct_v1_subtable_list(addr, length)) 259 return (version, rtct_v2_subtable_list(addr, length)) [all …]
|
| A D | rdt.py | 401 ] if (layout.length > 2 + layout._LEN * 4) else []) + ([ 403 ] if (layout.length > 2 + layout._LEN * 4 + 1) else []) 628 def rdt_item_list(addr, length): argument 629 end = addr + length 637 cls = SmallResourceItemIRQ_factory(tag.length) 651 cls = SmallResourceItemVendorDefined_factory(tag.length) 666 cls = LargeResourceItemVendorDefined_factory(tag.length) 674 cls = LargeResourceItemWordAddressSpace_factory(tag.length) 684 cls = LargeResourceItemPinFunction_factory(tag.length) 688 cls = LargeResourceItemPinConfiguration_factory(tag.length) [all …]
|
| A D | apic.py | 242 def apic_subtable_list(addr, length): argument 243 end = addr + length 249 addr += subtable.length 269 cls = APICSubtableUnknown_factory(subtable.length - ctypes.sizeof(APICSubtable)) 280 subtable_list = apic_subtable_list(addr + preamble_length, hdr.length - preamble_length)
|
| /misc/config_tools/configurator/packages/vue-json-schema-form/vue3/vue3-core/src/fields/ArrayField/arrayTypes/ |
| A D | ArrayFieldTuple.js | 31 if (isNoArray || props.itemsFormData.length < props.schema.items.length) { 48 pushArray: curSchemaState.slice(props.itemsFormData.length) 83 const cutOfArr = cutOff(props.itemsFormData, props.schema.items.length - 1); 119 … curNodePath: computedCurPath(props.curNodePath, index + schema.items.length) 152 tupleItemsLength: schema.items.length,
|
| /misc/config_tools/configurator/packages/vue-json-schema-form/vue3/vue3-core/src/fields/ArrayField/components/ |
| A D | ArrayOrderList.js | 62 return vNodeList.length < maxItems; 74 return vNodeList.length > minItems; 82 if (props.vNodeList.length <= 0 && !props.addable) return null; 158 … disabled: !props.sortable || index === props.vNodeList.length - 1, 242 … props.maxItems ? `( ${props.vNodeList.length} / ${props.maxItems} )` : ''
|
| /misc/config_tools/configurator/packages/vue-json-schema-form/utils/ |
| A D | utils.js | 114 if (type instanceof Array && type.length === 2 && type.includes('null')) { 160 if (ka.length === 0 && kb.length === 0) { 163 if (ka.length !== kb.length) { 167 let cal = ca.length; 180 for (let j = ka.length - 1; j >= 0; j--) { 188 for (let k = ka.length - 1; k >= 0; k--) { 281 while (s.length < size) { 299 if (properties.length !== 1) { 311 for (let i = 0; i < binary.length; i++) {
|
| A D | vue3Utils.js | 22 for (let i = 0; i < pathArr.length; i += 1) { 23 if (pathArr.length - i < 2) { 25 obj[pathArr[pathArr.length - 1]] = value;
|
| A D | arrayUtils.js | 15 if (index === target.length - 1) return false; 24 return !!target.splice(index, 1).length;
|
| A D | formUtils.js | 292 const errorPropList = arr => (arr.length > 1 304 if (rest.length) { 326 (Array.isArray(schema.enum) && schema.enum.length === 1) 332 if (Array.isArray(schema.enum) && schema.enum.length === 1) { 362 && schema.items.length > 0
|
| /misc/config_tools/static_allocators/ |
| A D | clos.py | 54 … length = get_node(f"//cache[@level='3']/capability/capacity_mask_length/text()", board_etree) 55 if length is not None: 56 default_l3_value = hex((1 << int(length)) - 1) 66 …length = get_node(f"//cache[@level='2' and @id = '{cache2}']/capability/capacity_mask_length/text(… 67 if length is not None: 68 default_l2_value = hex((1 << int(length)) - 1)
|
| /misc/config_tools/configurator/packages/vue-json-schema-form/vue3/vue3-core/src/fields/SchemaField/ |
| A D | index.js | 28 if (Object.keys(schema).length === 0) return null; 43 if (schema.anyOf && schema.anyOf.length > 0 && !isSelect(schema)) { 53 } if (schema.oneOf && schema.oneOf.length > 0 && !isSelect(schema)) {
|
| /misc/config_tools/configurator/packages/configurator/src/pages/Welcome/ |
| A D | NewConfiguration.vue | 59 for (let i = 0; i < files.length; i++) { 61 let basename = arr[arr.length - 1] 79 let folderPath = this.WorkingFolder.length ? this.WorkingFolder : this.defaultWorkingFolder; 83 if (folderPath.charAt(folderPath.length - 1) !== window.systemInfo.pathSplit) { 92 if (files.length > 0) { 130 if (folderPath.length > 0)
|
| /misc/config_tools/configurator/packages/vue-json-schema-form/utils/schema/ |
| A D | retriev.js | 215 if (args.length < 2) return args[0]; 219 while (copyArgs.length >= 2) { 266 if (intersectionArray.length <= 0) { 270 if (intersectionArray.length === 0 && key === 'type') {
|
| A D | validate.js | 168 … const emptyArray = (schema.type === 'array' && Array.isArray(formData) && formData.length === 0); 223 …return (isOnlyFirstError && ajvErrors.length > 0 ? [ajvErrors[0]] : ajvErrors).reduce((preErrors, … 254 for (let i = 0; i < options.length; i++) { 318 for (let i = 0; i < options.length; i++) {
|
| /misc/config_tools/configurator/packages/configurator/src/pages/ |
| A D | Config.vue | 159 console.log('before:',total_pcis.enum.length) 166 console.log('after:',total_pcis.enum.length) 177 if (result && result.length > 0) { 181 if (result_p && result_p.length > 0) { 341 if (files.length > 0) { 342 for (let i = 0; i < files.length; i++) { 344 let suffix = arr[arr.length - 1] 474 if (errors.syntactic_errors.length > 0) { 477 if (errors.semantic_errors.length > 0) { 507 let totalMsgLength = msg.length // msg and errMsg must be same length. [all …]
|
| /misc/config_tools/board_inspector/ |
| A D | board_inspector.py | 97 length = 120 111 print("="*length) 118 print("="*length) 125 print("="*length) 131 print("="*length)
|
| /misc/config_tools/configurator/packages/vue-json-schema-form/vue3/vue3-form-naive/src/config/widgets/UploadWidget/ |
| A D | index.js | 77 curValue = emitFileList.length ? emitFileList.reduce((pre, item) => { 83 const fileItem = emitFileList[emitFileList.length - 1];
|
| /misc/config_tools/configurator/packages/configurator/src/pages/Config/ |
| A D | Scenario.vue | 77 if (filePath.length > 0) { 118 if (this.currentSelectedScenario.length > 0) { 152 if (dirPath.length > 0) { 163 if (this.scenarioHistory.length > 0) {
|
| A D | Board.vue | 93 if (filePath.length > 0) { 119 if (filePath.length > 0) { 120 if (this.currentSelectedBoard.length > 0) { 139 if (filepath.length > 0) { 226 if (this.boardHistory.length > 0) {
|