Searched refs:Operand (Results 1 - 16 of 16) sorted by relevance

/haiku/src/add-ons/kernel/bus_managers/acpi/acpica/components/executer/
H A Dexoparg1.c272 ACPI_OPERAND_OBJECT **Operand = &WalkState->Operands[0]; local
286 Status = AcpiExReleaseMutex (Operand[0], WalkState);
291 Status = AcpiExSystemResetEvent (Operand[0]);
296 Status = AcpiExSystemSignalEvent (Operand[0]);
301 Status = AcpiExSystemDoSleep (Operand[0]->Integer.Value);
306 Status = AcpiExSystemDoStall ((UINT32) Operand[0]->Integer.Value);
311 Status = AcpiExUnloadTable (Operand[0]);
345 ACPI_OPERAND_OBJECT **Operand = &WalkState->Operands[0]; local
359 Status = AcpiExLoadOp (Operand[0], Operand[
398 ACPI_OPERAND_OBJECT **Operand = &WalkState->Operands[0]; local
753 ACPI_OPERAND_OBJECT **Operand = &WalkState->Operands[0]; local
[all...]
H A Dexoparg3.c203 ACPI_OPERAND_OBJECT **Operand = &WalkState->Operands[0]; local
219 (UINT32) Operand[0]->Integer.Value,
220 (UINT32) Operand[1]->Integer.Value,
221 (UINT32) Operand[2]->Integer.Value));
226 Fatal->Type = (UINT32) Operand[0]->Integer.Value;
227 Fatal->Code = (UINT32) Operand[1]->Integer.Value;
228 Fatal->Argument = (UINT32) Operand[2]->Integer.Value;
285 ACPI_OPERAND_OBJECT **Operand = &WalkState->Operands[0]; local
305 (Operand[0])->Common.Type);
314 Index = Operand[
[all...]
H A Dexoparg2.c206 ACPI_OPERAND_OBJECT **Operand = &WalkState->Operands[0]; local
224 Node = (ACPI_NAMESPACE_NODE *) Operand[0];
228 Value = (UINT32) Operand[1]->Integer.Value;
280 ACPI_OPERAND_OBJECT **Operand = &WalkState->Operands[0]; local
315 Operand[0]->Integer.Value,
316 Operand[1]->Integer.Value,
336 Status = AcpiExStore (ReturnDesc2, Operand[2], WalkState);
342 Status = AcpiExStore (ReturnDesc1, Operand[3], WalkState);
390 ACPI_OPERAND_OBJECT **Operand = &WalkState->Operands[0]; local
416 Operand[
651 ACPI_OPERAND_OBJECT **Operand = &WalkState->Operands[0]; local
[all...]
H A Dexoparg6.c333 ACPI_OPERAND_OBJECT **Operand = &WalkState->Operands[0]; local
354 if ((Operand[1]->Integer.Value > MAX_MATCH_OPERATOR) ||
355 (Operand[3]->Integer.Value > MAX_MATCH_OPERATOR))
364 Index = Operand[5]->Integer.Value;
365 if (Index >= Operand[0]->Package.Count)
369 ACPI_FORMAT_UINT64 (Index), Operand[0]->Package.Count));
396 for ( ; Index < Operand[0]->Package.Count; Index++)
400 ThisElement = Operand[0]->Package.Elements[Index];
414 if (!AcpiExDoMatch ((UINT32) Operand[1]->Integer.Value,
415 ThisElement, Operand[
[all...]
H A Dexcreate.c493 ACPI_OPERAND_OBJECT **Operand = &WalkState->Operands[0]; local
511 ObjDesc->Processor.ProcId = (UINT8) Operand[1]->Integer.Value;
512 ObjDesc->Processor.Length = (UINT8) Operand[3]->Integer.Value;
513 ObjDesc->Processor.Address = (ACPI_IO_ADDRESS) Operand[2]->Integer.Value;
517 Status = AcpiNsAttachObject ((ACPI_NAMESPACE_NODE *) Operand[0],
545 ACPI_OPERAND_OBJECT **Operand = &WalkState->Operands[0]; local
563 ObjDesc->PowerResource.SystemLevel = (UINT8) Operand[1]->Integer.Value;
564 ObjDesc->PowerResource.ResourceOrder = (UINT16) Operand[2]->Integer.Value;
568 Status = AcpiNsAttachObject ((ACPI_NAMESPACE_NODE *) Operand[0],
598 ACPI_OPERAND_OBJECT **Operand local
[all...]
H A Dexconfig.c243 ACPI_OPERAND_OBJECT **Operand = &WalkState->Operands[0]; local
269 Operand[0]->String.Pointer,
270 Operand[1]->String.Pointer,
271 Operand[2]->String.Pointer, &TableIndex);
292 if (Operand[3]->String.Length > 0)
299 Operand[3]->String.Pointer, ACPI_NS_SEARCH_PARENT,
309 if (Operand[4]->String.Length > 0)
311 if ((Operand[4]->String.Pointer[0] != AML_ROOT_PREFIX) &&
312 (Operand[4]->String.Pointer[0] != AML_PARENT_PREFIX))
324 Operand[
[all...]
H A Dexresolv.c446 * Operand - Starting point for resolution
460 ACPI_OPERAND_OBJECT *Operand,
464 ACPI_OPERAND_OBJECT *ObjDesc = ACPI_CAST_PTR (void, Operand);
465 ACPI_NAMESPACE_NODE *Node = ACPI_CAST_PTR (ACPI_NAMESPACE_NODE, Operand);
473 /* Operand can be either a namespace node or an operand descriptor */
577 if (ObjDesc == Operand)
458 AcpiExResolveMultiple( ACPI_WALK_STATE *WalkState, ACPI_OPERAND_OBJECT *Operand, ACPI_OBJECT_TYPE *ReturnType, ACPI_OPERAND_OBJECT **ReturnDesc) argument
/haiku/src/kits/debugger/source_language/c_family/
H A DCLanguageExpressionEvaluator.h60 class Operand;
63 Operand _ParseSum();
64 Operand _ParseProduct();
65 Operand _ParseUnary();
66 Operand _ParseIdentifier(ValueNode* parentNode = NULL);
67 Operand _ParseAtom();
71 Operand _ParseType(Type* baseType);
H A DCLanguageExpressionEvaluator.cpp184 // #pragma mark - CLanguageExpressionEvaluator::Operand
187 class CLanguageExpressionEvaluator::Operand { class in class:CLanguageExpressionEvaluator
189 Operand() function in class:CLanguageExpressionEvaluator::Operand
198 Operand(int64 value) function in class:CLanguageExpressionEvaluator::Operand
207 Operand(double value) function in class:CLanguageExpressionEvaluator::Operand
216 Operand(ValueNode* node) function in class:CLanguageExpressionEvaluator::Operand
226 Operand(Type* type) function in class:CLanguageExpressionEvaluator::Operand
236 Operand(const Operand& X) function in class:CLanguageExpressionEvaluator::Operand
247 virtual ~Operand()
[all...]
/haiku/src/kits/tracker/
H A DRegExp.h158 inline char* Operand(char* p) const;
159 inline const char* Operand(const char* p) const;
H A DRegExp.cpp372 scan = Operand(scan);
376 r->regstart = *Operand(scan);
391 && (int32)strlen(Operand(scan)) >= len) {
392 longest = Operand(scan);
393 len = (int32)strlen(Operand(scan));
904 Tail(Operand(p), val);
1057 const char* opnd = Operand(scan);
1074 || strchr(Operand(scan), *fStringInputPointer) == NULL) {
1082 || strchr(Operand(scan), *fStringInputPointer) != NULL) {
1160 next = Operand(sca
1331 RegExp::Operand(char* p) const function in class:RegExp
1338 RegExp::Operand(const char* p) const function in class:RegExp
[all...]
/haiku/src/add-ons/kernel/bus_managers/acpi/acpica/components/dispatcher/
H A Ddsopcode.c633 ACPI_OPERAND_OBJECT **Operand; local
663 Operand = &WalkState->Operands[0];
679 Operand[0]->String.Pointer,
680 Operand[1]->String.Pointer,
681 Operand[2]->String.Pointer, &TableIndex);
688 Operand[0]->String.Pointer,
689 Operand[1]->String.Pointer,
690 Operand[2]->String.Pointer));
721 AcpiUtRemoveReference (Operand[0]);
722 AcpiUtRemoveReference (Operand[
[all...]
H A Ddsutils.c958 ACPI_OPERAND_OBJECT **Operand = &WalkState->Operands[0]; local
990 NewObjDesc = *Operand;
994 Type = (*Operand)->Common.Type;
996 Status = AcpiExResolveToValue (Operand, WalkState);
1006 AcpiUtRemoveReference (*Operand);
1009 *Operand, &NewObjDesc, WalkState);
1021 NewObjDesc = *Operand;
/haiku/src/add-ons/kernel/bus_managers/acpi/acpica/components/utilities/
H A Dutmath.c238 * PARAMETERS: Operand - 64-bit shift operand
248 UINT64 Operand,
258 OperandOvl.Full = Operand;
283 * PARAMETERS: Operand - 64-bit shift operand
293 UINT64 Operand,
303 OperandOvl.Full = Operand;
367 UINT64 Operand,
379 *OutResult = Operand << Count;
397 UINT64 Operand,
409 *OutResult = Operand >> Coun
247 AcpiUtShortShiftLeft( UINT64 Operand, UINT32 Count, UINT64 *OutResult) argument
292 AcpiUtShortShiftRight( UINT64 Operand, UINT32 Count, UINT64 *OutResult) argument
366 AcpiUtShortShiftLeft( UINT64 Operand, UINT32 Count, UINT64 *OutResult) argument
396 AcpiUtShortShiftRight( UINT64 Operand, UINT32 Count, UINT64 *OutResult) argument
[all...]
/haiku/src/add-ons/kernel/bus_managers/acpi/acpica/include/
H A Dacutils.h962 UINT64 Operand,
968 UINT64 Operand,
H A Dacinterp.h200 #define ACPI_EXD_LIST 14 /* Operand object list */
641 ACPI_OPERAND_OBJECT *Operand,

Completed in 162 milliseconds