HomeSort by relevance Sort by last modified time
    Searched refs:asUint (Results 1 - 21 of 21) sorted by null

  /frameworks/base/services/net/java/android/net/util/
ConnectivityPacketSummary.java 94 final int etherType = asUint(mPacket.getShort());
121 if (asUint(mPacket.getShort()) != ARP_HWTYPE_ETHER ||
122 asUint(mPacket.getShort()) != ETHER_TYPE_IPV4 ||
123 asUint(mPacket.get()) != ETHER_ADDR_LEN ||
124 asUint(mPacket.get()) != IPV4_ADDR_LEN) {
129 final int opCode = asUint(mPacket.getShort());
161 final int flagsAndFragment = asUint(mPacket.getShort());
165 final int protocol = asUint(mPacket.get());
195 final int protocol = asUint(mPacket.get());
218 final int icmp6Type = asUint(mPacket.get())
    [all...]
NetworkConstants.java 185 public static int asUint(byte b) { return (b & 0xff); }
186 public static int asUint(short s) { return (s & 0xffff); }
  /external/deqp/external/vulkancts/modules/vulkan/shaderrender/
vktShaderRenderOperatorTests.cpp 154 template<int Size> inline Vector<deUint32, Size> subOne (const Vector<deUint32, Size>& v) { return (v.asInt() - 1).asUint(); };
161 template<int Size> inline Vector<deUint32, Size> subVecScalar (const Vector<deUint32, Size>& v, deUint32 s) { return (v.asInt() - (int)s).asUint(); };
    [all...]
vktShaderRenderTextureGatherTests.cpp     [all...]
  /external/deqp/modules/gles3/functional/
es3fShaderOperatorTests.cpp 171 template<int Size> inline Vector<deUint32, Size> subOne (const Vector<deUint32, Size>& v) { return (v.asInt() - 1).asUint(); };
178 template<int Size> inline Vector<deUint32, Size> subVecScalar (const Vector<deUint32, Size>& v, deUint32 s) { return (v.asInt() - (int)s).asUint(); };
    [all...]
es3fRandomFragmentOpTests.cpp 420 return format.getColorThreshold().toIVec().asUint() + tcu::UVec4(2); // Default threshold.
422 return format.getColorThreshold().toIVec().asUint()
es3fFragmentOutputTests.cpp 728 const UVec4 fmtMaxVal = ((tcu::Vector<deUint64, 4>(1) << fmtBits.cast<deUint64>())-deUint64(1)).asUint();
736 const UVec4 step = maxVal / rangeDiv.asUint();
747 UVec4 c = step*swizzleVec(IVec4(x, y, ix, iy).asUint(), curInVec);
    [all...]
es3fBlendTests.cpp 327 UVec4 compareThreshold = (m_useSrgbFbo ? tcu::PixelFormat(8, 8, 8, 8) : m_context.getRenderTarget().getPixelFormat()).getColorThreshold().toIVec().asUint()
es3fFboTestUtil.cpp     [all...]
es3fTextureSpecificationTests.cpp 147 return (IVec4(1) << (8-compareBits)).asUint();
    [all...]
  /external/deqp/modules/gles2/functional/
es2fRandomFragmentOpTests.cpp 420 return format.getColorThreshold().toIVec().asUint() + tcu::UVec4(6); // Default threshold.
422 return format.getColorThreshold().toIVec().asUint()
es2fBlendTests.cpp 272 UVec4 compareThreshold = m_context.getRenderTarget().getPixelFormat().getColorThreshold().toIVec().asUint()
es2fTextureSpecificationTests.cpp 105 return (IVec4(1) << (8-compareBits)).asUint();
    [all...]
  /external/deqp/modules/gles31/functional/
es31fShaderFramebufferFetchTests.cpp 415 tcu::clear(data.getAccess(), color.asUint());
485 m_gl.uniform4uiv(colorLocation, 1, color.asUint().getPtr());
572 tcu::clear(reference.getAccess(), fbColor.asUint() + uniformColor.asUint());
    [all...]
es31fAdvancedBlendTests.cpp 549 const UVec4 compareThreshold = (useFbo ? tcu::PixelFormat(8, 8, 8, 8) : m_context.getRenderTarget().getPixelFormat()).getColorThreshold().toIVec().asUint()
es31fFboTestUtil.cpp 433 ctx.clearBufferuiv(GL_COLOR, 0, value.asUint().getPtr());
es31fShaderImageLoadStoreTests.cpp 587 UVec4 getPixelUint (int x, int y, int z) const { return getPixelInt(x, y, z).asUint(); }
    [all...]
  /external/deqp/framework/common/
tcuVector.hpp 151 Vector<deUint32, Size> asUint (void) const { return cast<deUint32>(); }
tcuAstcUtil.cpp     [all...]
tcuTexLookupVerifier.cpp 85 return boolAll(logicalOr(lessThanEqual(absDiff(ref, result).asUint(), prec.colorThreshold), logicalNot(prec.colorMask)));
    [all...]
  /external/deqp/modules/egl/
teglNativeColorMappingTests.cpp 255 const tcu::UVec4 nativeBitDepth(tcu::getTextureFormatBitDepth(result.getFormat()).asUint());

Completed in 1164 milliseconds