Lines Matching defs:fFlags

283  * @param   fFlags          Format flags, see DIS_FORMAT_FLAGS_*.
287 DISDECL(size_t) DISFormatYasmEx(PCDISSTATE pDis, char *pszBuf, size_t cchBuf, uint32_t fFlags,
298 AssertMsg(DIS_FMT_FLAGS_IS_VALID(fFlags), ("%#x\n", fFlags));
299 if (fFlags & DIS_FMT_FLAGS_ADDR_COMMENT)
300 fFlags = (fFlags & ~DIS_FMT_FLAGS_ADDR_LEFT) | DIS_FMT_FLAGS_ADDR_RIGHT;
301 if (fFlags & DIS_FMT_FLAGS_BYTES_COMMENT)
302 fFlags = (fFlags & ~DIS_FMT_FLAGS_BYTES_LEFT) | DIS_FMT_FLAGS_BYTES_RIGHT;
340 do { if (fFlags & DIS_FMT_FLAGS_STRICT) PUT_SZ(szStrict); else PUT_SZ(szRelaxed); } while (0)
412 if (fFlags & DIS_FMT_FLAGS_ADDR_LEFT)
425 if (fFlags & DIS_FMT_FLAGS_BYTES_LEFT)
427 size_t cchTmp = disFormatBytes(pDis, pszDst, cchDst, fFlags);
444 size_t cchPadding = (7 * (2 + !!(fFlags & DIS_FMT_FLAGS_BYTES_SPACED)))
445 + !!(fFlags & DIS_FMT_FLAGS_BYTES_BRACKETS) * 2
800 if ( (fFlags & DIS_FMT_FLAGS_STRICT)
924 if ( (fFlags & DIS_FMT_FLAGS_STRICT)
934 || ( (fFlags & DIS_FMT_FLAGS_STRICT)
961 || ( (fFlags & DIS_FMT_FLAGS_STRICT)
1011 bool fPrefix = (fFlags & DIS_FMT_FLAGS_STRICT)
1018 fFlags &= ~DIS_FMT_FLAGS_RELATIVE_BRANCH;
1027 if (fFlags & DIS_FMT_FLAGS_RELATIVE_BRANCH)
1037 if (fFlags & DIS_FMT_FLAGS_RELATIVE_BRANCH)
1048 if (fFlags & DIS_FMT_FLAGS_RELATIVE_BRANCH)
1051 if (fFlags & DIS_FMT_FLAGS_RELATIVE_BRANCH)
1062 if (fFlags & DIS_FMT_FLAGS_RELATIVE_BRANCH)
1225 if (fFlags & (DIS_FMT_FLAGS_BYTES_RIGHT | DIS_FMT_FLAGS_ADDR_RIGHT))
1233 if (fFlags & (DIS_FMT_FLAGS_BYTES_RIGHT | DIS_FMT_FLAGS_ADDR_RIGHT))
1239 if (fFlags & DIS_FMT_FLAGS_ADDR_RIGHT)
1252 if (fFlags & DIS_FMT_FLAGS_BYTES_RIGHT)
1255 size_t cchTmp = disFormatBytes(pDis, pszDst, cchDst, fFlags);
1295 return DISFormatYasmEx(pDis, pszBuf, cchBuf, 0 /* fFlags */, NULL /* pfnGetSymbol */, NULL /* pvUser */);