/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/email/ |
D | _parseaddr.py | 182 def __init__(self, field): argument 198 self.field = field 203 while self.pos < len(self.field): 204 if self.field[self.pos] in self.LWS + '\n\r': 206 elif self.field[self.pos] == '(': 217 while self.pos < len(self.field): 237 if self.pos >= len(self.field): 242 elif self.field[self.pos] in '.@': 250 elif self.field[self.pos] == ':': 254 fieldlen = len(self.field) [all …]
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/ |
D | rfc822.py | 508 def __init__(self, field): argument 523 self.field = field 528 while self.pos < len(self.field): 529 if self.field[self.pos] in self.LWS + '\n\r': 531 elif self.field[self.pos] == '(': 559 if self.pos >= len(self.field): 564 elif self.field[self.pos] in '.@': 572 elif self.field[self.pos] == ':': 576 fieldlen = len(self.field) 578 while self.pos < len(self.field): [all …]
|
D | mailcap.py | 100 field, i = parsefield(line, i, n) 101 fields.append(field) 107 for field in rest: 108 i = field.find('=') 110 fkey = field 113 fkey = field[:i].strip() 114 fvalue = field[i+1:].strip() 170 def subst(field, MIMEtype, filename, plist=[]): argument 173 i, n = 0, len(field) 175 c = field[i]; i = i+1 [all …]
|
D | ast.py | 96 ('%s=%s' % field for field in fields) 166 for field in node._fields: 168 yield field, getattr(node, field) 178 for name, field in iter_fields(node): 179 if isinstance(field, AST): 180 yield field 181 elif isinstance(field, list): 182 for item in field: 245 for field, value in iter_fields(node): 291 for field, old_value in iter_fields(node): [all …]
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Parser/ |
D | asdl_c.py | 168 for field in sum.attributes: 170 type = str(field.type) 172 emit("%s %s;" % (type, field.name), depth + 1); 187 def visitField(self, field, depth): argument 190 ctype = get_c_type(field.type) 191 name = field.name 192 if field.seq: 193 if field.type.value in ('cmpop',): 466 def visitFieldDeclaration(self, field, name, sum=None, prod=None, depth=0): argument 467 ctype = get_c_type(field.type) [all …]
|
D | asdl.py | 189 def p_fields_0(self, (field,)): argument 191 return [field] 193 def p_fields_1(self, (field, _, fields)): argument 195 return fields + [field] 360 def visitField(self, field, name): argument 361 key = str(field.type)
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/ |
D | ast.py | 96 ('%s=%s' % field for field in fields) 166 for field in node._fields: 168 yield field, getattr(node, field) 178 for name, field in iter_fields(node): 179 if isinstance(field, AST): 180 yield field 181 elif isinstance(field, list): 182 for item in field: 245 for field, value in iter_fields(node): 291 for field, old_value in iter_fields(node): [all …]
|
/device/linaro/bootloader/edk2/QuarkSocPkg/QuarkNorthCluster/MemoryInit/Pei/ |
D | meminit.c | 117 Dco.field.PMICTL = 0; //0 - PRI owned by MEMORY_MANAGER in select_memory_manager() 132 Dco.field.PMICTL = 1; //1 - PRI owned by HTE in select_hte() 184 Dpmc0.field.CLKGTDIS = 1; in prog_decode_before_jedec() 185 Dpmc0.field.DISPWRDN = 1; in prog_decode_before_jedec() 186 Dpmc0.field.DYNSREN = 0; in prog_decode_before_jedec() 187 Dpmc0.field.PCLSTO = 0; in prog_decode_before_jedec() 192 Dsch.field.OOODIS = 1; in prog_decode_before_jedec() 193 Dsch.field.NEWBYPDIS = 1; in prog_decode_before_jedec() 198 Drfc.field.tREFI = 0; in prog_decode_before_jedec() 203 Dcal.field.ZQCINT = 0; in prog_decode_before_jedec() [all …]
|
D | gen5_iosf_sb_definitions.h | 69 } field; member 95 } field; member 116 } field; member 130 } field; member 152 } field; member 173 } field; member 196 } field; member 217 } field; member 235 } field; member 252 } field; member [all …]
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/ |
D | _csv.c | 119 char *field; /* build current field in here */ member 539 PyObject *field; in parse_save_field() local 541 field = PyString_FromStringAndSize(self->field, self->field_len); in parse_save_field() 542 if (field == NULL) in parse_save_field() 549 tmp = PyNumber_Float(field); in parse_save_field() 551 Py_DECREF(field); in parse_save_field() 554 Py_DECREF(field); in parse_save_field() 555 field = tmp; in parse_save_field() 557 PyList_Append(self->fields, field); in parse_save_field() 558 Py_DECREF(field); in parse_save_field() [all …]
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Tools/gdb/ |
D | libpython.py | 128 def field(self, name): member in PyObjectPtr 167 return PyObjectPtr.from_pyobject_ptr(self.field(name)) 193 return PyTypeObjectPtr(self.field('ob_type')) 212 return self.type().field('tp_name').string() 289 tp_name = t.field('tp_name').string() 290 tp_flags = int(t.field('tp_flags')) 413 return ( ( typeobj.field('tp_basicsize') + 414 nitems * typeobj.field('tp_itemsize') + 429 dictoffset = int_from_int(typeobj.field('tp_dictoffset')) 527 if int_from_int(self.field('ob_ival')): [all …]
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/ |
D | _csv.c | 119 char *field; /* build current field in here */ member 529 PyObject *field; in parse_save_field() local 531 field = PyString_FromStringAndSize(self->field, self->field_len); in parse_save_field() 532 if (field == NULL) in parse_save_field() 539 tmp = PyNumber_Float(field); in parse_save_field() 541 Py_DECREF(field); in parse_save_field() 544 Py_DECREF(field); in parse_save_field() 545 field = tmp; in parse_save_field() 547 PyList_Append(self->fields, field); in parse_save_field() 548 Py_DECREF(field); in parse_save_field() [all …]
|
/device/linaro/hikey/hifi/xaf/hifi-dpf/include/sys/xt-shmem/ |
D | xf-shmem.h | 113 #define XF_PROXY_READ(core, field) \ argument 114 __XF_PROXY_READ_##field(XF_SHMEM_DATA(core)) 116 #define XF_PROXY_WRITE(core, field, v) \ argument 117 __XF_PROXY_WRITE_##field(XF_SHMEM_DATA(core), (v))
|
/device/google/crosshatch/sdm845/kernel-headers/linux/ |
D | videodev2.h | 42 …field) ((field) == V4L2_FIELD_TOP || (field) == V4L2_FIELD_INTERLACED || (field) == V4L2_FIELD_INT… argument 43 …field) ((field) == V4L2_FIELD_BOTTOM || (field) == V4L2_FIELD_INTERLACED || (field) == V4L2_FIELD_… argument 44 …field) ((field) == V4L2_FIELD_INTERLACED || (field) == V4L2_FIELD_INTERLACED_TB || (field) == V4L2… argument 45 #define V4L2_FIELD_HAS_T_OR_B(field) ((field) == V4L2_FIELD_BOTTOM || (field) == V4L2_FIELD_TOP || … argument 179 __u32 field; member 506 __u32 field; member 572 __u32 field; member 600 __u32 field; member 1130 __u32 field; member 1168 __u32 field; member [all …]
|
/device/google/bonito/sdm710/kernel-headers/linux/ |
D | videodev2.h | 42 …field) ((field) == V4L2_FIELD_TOP || (field) == V4L2_FIELD_INTERLACED || (field) == V4L2_FIELD_INT… argument 43 …field) ((field) == V4L2_FIELD_BOTTOM || (field) == V4L2_FIELD_INTERLACED || (field) == V4L2_FIELD_… argument 44 …field) ((field) == V4L2_FIELD_INTERLACED || (field) == V4L2_FIELD_INTERLACED_TB || (field) == V4L2… argument 45 #define V4L2_FIELD_HAS_T_OR_B(field) ((field) == V4L2_FIELD_BOTTOM || (field) == V4L2_FIELD_TOP || … argument 179 __u32 field; member 506 __u32 field; member 572 __u32 field; member 600 __u32 field; member 1130 __u32 field; member 1168 __u32 field; member [all …]
|
/device/google/crosshatch/sdm845/original-kernel-headers/linux/ |
D | videodev2.h | 107 #define V4L2_FIELD_HAS_TOP(field) \ argument 108 ((field) == V4L2_FIELD_TOP ||\ 109 (field) == V4L2_FIELD_INTERLACED ||\ 110 (field) == V4L2_FIELD_INTERLACED_TB ||\ 111 (field) == V4L2_FIELD_INTERLACED_BT ||\ 112 (field) == V4L2_FIELD_SEQ_TB ||\ 113 (field) == V4L2_FIELD_SEQ_BT) 114 #define V4L2_FIELD_HAS_BOTTOM(field) \ argument 115 ((field) == V4L2_FIELD_BOTTOM ||\ 116 (field) == V4L2_FIELD_INTERLACED ||\ [all …]
|
/device/google/bonito/sdm710/original-kernel-headers/linux/ |
D | videodev2.h | 107 #define V4L2_FIELD_HAS_TOP(field) \ argument 108 ((field) == V4L2_FIELD_TOP ||\ 109 (field) == V4L2_FIELD_INTERLACED ||\ 110 (field) == V4L2_FIELD_INTERLACED_TB ||\ 111 (field) == V4L2_FIELD_INTERLACED_BT ||\ 112 (field) == V4L2_FIELD_SEQ_TB ||\ 113 (field) == V4L2_FIELD_SEQ_BT) 114 #define V4L2_FIELD_HAS_BOTTOM(field) \ argument 115 ((field) == V4L2_FIELD_BOTTOM ||\ 116 (field) == V4L2_FIELD_INTERLACED ||\ [all …]
|
/device/linaro/bootloader/edk2/QuarkSocPkg/QuarkNorthCluster/Include/ |
D | DdrMemoryController.h | 172 } field; member 186 } field; member 204 } field; member 218 } field; member
|
/device/generic/opengl-transport/host/commands/emugen/ |
D | EntryPoint.cpp | 49 std::string field; in parse() local 58 field = getNextToken(linestr, 0, &last, "("); in parse() 61 field = getNextToken(linestr, pos, &last, ",)"); in parse() 65 if (!parseTypeDeclaration(field, &retTypeName, &error)) { in parse() 69 field.c_str(), in parse() 94 field = getNextToken(linestr, pos, &last, ",)"); in parse() 95 if (field == "void") { in parse() 101 if (!parseParameterDeclaration(field, &vartype, &varname, &error)) { in parse() 105 field.c_str(), in parse()
|
/device/google/contexthub/firmware/os/inc/ |
D | util.h | 30 #define alignof(type) offsetof(struct { char x; type field; }, field)
|
/device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Include/ |
D | EfiDebug.h | 92 #define CR(record, TYPE, field, signature) \ argument 93 _CR(record, TYPE, field)->Signature != signature ? \ 95 _CR(record, TYPE, field)
|
/device/linaro/bootloader/edk2/QuarkPlatformPkg/Library/PlatformSecLib/Ia32/ |
D | Platform.inc | 81 SB_OPCODE_FIELD EQU 018h ; Bit location of Opcode field 88 SB_PORT_FIELD EQU 010h ; Bit location of Port ID field 94 SB_ADDR_FIELD EQU 008h ; Bit location of Register field 95 SB_BE_FIELD EQU 004h ; Bit location of Byte Enables field
|
/device/linaro/bootloader/arm-trusted-firmware/include/lib/stdlib/sys/ |
D | cdefs.h | 393 #define __offsetof(type, field) __builtin_offsetof(type, field) argument 396 #define __offsetof(type, field) \ argument 397 ((__size_t)(__uintptr_t)((const volatile void *)&((type *)0)->field)) 399 #define __offsetof(type, field) \ argument 402 (static_cast<type *> (0)->field))))
|
/device/linaro/bootloader/edk2/IntelFrameworkPkg/ |
D | FrameworkSpecConformance.txt | 15 # 4. Some defintitions don't exactly match Framework specification, some new field members are intr… 76 …The field type of the definition is *NOT* consistent with CacheSubclass specification. Specificati… 140 …on is *NOT* consistent with ProcSubclass specification, in which the name of third field is defined 168 …a. In ProcSubclass specification 0.9, the field name whose value equals to 0x58 is "EfiProcessorFa… 169 …Due to the name has been defined in previous field, changing it to "EfiProcessorFamilyUltraSparcII… 351 …The field name "MemorySpeed" in the definition above is *NOT* consistent with MemSubclass specific… 628 … is *NOT* consistent with MiscSubclass specification, in which the type of last field is defined as 664 …a. The field "ManagementDeviceThresholdLink" above is *NOT* defined in MiscSubclass specification … 667 …b. The field "ComponentType" above is *NOT* defined in MiscSubclass specifications 0.9. It's imple… 677 … consistent with MiscSubclass specification 0.9, in which the first field is assigned a wrong field [all …]
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/ |
D | test_string.py | 165 for field in format_string.split('|'): 166 if field[0] == '+': 168 field_name, _, format_spec = field[1:].partition(':') 171 yield field, None, None, None
|