Lines Matching refs:f64Bit

97     bool f64Bit;
161 &GCPtrMsgBufP, pData->f64Bit ? sizeof(uint64_t) : sizeof(uint32_t));
167 if (!OSX_VALID_ADDRESS(pData->f64Bit, GCPtrMsgBufP))
182 if (!OSX_VALID_ADDRESS(pData->f64Bit, GCPtrMsgBufP))
201 &MsgBuf, sizeof(MsgBuf) - (pData->f64Bit ? 0 : sizeof(uint32_t)) );
207 if (!pData->f64Bit)
218 || !OSX_VALID_ADDRESS(pData->f64Bit, MsgBuf.msg_bufc) )
433 bool f64Bit = uBuf.Hdr64.magic == IMAGE_MACHO64_SIGNATURE;
434 if (uBuf.Hdr32.cputype != (f64Bit ? CPU_TYPE_X86_64 : CPU_TYPE_I386))
438 && uBuf.Hdr32.filetype != (f64Bit ? MH_KEXT_BUNDLE : MH_OBJECT))
448 if (uBuf.Hdr32.sizeofcmds + (f64Bit ? sizeof(mach_header_64_t) : sizeof(mach_header_32_t)) > X86_PAGE_4K_SIZE)
475 uLCmd.pb = &uBuf.ab[f64Bit ? sizeof(mach_header_64_t) : sizeof(mach_header_32_t)];
560 rc = RTDbgModCreateFromMachOImage(&hMod, pszName, NULL, f64Bit ? RTLDRARCH_AMD64 : RTLDRARCH_X86_32, 0 /*cbImage*/,
640 *pf64Bit = f64Bit;
680 bool f64Bit;
681 int rc = dbgDiggerDarwinAddModule(pThis, pUVM, pThis->AddrKernel.FlatPtr, "mach_kernel", &f64Bit);
703 if (f64Bit)
716 if (!OSX_VALID_ADDRESS(f64Bit, AddrModInfo.FlatPtr))
742 f64Bit ? sizeof(uMod.Info64) : sizeof(uMod.Info32));
752 int32_t iInfoVer = f64Bit ? uMod.Info64.info_version : uMod.Info32.info_version;
759 const char *pszName = f64Bit ? uMod.Info64.name : uMod.Info32.name;
769 const char *pszVersion = f64Bit ? uMod.Info64.version : uMod.Info32.version;
778 int32_t cRefs = f64Bit ? uMod.Info64.reference_count : uMod.Info32.reference_count;
785 uint64_t uImageAddr = f64Bit ? uMod.Info64.address : uMod.Info32.address;
786 if (!OSX_VALID_ADDRESS(f64Bit, uImageAddr))
792 uint64_t cbImage = f64Bit ? uMod.Info64.size : uMod.Info32.size;
799 uint64_t cbHdr = f64Bit ? uMod.Info64.hdr_size : uMod.Info32.hdr_size;
806 uint64_t uStartAddr = f64Bit ? uMod.Info64.start : uMod.Info32.start;
807 if (!uStartAddr && !OSX_VALID_ADDRESS(f64Bit, uStartAddr))
813 uint64_t uStopAddr = f64Bit ? uMod.Info64.stop : uMod.Info32.stop;
814 if (!uStopAddr && !OSX_VALID_ADDRESS(f64Bit, uStopAddr))
831 DBGFR3AddrFromFlat(pUVM, &AddrModInfo, f64Bit ? uMod.Info64.next : uMod.Info32.next);
908 bool f64Bit = uBuf.Hdr64.magic == IMAGE_MACHO64_SIGNATURE;
909 if (uBuf.Hdr32.cputype != (f64Bit ? CPU_TYPE_X86_64 : CPU_TYPE_I386))
926 pThis->f64Bit = f64Bit;