aml_parsemath     126 dev/acpi/dsdt.c struct aml_value *aml_parsemath(struct aml_scope *, int, struct aml_value *);
aml_parsemath     197 dev/acpi/dsdt.c 	{ AMLOP_INCREMENT,	"Increment",	"t",	aml_parsemath },
aml_parsemath     198 dev/acpi/dsdt.c 	{ AMLOP_DECREMENT,	"Decrement",	"t",	aml_parsemath },
aml_parsemath     199 dev/acpi/dsdt.c 	{ AMLOP_ADD,		"Add",		"iir",	aml_parsemath },
aml_parsemath     200 dev/acpi/dsdt.c 	{ AMLOP_SUBTRACT,	"Subtract",	"iir",	aml_parsemath },
aml_parsemath     201 dev/acpi/dsdt.c 	{ AMLOP_MULTIPLY,	"Multiply",	"iir",	aml_parsemath },
aml_parsemath     202 dev/acpi/dsdt.c 	{ AMLOP_DIVIDE,		"Divide",	"iirr",	aml_parsemath },
aml_parsemath     203 dev/acpi/dsdt.c 	{ AMLOP_SHL,		"ShiftLeft",	"iir",	aml_parsemath },
aml_parsemath     204 dev/acpi/dsdt.c 	{ AMLOP_SHR,		"ShiftRight",	"iir",	aml_parsemath },
aml_parsemath     205 dev/acpi/dsdt.c 	{ AMLOP_AND,		"And",		"iir",	aml_parsemath },
aml_parsemath     206 dev/acpi/dsdt.c 	{ AMLOP_NAND,		"Nand",		"iir",	aml_parsemath },
aml_parsemath     207 dev/acpi/dsdt.c 	{ AMLOP_OR,		"Or",		"iir",	aml_parsemath },
aml_parsemath     208 dev/acpi/dsdt.c 	{ AMLOP_NOR,		"Nor",		"iir",	aml_parsemath },
aml_parsemath     209 dev/acpi/dsdt.c 	{ AMLOP_XOR,		"Xor",		"iir",	aml_parsemath },
aml_parsemath     210 dev/acpi/dsdt.c 	{ AMLOP_NOT,		"Not",		"ir",	aml_parsemath },
aml_parsemath     211 dev/acpi/dsdt.c 	{ AMLOP_MOD,		"Mod",		"iir",	aml_parsemath },
aml_parsemath     212 dev/acpi/dsdt.c 	{ AMLOP_FINDSETLEFTBIT,	"FindSetLeftBit", "ir",	aml_parsemath },
aml_parsemath     213 dev/acpi/dsdt.c 	{ AMLOP_FINDSETRIGHTBIT,"FindSetRightBit", "ir",aml_parsemath },
aml_parsemath     216 dev/acpi/dsdt.c 	{ AMLOP_LAND,		"LAnd",		"ii",	aml_parsemath },
aml_parsemath     217 dev/acpi/dsdt.c 	{ AMLOP_LOR,		"LOr",		"ii",	aml_parsemath },
aml_parsemath     218 dev/acpi/dsdt.c 	{ AMLOP_LNOT,		"LNot",		"i",	aml_parsemath },
aml_parsemath     253 dev/acpi/dsdt.c 	{ AMLOP_TOINTEGER,	"ToInteger",	"tr",	aml_parsemath },
aml_parsemath     259 dev/acpi/dsdt.c 	{ AMLOP_FROMBCD,	"FromBCD",	"ir",	aml_parsemath },
aml_parsemath     260 dev/acpi/dsdt.c 	{ AMLOP_TOBCD,		"ToBCD",	"ir",	aml_parsemath },