Home
last modified time | relevance | path

Searched refs:TYPE (Results 1 – 25 of 64) sorted by relevance

123

/device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Include/
DEfiStdArg.h89 #define VA_ARG(Marker, TYPE) __va_arg(Marker, TYPE) argument
113 …RG(Marker, TYPE) ((sizeof (TYPE) < sizeof (UINTN)) ? (TYPE)(__builtin_va_arg (Marker, UINT… argument
132 …RG(Marker, TYPE) ((sizeof (TYPE) < sizeof (UINTN)) ? (TYPE)(__builtin_va_arg (Marker, UINT… argument
184 #define VA_ARG(Marker, TYPE) (*(TYPE *) ((Marker += _INT_SIZE_OF (TYPE)) - _INT_SIZE_OF (TYPE))) argument
DEfiDebug.h92 #define CR(record, TYPE, field, signature) \ argument
93 _CR(record, TYPE, field)->Signature != signature ? \
94 (TYPE *) (_DEBUG_ASSERT("CR has Bad Signature"), record) : \
95 _CR(record, TYPE, field)
118 #define CR(Record, TYPE, Field, Signature) \ argument
119 _CR(Record, TYPE, Field)
/device/linaro/bootloader/edk2/MdePkg/Include/
DBase.h48 #define VERIFY_SIZE_OF(TYPE, Size) extern UINT8 _VerifySizeof##TYPE[(sizeof(TYPE) == (Size)) / (siz… argument
609 #define VA_ARG(Marker, TYPE) __va_arg(Marker, TYPE) argument
638 …RG(Marker, TYPE) ((sizeof (TYPE) < sizeof (UINTN)) ? (TYPE)(__builtin_va_arg (Marker, UINT… argument
657 …RG(Marker, TYPE) ((sizeof (TYPE) < sizeof (UINTN)) ? (TYPE)(__builtin_va_arg (Marker, UINT… argument
706 #define VA_ARG(Marker, TYPE) (*(TYPE *) ((Marker += _INT_SIZE_OF (TYPE)) - _INT_SIZE_OF (TYPE))) argument
747 #define _BASE_INT_SIZE_OF(TYPE) ((sizeof (TYPE) + sizeof (UINTN) - 1) / sizeof (UINTN)) argument
765 #define BASE_ARG(Marker, TYPE) (*(TYPE *) ((Marker += _BASE_INT_SIZE_OF (TYPE)) - _BASE_INT_SIZE_… argument
782 #define OFFSET_OF(TYPE, Field) ((UINTN) __builtin_offsetof(TYPE, Field)) argument
787 #define OFFSET_OF(TYPE, Field) ((UINTN) &(((TYPE *)0)->Field)) argument
809 #define BASE_CR(Record, TYPE, Field) ((TYPE *) ((CHAR8 *) (Record) - (CHAR8 *) &(((TYPE *) 0)->Fie… argument
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Python/
Dast.c171 switch (TYPE(n)) { in num_stmts()
173 if (TYPE(CHILD(n, 0)) == NEWLINE) in num_stmts()
181 if (TYPE(ch) == stmt) in num_stmts()
204 TYPE(n), NCH(n)); in num_stmts()
227 if (TYPE(n) == encoding_decl) { in PyAST_FromNode()
231 } else if (TYPE(n) == encoding_decl) { in PyAST_FromNode()
242 switch (TYPE(n)) { in PyAST_FromNode()
249 if (TYPE(ch) == NEWLINE) in PyAST_FromNode()
281 if (TYPE(CHILD(n, 0)) == NEWLINE) { in PyAST_FromNode()
307 if (TYPE(CHILD(n, i)) == NEWLINE) in PyAST_FromNode()
[all …]
Dsymtable.c944 #define VISIT(ST, TYPE, V) \ argument
945 if (!symtable_visit_ ## TYPE((ST), (V))) \
948 #define VISIT_IN_BLOCK(ST, TYPE, V, S) \ argument
949 if (!symtable_visit_ ## TYPE((ST), (V))) { \
954 #define VISIT_SEQ(ST, TYPE, SEQ) { \ argument
958 TYPE ## _ty elt = (TYPE ## _ty)asdl_seq_GET(seq, i); \
959 if (!symtable_visit_ ## TYPE((ST), elt)) \
964 #define VISIT_SEQ_IN_BLOCK(ST, TYPE, SEQ, S) { \ argument
968 TYPE ## _ty elt = (TYPE ## _ty)asdl_seq_GET(seq, i); \
969 if (!symtable_visit_ ## TYPE((ST), elt)) { \
[all …]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Python/
Dast.c171 switch (TYPE(n)) { in num_stmts()
173 if (TYPE(CHILD(n, 0)) == NEWLINE) in num_stmts()
181 if (TYPE(ch) == stmt) in num_stmts()
204 TYPE(n), NCH(n)); in num_stmts()
227 if (TYPE(n) == encoding_decl) { in PyAST_FromNode()
231 } else if (TYPE(n) == encoding_decl) { in PyAST_FromNode()
242 switch (TYPE(n)) { in PyAST_FromNode()
249 if (TYPE(ch) == NEWLINE) in PyAST_FromNode()
281 if (TYPE(CHILD(n, 0)) == NEWLINE) { in PyAST_FromNode()
307 if (TYPE(CHILD(n, i)) == NEWLINE) in PyAST_FromNode()
[all …]
Dsymtable.c946 #define VISIT(ST, TYPE, V) \ argument
947 if (!symtable_visit_ ## TYPE((ST), (V))) \
950 #define VISIT_IN_BLOCK(ST, TYPE, V, S) \ argument
951 if (!symtable_visit_ ## TYPE((ST), (V))) { \
956 #define VISIT_SEQ(ST, TYPE, SEQ) { \ argument
960 TYPE ## _ty elt = (TYPE ## _ty)asdl_seq_GET(seq, i); \
961 if (!symtable_visit_ ## TYPE((ST), elt)) \
966 #define VISIT_SEQ_IN_BLOCK(ST, TYPE, SEQ, S) { \ argument
970 TYPE ## _ty elt = (TYPE ## _ty)asdl_seq_GET(seq, i); \
971 if (!symtable_visit_ ## TYPE((ST), elt)) { \
[all …]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Parser/
Dlistnode.c33 if (ISNONTERMINAL(TYPE(n))) { in list1node()
38 else if (ISTERMINAL(TYPE(n))) { in list1node()
39 switch (TYPE(n)) { in list1node()
53 if (TYPE(n) == NEWLINE) { in list1node()
Dparser.c198 if (TYPE(ch) == STAR) in future_hack()
200 if (TYPE(ch) == LPAR) in future_hack()
205 if (NCH(cch) >= 1 && TYPE(CHILD(cch, 0)) == NAME) { in future_hack()
338 l.lb_type = TYPE(n); in dumptree()
341 if (ISNONTERMINAL(TYPE(n))) { in dumptree()
360 if (ISNONTERMINAL(TYPE(n))) { in showtree()
364 else if (ISTERMINAL(TYPE(n))) { in showtree()
365 printf("%s", _PyParser_TokenNames[TYPE(n)]); in showtree()
366 if (TYPE(n) == NUMBER || TYPE(n) == NAME) in showtree()
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Parser/
Dlistnode.c33 if (ISNONTERMINAL(TYPE(n))) { in list1node()
38 else if (ISTERMINAL(TYPE(n))) { in list1node()
39 switch (TYPE(n)) { in list1node()
53 if (TYPE(n) == NEWLINE) { in list1node()
Dparser.c198 if (TYPE(ch) == STAR) in future_hack()
200 if (TYPE(ch) == LPAR) in future_hack()
205 if (NCH(cch) >= 1 && TYPE(CHILD(cch, 0)) == NAME) { in future_hack()
338 l.lb_type = TYPE(n); in dumptree()
341 if (ISNONTERMINAL(TYPE(n))) { in dumptree()
360 if (ISNONTERMINAL(TYPE(n))) { in showtree()
364 else if (ISTERMINAL(TYPE(n))) { in showtree()
365 printf("%s", _PyParser_TokenNames[TYPE(n)]); in showtree()
366 if (TYPE(n) == NUMBER || TYPE(n) == NAME) in showtree()
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/
Dparsermodule.c92 if (ISNONTERMINAL(TYPE(n))) { in node2tuple()
97 v = mkseq(1 + NCH(n) + (TYPE(n) == encoding_decl)); in node2tuple()
100 w = PyInt_FromLong(TYPE(n)); in node2tuple()
115 if (TYPE(n) == encoding_decl) in node2tuple()
119 else if (ISTERMINAL(TYPE(n))) { in node2tuple()
122 (void) addelem(result, 0, PyInt_FromLong(TYPE(n))); in node2tuple()
212 if (TYPE(left) < TYPE(right)) in parser_compare_nodes()
215 if (TYPE(right) < TYPE(left)) in parser_compare_nodes()
218 if (ISTERMINAL(TYPE(left))) in parser_compare_nodes()
653 int start_sym = TYPE(tree); in parser_tuple2st()
[all …]
/device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Include/Pei/
DPeiDebug.h78 #define PEI_CR(Record, TYPE, Field, Signature) \ argument
79 _CR(Record, TYPE, Field)
89 #define PEI_CR(Record, TYPE, Field, Signature) \ argument
90 _CR(Record, TYPE, Field)
/device/linaro/bootloader/edk2/StdLib/LibC/StdLib/
DQsort.c70 #define swapcode(TYPE, parmi, parmj, n) { \ argument
71 size_t i = (n) / sizeof (TYPE); \
72 TYPE *pi = (TYPE *) (parmi); \
73 TYPE *pj = (TYPE *) (parmj); \
75 TYPE t = *pi; \
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/
Dparsermodule.c92 if (ISNONTERMINAL(TYPE(n))) { in node2tuple()
97 v = mkseq(1 + NCH(n) + (TYPE(n) == encoding_decl)); in node2tuple()
100 w = PyInt_FromLong(TYPE(n)); in node2tuple()
115 if (TYPE(n) == encoding_decl) in node2tuple()
119 else if (ISTERMINAL(TYPE(n))) { in node2tuple()
122 (void) addelem(result, 0, PyInt_FromLong(TYPE(n))); in node2tuple()
243 if (TYPE(left) < TYPE(right)) in parser_compare_nodes()
246 if (TYPE(right) < TYPE(left)) in parser_compare_nodes()
249 if (ISTERMINAL(TYPE(left))) in parser_compare_nodes()
673 int start_sym = TYPE(tree); in parser_tuple2st()
[all …]
/device/linaro/bootloader/edk2/MdePkg/Include/Library/
DDebugLib.h520 #define CR(Record, TYPE, Field, TestSignature) \ argument
521 (DebugAssertEnabled () && (BASE_CR (Record, TYPE, Field)->Signature != TestSignature)) ? \
522 (TYPE *) (_ASSERT (CR has Bad Signature), Record) : \
523 BASE_CR (Record, TYPE, Field)
525 #define CR(Record, TYPE, Field, TestSignature) \ argument
526 BASE_CR (Record, TYPE, Field)
/device/linaro/bootloader/edk2/BaseTools/Source/C/Include/Common/
DBaseTypes.h128 #define OFFSET_OF(TYPE, Field) ((UINTN) &(((TYPE *)0)->Field)) argument
134 #define _CR(Record, TYPE, Field) ((TYPE *) ((CHAR8 *) (Record) - (CHAR8 *) &(((TYPE *) 0)->Field))) argument
DUefiBaseTypes.h156 #define EFI_FIELD_OFFSET(TYPE,Field) ((UINTN)(&(((TYPE *) 0)->Field))) argument
/device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/EdkIIGlueLib/Include/Library/
DEdkIIGlueDebugLib.h535 #define CR(Record, TYPE, Field, TestSignature) \ argument
536 (DebugAssertEnabled () && (_CR (Record, TYPE, Field)->Signature != TestSignature)) ? \
537 (TYPE *) (_ASSERT (CR has Bad Signature), Record) : \
538 _CR (Record, TYPE, Field)
540 #define CR(Record, TYPE, Field, TestSignature) \ argument
541 _CR (Record, TYPE, Field)
/device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Efi/Include/
DEfiTypes.h282 #define EFI_FIELD_OFFSET(TYPE,Field) ((UINTN)(&(((TYPE *) 0)->Field))) argument
288 #define _CR(Record, TYPE, Field) ((TYPE *) ((CHAR8 *) (Record) - (CHAR8 *) &(((TYPE *) 0)->Field))) argument
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Include/
Dnode.h29 #define TYPE(n) ((n)->n_type) macro
33 #define REQ(n, type) assert(TYPE(n) == (type))
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Include/
Dnode.h30 #define TYPE(n) ((n)->n_type) macro
34 #define REQ(n, type) assert(TYPE(n) == (type))
/device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/Dxe/Include/
DLinkedList.h46 #define EFI_FIELD_OFFSET(TYPE,Field) ((UINTN)(&(((TYPE *) 0)->Field))) argument
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/lib2to3/fixes/
Dfix_idioms.py35 TYPE = "power< 'type' trailer< '(' x=any ')' > >" variable
77 """ % (TYPE, CMP, CMP, TYPE)
/device/linaro/bootloader/edk2/IntelFsp2Pkg/Tools/UserManuals/
DGenCfgOptUserManual.md198 ###TYPE
199 The **TYPE** command is used either by itself or with the **NAME** command. It
205 ```!BSF TYPE:{EditNum, HEX, (0x00,0xFF)}``` or
207 ```@Bsf TYPE:{EditNum, HEX, (0x00,0xFF)}```
209 **TYPE** appears on the same line as the **NAME** command when using a combo-box.
212 ```!BSF NAME:{Variable 1} TYPE:{Combo}``` or
213 ```@Bsf NAME:{Variable 1} TYPE:{Combo}```
291 The **NAME**, **OPTION**, **TYPE**, and **HELP** commands can all appear on the
350 ```!BSF TYPE:{EditNum, HEX, (0x00,0xFF)}``` or
352 ```@Bsf TYPE:{EditNum, HEX, (0x00,0xFF)}```

123