Lines Matching refs:attributeOpcode
156 attribute_opcode_t attributeOpcode = ao_unknown; { // opcode is not known yet
157 if (attributeOperator == "or") attributeOpcode = ao_or;
158 else if (attributeOperator == "nand") attributeOpcode = ao_nand;
159 else if (attributeOperator == "xor") attributeOpcode = ao_xor;
160 else if (attributeOperator == "=") attributeOpcode = ao_assignall;
161 else if (attributeOperator == "set") attributeOpcode = ao_set;
162 else if (attributeOperator == "clear") attributeOpcode = ao_clear;
163 else if (attributeOperator == "toggle") attributeOpcode = ao_toggle;
164 else if (attributeOperator == "get") attributeOpcode = ao_get;
169 } // attributeOpcode
172 uint64_t attributeBitMask; { if (attributeOpcode < ao_unknown) {
180 int bitNum; { if (attributeOpcode > ao_unknown) {
189 switch (attributeOpcode) {