Lines Matching defs:u64

667                 *pcb = sizeof(pLeaf->Value.Integer.u64);
703 *pu64 = pLeaf->Value.Integer.u64;
727 *pu64 = pLeaf->Value.Integer.u64;
2069 pLeaf->Value.Integer.u64 = u64Integer;
2295 rc = CFGMR3InsertInteger(pNode, pValue->szName, pValue->Value.Integer.u64);
2377 uint64_t u64;
2378 int rc = CFGMR3QueryInteger(pNode, pszName, &u64);
2380 *pi64 = (int64_t)u64;
2396 uint64_t u64;
2397 int rc = CFGMR3QueryIntegerDef(pNode, pszName, &u64, i64Def);
2398 *pi64 = (int64_t)u64;
2413 uint64_t u64;
2414 int rc = CFGMR3QueryInteger(pNode, pszName, &u64);
2417 if (!(u64 & UINT64_C(0xffffffff00000000)))
2418 *pu32 = (uint32_t)u64;
2437 uint64_t u64;
2438 int rc = CFGMR3QueryIntegerDef(pNode, pszName, &u64, u32Def);
2441 if (!(u64 & UINT64_C(0xffffffff00000000)))
2442 *pu32 = (uint32_t)u64;
2462 uint64_t u64;
2463 int rc = CFGMR3QueryInteger(pNode, pszName, &u64);
2466 if ( !(u64 & UINT64_C(0xffffffff80000000))
2467 || (u64 & UINT64_C(0xffffffff80000000)) == UINT64_C(0xffffffff80000000))
2468 *pi32 = (int32_t)u64;
2487 uint64_t u64;
2488 int rc = CFGMR3QueryIntegerDef(pNode, pszName, &u64, i32Def);
2491 if ( !(u64 & UINT64_C(0xffffffff80000000))
2492 || (u64 & UINT64_C(0xffffffff80000000)) == UINT64_C(0xffffffff80000000))
2493 *pi32 = (int32_t)u64;
2513 uint64_t u64;
2514 int rc = CFGMR3QueryInteger(pNode, pszName, &u64);
2517 if (!(u64 & UINT64_C(0xffffffffffff0000)))
2518 *pu16 = (int16_t)u64;
2537 uint64_t u64;
2538 int rc = CFGMR3QueryIntegerDef(pNode, pszName, &u64, u16Def);
2541 if (!(u64 & UINT64_C(0xffffffffffff0000)))
2542 *pu16 = (int16_t)u64;
2562 uint64_t u64;
2563 int rc = CFGMR3QueryInteger(pNode, pszName, &u64);
2566 if ( !(u64 & UINT64_C(0xffffffffffff8000))
2567 || (u64 & UINT64_C(0xffffffffffff8000)) == UINT64_C(0xffffffffffff8000))
2568 *pi16 = (int16_t)u64;
2587 uint64_t u64;
2588 int rc = CFGMR3QueryIntegerDef(pNode, pszName, &u64, i16Def);
2591 if ( !(u64 & UINT64_C(0xffffffffffff8000))
2592 || (u64 & UINT64_C(0xffffffffffff8000)) == UINT64_C(0xffffffffffff8000))
2593 *pi16 = (int16_t)u64;
2613 uint64_t u64;
2614 int rc = CFGMR3QueryInteger(pNode, pszName, &u64);
2617 if (!(u64 & UINT64_C(0xffffffffffffff00)))
2618 *pu8 = (uint8_t)u64;
2637 uint64_t u64;
2638 int rc = CFGMR3QueryIntegerDef(pNode, pszName, &u64, u8Def);
2641 if (!(u64 & UINT64_C(0xffffffffffffff00)))
2642 *pu8 = (uint8_t)u64;
2662 uint64_t u64;
2663 int rc = CFGMR3QueryInteger(pNode, pszName, &u64);
2666 if ( !(u64 & UINT64_C(0xffffffffffffff80))
2667 || (u64 & UINT64_C(0xffffffffffffff80)) == UINT64_C(0xffffffffffffff80))
2668 *pi8 = (int8_t)u64;
2687 uint64_t u64;
2688 int rc = CFGMR3QueryIntegerDef(pNode, pszName, &u64, i8Def);
2691 if ( !(u64 & UINT64_C(0xffffffffffffff80))
2692 || (u64 & UINT64_C(0xffffffffffffff80)) == UINT64_C(0xffffffffffffff80))
2693 *pi8 = (int8_t)u64;
2714 uint64_t u64;
2715 int rc = CFGMR3QueryInteger(pNode, pszName, &u64);
2717 *pf = u64 ? true : false;
2734 uint64_t u64;
2735 int rc = CFGMR3QueryIntegerDef(pNode, pszName, &u64, fDef);
2736 *pf = u64 ? true : false;
2844 uint64_t u64;
2845 int rc = CFGMR3QueryInteger(pNode, pszName, &u64);
2848 uintptr_t u = (uintptr_t)u64;
2849 if (u64 == u)
2869 uint64_t u64;
2870 int rc = CFGMR3QueryIntegerDef(pNode, pszName, &u64, (uintptr_t)pvDef);
2873 uintptr_t u = (uintptr_t)u64;
2874 if (u64 == u)
2895 uint64_t u64;
2896 int rc = CFGMR3QueryInteger(pNode, pszName, &u64);
2899 RTGCPTR u = (RTGCPTR)u64;
2900 if (u64 == u)
2920 uint64_t u64;
2921 int rc = CFGMR3QueryIntegerDef(pNode, pszName, &u64, GCPtrDef);
2924 RTGCPTR u = (RTGCPTR)u64;
2925 if (u64 == u)
2946 uint64_t u64;
2947 int rc = CFGMR3QueryInteger(pNode, pszName, &u64);
2950 RTGCUINTPTR u = (RTGCUINTPTR)u64;
2951 if (u64 == u)
2971 uint64_t u64;
2972 int rc = CFGMR3QueryIntegerDef(pNode, pszName, &u64, GCPtrDef);
2975 RTGCUINTPTR u = (RTGCUINTPTR)u64;
2976 if (u64 == u)
2997 uint64_t u64;
2998 int rc = CFGMR3QueryInteger(pNode, pszName, &u64);
3001 RTGCINTPTR u = (RTGCINTPTR)u64;
3002 if (u64 == (uint64_t)u)
3022 uint64_t u64;
3023 int rc = CFGMR3QueryIntegerDef(pNode, pszName, &u64, GCPtrDef);
3026 RTGCINTPTR u = (RTGCINTPTR)u64;
3027 if (u64 == (uint64_t)u)
3215 pHlp->pfnPrintf(pHlp, " %-*s <integer> = %#018llx (%'lld", (int)cchMax, pLeaf->szName, pLeaf->Value.Integer.u64, pLeaf->Value.Integer.u64);
3221 if (pLeaf->Value.Integer.u64 > _2G)
3222 pHlp->pfnPrintf(pHlp, ", %'lld GB", pLeaf->Value.Integer.u64 / _1G);
3223 else if (pLeaf->Value.Integer.u64 > _2M)
3224 pHlp->pfnPrintf(pHlp, ", %'lld MB", pLeaf->Value.Integer.u64 / _1M);
3225 else if (pLeaf->Value.Integer.u64 > _2K)
3226 pHlp->pfnPrintf(pHlp, ", %'lld KB", pLeaf->Value.Integer.u64 / _1K);