Home
last modified time | relevance | path

Searched refs:b (Results 1 – 25 of 43) sorted by relevance

12

/acpica-latest/source/include/
Dacmacros.h545 #define ARGI_LIST2(a, b) (ARG_1(b)|ARG_2(a)) argument
546 #define ARGI_LIST3(a, b, c) (ARG_1(c)|ARG_2(b)|ARG_3(a)) argument
547 #define ARGI_LIST4(a, b, c, d) (ARG_1(d)|ARG_2(c)|ARG_3(b)|ARG_4(a)) argument
548 #define ARGI_LIST5(a, b, c, d, e) (ARG_1(e)|ARG_2(d)|ARG_3(c)|ARG_4(b)|ARG_5(a)) argument
549 #define ARGI_LIST6(a, b, c, d, e, f) (ARG_1(f)|ARG_2(e)|ARG_3(d)|ARG_4(c)|ARG_5(b)|ARG_6(a)) argument
552 #define ARGP_LIST2(a, b) (ARG_1(a)|ARG_2(b)) argument
553 #define ARGP_LIST3(a, b, c) (ARG_1(a)|ARG_2(b)|ARG_3(c)) argument
554 #define ARGP_LIST4(a, b, c, d) (ARG_1(a)|ARG_2(b)|ARG_3(c)|ARG_4(d)) argument
555 #define ARGP_LIST5(a, b, c, d, e) (ARG_1(a)|ARG_2(b)|ARG_3(c)|ARG_4(d)|ARG_5(e)) argument
556 #define ARGP_LIST6(a, b, c, d, e, f) (ARG_1(a)|ARG_2(b)|ARG_3(c)|ARG_4(d)|ARG_5(e)|ARG_6(f)) argument
[all …]
Dacoutput.h571 #define ACPI_DUMP_OPERANDS(a, b ,c) AcpiExDumpOperands(a, b, c) argument
572 #define ACPI_DUMP_ENTRY(a, b) AcpiNsDumpEntry (a, b) argument
573 #define ACPI_DUMP_PATHNAME(a, b, c, d) AcpiNsDumpPathname(a, b, c, d) argument
574 #define ACPI_DUMP_BUFFER(a, b) AcpiUtDebugDumpBuffer((UINT8 *) a, b, DB_BYTE_DISPLAY, _COM… argument
576 #define ACPI_TRACE_POINT(a, b, c, d) AcpiTracePoint (a, b, c, d) argument
589 #define ACPI_FUNCTION_TRACE_PTR(a, b) argument
590 #define ACPI_FUNCTION_TRACE_U32(a, b) argument
591 #define ACPI_FUNCTION_TRACE_STR(a, b) argument
594 #define ACPI_DUMP_OPERANDS(a, b, c) argument
595 #define ACPI_DUMP_ENTRY(a, b) argument
[all …]
Dactypes.h589 #define ACPI_TIME_AFTER(a, b) ((INT64)((b) - (a)) < 0) argument
643 #define ACPI_MIN(a,b) (((a)<(b))?(a):(b)) argument
644 #define ACPI_MAX(a,b) (((a)>(b))?(a):(b)) argument
654 #define ACPI_ADD_PTR(t, a, b) ACPI_CAST_PTR (t, (ACPI_CAST_PTR (UINT8, (a)) + (ACPI_SIZE)… argument
655 #define ACPI_SUB_PTR(t, a, b) ACPI_CAST_PTR (t, (ACPI_CAST_PTR (UINT8, (a)) - (ACPI_SIZE)… argument
656 #define ACPI_PTR_DIFF(a, b) ((ACPI_SIZE) (ACPI_CAST_PTR (UINT8, (a)) - ACPI_CAST_PTR (U… argument
672 #define ACPI_COMPARE_NAMESEG(a,b) (*ACPI_CAST_PTR (UINT32, (a)) == *ACPI_CAST_PTR (UINT32, (b argument
675 #define ACPI_COMPARE_NAMESEG(a,b) (!strncmp (ACPI_CAST_PTR (char, (a)), ACPI_CAST_PTR (char, … argument
/acpica-latest/tests/aslts/src/runtime/common/conversion/
Drtest.asl716 Name (TS, "m503,b+b")
717 /* b+b -->> b -->> all combinations of Result and ComputationalData */
733 /* i,b */
753 /* i,bf(i,b) */
775 /* s,b */
795 /* s,bf(i,b) */
805 /* b,i */
819 /* b,s */
833 /* b,b */
855 /* b,bf(i,i) */
[all …]
/acpica-latest/source/compiler/
Dasldefine.h195 #define ASL_PTR_DIFF(a,b) ((UINT8 *)(b) - (UINT8 *)(a)) argument
196 #define ASL_PTR_ADD(a,b) ((UINT8 *)(a) = ((UINT8 *)(a) + (b))) argument
199 #define OP_TABLE_ENTRY(a,b,c,d) {b,d,a,c} argument
Dpreprocess.h161 #define PR_INIT_GLOBAL(a,b) (a)=(b) argument
164 #define PR_INIT_GLOBAL(a,b) (a) argument
Dprutils.c309 UINT32 b, PrevOffset; in PrReplaceResizeSubstring() local
368 b = strlen (Token) + Args->Offset[i]; in PrReplaceResizeSubstring()
369 memset (&AslGbl_MacroTokenBuffer[b], ' ', Diff1); in PrReplaceResizeSubstring()
Daslglobal.h164 #define ASL_INIT_GLOBAL(a,b) (a)=(b) argument
167 #define ASL_INIT_GLOBAL(a,b) (a) argument
Dreadme.txt50 1b) Notes for Windows generation
95 b) Select the "Tools" tab.
132 b) For all ASL files in the project, specify a custom build (under
Ddtcompiler.h168 #define DT_INIT_GLOBAL(a,b) (a)=(b) argument
171 #define DT_INIT_GLOBAL(a,b) (a) argument
/acpica-latest/source/tools/acpibin/
Dacpibin.h164 #define INIT_GLOBAL(a,b) a=b argument
167 #define INIT_GLOBAL(a,b) a argument
/acpica-latest/source/tools/acpidump/
Dacpidump.h157 #define INIT_GLOBAL(a,b) a=b argument
160 #define INIT_GLOBAL(a,b) a argument
/acpica-latest/tests/misc/
DconverterSample.asl14 /* first comment of named object b */
15 Name (b, 5)
48 Name(b,0);
/acpica-latest/tests/aslts/src/runtime/collections/functional/manipulation/
Dconcatenate.asl384 "a b",
387 "a b",
388 "a b",
389 "a b",
390 "a b",
391 "a b",
419 "aba b",
420 "a ba b",
421 "a ba b",
Dunicode.asl66 /* 00C0 */ 0x61, 0x00, 0x62, 0x00, 0x63, 0x00, 0x64, 0x00, // a.b.c.d.
112 /* 00C0 */ 0x61, 0x00, 0x62, 0x00, 0x63, 0x00, 0x64, 0x00, // a.b.c.d.
/acpica-latest/tests/aslts/src/runtime/collections/functional/logic/
Dlogical.asl306 "a b",
309 "a b",
310 "a b",
311 "a b",
312 "a b",
313 "a b",
641 "a b"
656 "a b"
661 "a b"
666 "a b"
[all …]
/acpica-latest/tests/aslts/
DHOW_TO_USE43 b) Add the following directory to the PATH variable:
78 > acpiexec -b "Execute MAIN" 20090320/nopt/32/arithmetic.aml
119 b) "The total number of exceptions handled: 0x0000000000000005"
124 Line (b) reports the number of exceptions which took place during the test
135 b) "The total number of exceptions handled: 0x0000000000000005"
/acpica-latest/tests/aslts/src/runtime/collections/bdemo/ACPICA/0277_ACTION_REQUIRED/
DInfo.txt19 ds: 007b�� es: 007b�� ss: 0068
/acpica-latest/tests/aslts/src/runtime/collections/exceptions/exc_operand/exc_operand2/
Dexc_03_buf.asl46 0x62 // b
318 0x62 // b
342 0x62 // b
362 0x62 // b
Dexc_operand2.asl45 0x62 // b
/acpica-latest/source/tools/acpisrc/
Dasfile.c176 AsMaxInt (int a, int b) in AsMaxInt() argument
178 return (a > b ? a : b); in AsMaxInt()
/acpica-latest/tests/aslts/src/runtime/collections/bdemo/ACPICA/0125/
DDECL.asl54 /* b) Modulo(Index, 0x100000000) < Size. */
62 /* b) Index + Length >= 0x100000000 */
/acpica-latest/tests/aslts/bin/
Dasltsrun584 local x y z q l m n o p b u
601 b=`echo "$1" | awk -F"|" '{print $11}'`
614 multi_log " BLOCKED : $b"
655 N_BLCK=$[ $N_BLCK + $b ]
/acpica-latest/source/include/platform/
Daclinux.h218 #define ACPI_INIT_GLOBAL(t,a,b) argument
/acpica-latest/tests/aslts/src/runtime/collections/bdemo/ACPICA/0253_DEMO_IMPOSSIBLE/
DDECL.asl32 …* SUMMARY: Option -b of AcpiExec should be generalized to run any command of ACPICA debugger in a …

12