Home
last modified time | relevance | path

Searched refs:typeWidth (Results 1 – 7 of 7) sorted by relevance

/external/compiler-rt/lib/builtins/
Dfp_lib.h216 #define typeWidth (sizeof(rep_t)*CHAR_BIT) macro
217 #define exponentBits (typeWidth - significandBits - 1)
248 *hi = *hi << count | *lo >> (typeWidth - count); in wideLeftShift()
253 if (count < typeWidth) { in wideRightShiftWithSticky()
254 const bool sticky = *lo << (typeWidth - count); in wideRightShiftWithSticky()
255 *lo = *hi << (typeWidth - count) | *lo >> count | sticky; in wideRightShiftWithSticky()
258 else if (count < 2*typeWidth) { in wideRightShiftWithSticky()
259 const bool sticky = *hi << (2*typeWidth - count) | *lo; in wideRightShiftWithSticky()
260 *lo = *hi >> (count - typeWidth) | sticky; in wideRightShiftWithSticky()
Dfp_add_impl.inc85 if (align < typeWidth) {
86 const bool sticky = bSignificand << (typeWidth - align);
124 const bool sticky = aSignificand << (typeWidth - shift);
Dfloatunsisf.c42 rep_t round = (rep_t)a << (typeWidth - shift); in ARM_EABI_FNALIAS()
Dfloatsisf.c50 rep_t round = (rep_t)a << (typeWidth - shift); in ARM_EABI_FNALIAS()
Dfp_mul_impl.inc95 if (shift >= typeWidth) return fromRep(productSign);
/external/angle/src/tests/gl_tests/
DIndexBufferOffsetTest.cpp69 void runTest(GLenum type, int typeWidth, void *indexData) in runTest() argument
76 size_t indexDataWidth = 6 * typeWidth; in runTest()
/external/deqp/external/vulkancts/modules/vulkan/spirv_assembly/
DvktSpvAsmTypeTests.cpp545 const deUint32 typeWidth = inputWidthValues[widthNdx]; in getOtherSizeTypes() local
546 const InputType typeUnsigned = getInputType(typeWidth, false); in getOtherSizeTypes()
547 const InputType typeSigned = getInputType(typeWidth, true); in getOtherSizeTypes()
557 if (has8BitInputWidth(inputWidth) && typeWidth != 8) in getOtherSizeTypes()
567 if (has16BitInputWidth(inputWidth) && typeWidth != 16) in getOtherSizeTypes()
577 if (has64BitInputWidth(inputWidth) && typeWidth != 64) in getOtherSizeTypes()
641 const deUint32 typeWidth = inputWidthValues[widthNdx]; in getBinaryFullOperationWithInputWidthStr() local
642 const InputType typeUnsigned = getInputType(typeWidth, false); in getBinaryFullOperationWithInputWidthStr()
643 const InputType typeSigned = getInputType(typeWidth, true); in getBinaryFullOperationWithInputWidthStr()
652 const string inputTypeStr = (input1Width == typeWidth) ? "%testtype" in getBinaryFullOperationWithInputWidthStr()
[all …]