Searched refs:Base (Results 1 - 24 of 24) sorted by relevance

/fuchsia/zircon/third_party/lib/acpica/source/components/utilities/
H A Dutnonansi.c172 * Base - Radix of the string: 16 or ACPI_ANY_BASE;
189 UINT32 Base,
196 UINT32 ToIntegerOp = (Base == ACPI_ANY_BASE);
206 switch (Base)
215 /* Invalid Base */
235 * Base equal to ACPI_ANY_BASE means 'ToInteger operation case'.
241 Base = 16;
248 Base = 10;
282 else if (Base == 10)
336 (Dividend - (UINT64) ThisDigit), Base,
187 AcpiUtStrtoul64( char *String, UINT32 Base, UINT64 *RetInteger) argument
[all...]
H A Dutprint.c78 UINT8 Base,
87 UINT8 Base,
166 * Base - Base of the integer
180 UINT8 Base,
199 (void) AcpiUtDivide (Number, Base, &Number, &DigitIndex);
284 * Base - Base of the integer
300 UINT8 Base,
316 if (Base <
177 AcpiUtPutNumber( char *String, UINT64 Number, UINT8 Base, BOOLEAN Upper) argument
296 AcpiUtFormatNumber( char *String, char *End, UINT64 Number, UINT8 Base, INT32 Width, INT32 Precision, UINT8 Type) argument
445 UINT8 Base; local
[all...]
H A Dutclib.c544 * Base - Radix of the string
557 UINT32 Base)
598 * If the input parameter Base is zero, then we need to
601 if (Base == 0)
607 Base = 16;
612 Base = 8;
617 Base = 10;
620 else if (Base < 2 || Base > 36)
623 * The specified Base paramete
554 strtoul( const char *String, char **Terminator, UINT32 Base) argument
[all...]
/fuchsia/zircon/system/dev/pci/designware/
H A Ddw-pcie-hw.h15 const uint32_t Base = 0x700; member in namespace:pcie::designware::PortLogic
16 const uint32_t DebugR1Offset = Base + 0x2c;
/fuchsia/zircon/third_party/lib/acpica/source/components/executer/
H A Dexconvrt.c58 UINT16 Base,
299 * Base - ACPI_STRING_DECIMAL or ACPI_STRING_HEX
312 UINT16 Base,
329 switch (Base)
443 UINT16 Base = 16; local
468 Base = 10;
494 ObjDesc->Integer.Value, Base, NewBuf, AcpiGbl_IntegerByteWidth);
513 Base = 10;
583 (UINT64) ObjDesc->Buffer.Pointer[i], Base, NewBuf, 1);
310 AcpiExConvertToAscii( UINT64 Integer, UINT16 Base, UINT8 *String, UINT8 DataWidth) argument
H A Dexutils.c73 UINT32 Base);
297 * Base - Base of representation
302 * in the given Base (Radix)
309 UINT32 Base)
332 (void) AcpiUtShortDivide (CurrentValue, Base, &CurrentValue, NULL);
307 AcpiExDigitsNeeded( UINT64 Value, UINT32 Base) argument
/fuchsia/zircon/third_party/lib/acpica/source/compiler/
H A Daslutils.c997 * Base - Radix of the string
1008 UINT32 Base,
1019 switch (Base)
1030 * The specified Base parameter is not in the domain of
1063 * If the input parameter Base is zero, then we need to
1066 if (Base == 0)
1072 Base = 16;
1077 Base = 8;
1082 Base = 10;
1090 if (Base
1006 stroul64( char *String, UINT32 Base, UINT64 *RetInteger) argument
[all...]
H A Daslcompiler.h1012 UINT32 Base,
/fuchsia/zircon/kernel/arch/arm64/hypervisor/
H A Del2_cpu_state_priv.h17 zx_paddr_t Base() const;
H A Del2_cpu_state.cpp48 zx_paddr_t El2TranslationTable::Base() const { function in class:El2TranslationTable
65 zx_status_t status = arm64_el2_on(table.Base(), stack.Top());
/fuchsia/zircon/system/utest/fbl/
H A Dunique_ptr_tests.cpp414 template <typename Base,
423 // Construct unique_ptr<Base> with a move and implicit cast
429 fbl::unique_ptr<Base> base_ptr(fbl::move(derived_ptr));
435 // Assign unique_ptr<Base> at declaration time with a fbl::move
441 fbl::unique_ptr<Base> base_ptr = fbl::move(derived_ptr);
447 // Assign unique_ptr<Base> after declaration with a fbl::move
451 fbl::unique_ptr<Base> base_ptr;
461 bool test_res = handoff_fn<fbl::unique_ptr<Base>>(fbl::move(derived_ptr));
468 // Construct unique_ptr<Base> without a move.
472 fbl::unique_ptr<Base> base_pt
[all...]
H A Dref_ptr_tests.cpp308 template <typename Base,
316 // Construct RefPtr<Base> with a copy and implicit cast
327 fbl::RefPtr<Base> base_ptr(derived_ptr);
337 // Construct RefPtr<Base> with a move and implicit cast
345 fbl::RefPtr<Base> base_ptr(fbl::move(derived_ptr));
360 // Assign RefPtr<Base> at declaration time with a copy
371 fbl::RefPtr<Base> base_ptr = derived_ptr;
381 // Assign RefPtr<Base> at declaration time with a fbl::move
389 fbl::RefPtr<Base> base_ptr = fbl::move(derived_ptr);
404 // Assign RefPtr<Base> afte
[all...]
/fuchsia/zircon/system/ulib/ddktl/include/ddktl/
H A Ddevice-internal.h295 template <typename Base, typename...>
298 template <typename Base, typename Mixin, typename... Mixins>
299 struct all_mixins<Base, Mixin, Mixins...>
300 : fbl::integral_constant<bool, fbl::is_base_of<Base, Mixin>::value &&
301 all_mixins<Base, Mixins...>::value> {};
/fuchsia/zircon/system/ulib/libzbi/include/libzbi/
H A Dzbi-cpp.h54 const uint8_t* Base() const { return base_; }; function in class:zbi::Zbi
/fuchsia/zircon/third_party/lib/acpica/source/include/acpica/
H A Dacclib.h133 UINT32 Base);
H A Dacutils.h196 UINT32 Base,
742 /* Values for Base above (16=Hex, 10=Decimal) */
/fuchsia/zircon/system/utest/fbl/include/fbl/tests/intrusive_containers/
H A Dbase_test_environments.h67 using Base = TestEnvironmentBase<UnmanagedTestTraits<T>>;
68 using PtrType = typename Base::PtrType;
69 static constexpr auto OBJ_COUNT = Base::OBJ_COUNT;
84 return Base::CreateTrackedObject(ndx, value, true);
92 using Base = TestEnvironmentBase<UniquePtrTestTraits<T>>;
93 using PtrType = typename Base::PtrType;
94 static constexpr auto OBJ_COUNT = Base::OBJ_COUNT;
106 return Base::CreateTrackedObject(ndx, value, false);
114 using Base = TestEnvironmentBase<RefPtrTestTraits<T>>;
115 using PtrType = typename Base
[all...]
H A Dassociative_container_test_environment.h458 using Base = TestEnvironmentBase<TestEnvTraits>;
459 static constexpr size_t OBJ_COUNT = Base::OBJ_COUNT;
H A Dsequence_container_test_environment.h1104 using Base = TestEnvironmentBase<TestEnvTraits>;
1105 static constexpr size_t OBJ_COUNT = Base::OBJ_COUNT;
/fuchsia/zircon/system/ulib/fbl/include/fbl/
H A Dtype_support.h306 template <typename Base, typename Derived>
307 struct is_base_of : public integral_constant<bool, __is_base_of(Base, Derived)> { };
/fuchsia/zircon/system/ulib/libzbi/
H A Dzbi-zx.cpp155 memcpy(data->Payload(), Base() + kernel_size, data_payload_size);
/fuchsia/zircon/system/ulib/lockdep/include/lockdep/
H A Dlock_class.h28 // Base lock traits type. If a type has not been tagged with the
104 // Base lock wrapper type that provides the essential interface required by
294 using Base = LockDep;
/fuchsia/zircon/kernel/platform/pc/
H A Dplatform.cpp164 printf("zbi: @ %p (%u bytes)\n", image.Base(), image.Length());
/fuchsia/zircon/third_party/lib/acpica/source/tools/examples/
H A Dextables.c330 [0001] GPE1 Base Offset : 00

Completed in 92 milliseconds