#include <stdint.h>
#include "platform.h"
#include "primitiveTypes.h"
Go to the source code of this file.
◆ softfloat_sub256M()
Definition at line 44 of file s_sub256M.c.
46{
47 unsigned int index;
50
52 borrow = 0;
53 for (;;) {
54 wordA = aPtr[index];
55 wordB = bPtr[index];
56 zPtr[index] = wordA - wordB - borrow;
58 borrow = borrow ? (wordA <= wordB) : (wordA < wordB);
60 }
61
62}
#define indexWordLo(total)
#define indexWordHi(total)
unsigned __int64 uint64_t