HomeSort by relevance Sort by last modified time
    Searched refs:RG (Results 1 - 25 of 35) sorted by null

1 2

  /external/lzma/Java/SevenZip/
LzmaBench.java 28 CRandomGenerator RG = new CRandomGenerator();
48 Value = RG.GetRnd();
58 CBitRandomGenerator RG = new CBitRandomGenerator();
72 int GetRndBit() { return RG.GetRnd(1); }
75 int len = RG.GetRnd(numBits);
76 return RG.GetRnd((int)len);
82 return (GetLogRandBits(4) << 10) | RG.GetRnd(10);
84 int GetLen1() { return RG.GetRnd(1 + (int)RG.GetRnd(2)); }
85 int GetLen2() { return RG.GetRnd(2 + (int)RG.GetRnd(2)); }
317 CBenchRandomGenerator rg = new CBenchRandomGenerator(); local
    [all...]
  /external/lzma/CS/7zip/Compress/LzmaAlone/
LzmaBench.cs 33 CRandomGenerator RG = new CRandomGenerator();
53 Value = RG.GetRnd();
63 CBitRandomGenerator RG = new CBitRandomGenerator();
78 UInt32 GetRndBit() { return RG.GetRnd(1); }
81 UInt32 len = RG.GetRnd(numBits);
82 return RG.GetRnd((int)len);
88 return (GetLogRandBits(4) << 10) | RG.GetRnd(10);
90 UInt32 GetLen1() { return RG.GetRnd(1 + (int)RG.GetRnd(2)); }
91 UInt32 GetLen2() { return RG.GetRnd(2 + (int)RG.GetRnd(2)); }
    [all...]
  /external/deqp/framework/opengl/
gluTextureUtil.cpp 77 case TextureFormat::RG: format = isInt ? GL_RG_INTEGER : GL_RG; break;
189 case FMT_CASE(RG, FLOAT): return GL_RG32F;
190 case FMT_CASE(RG, SIGNED_INT32): return GL_RG32I;
191 case FMT_CASE(RG, UNSIGNED_INT32): return GL_RG32UI;
192 case FMT_CASE(RG, UNORM_INT16): return GL_RG16;
193 case FMT_CASE(RG, SNORM_INT16): return GL_RG16_SNORM;
194 case FMT_CASE(RG, HALF_FLOAT): return GL_RG16F;
195 case FMT_CASE(RG, SIGNED_INT16): return GL_RG16I;
196 case FMT_CASE(RG, UNSIGNED_INT16): return GL_RG16UI;
197 case FMT_CASE(RG, UNORM_INT8): return GL_RG8
    [all...]
  /external/deqp/external/vulkancts/framework/vulkan/
vkImageUtil.cpp     [all...]
  /external/webp/src/dsp/
upsampling_msa.c 225 RG = tmp0 | tmp1; \
235 RG = tmp0 | tmp1; \
275 const int rg = (r & 0xf8) | (g >> 5); local
279 rgb[1] = rg;
281 rgb[0] = rg;
294 const int rg = (r & 0xf0) | (g >> 4); local
298 argb[1] = rg;
300 argb[0] = rg;
460 v16u8 R, G, B, RG, BA, tmp0, tmp1;
463 CALC_RGBA4444(y, u, v, BA, RG, 16, dst)
    [all...]
  /cts/tools/cts-media/
get_achievable_rates.py 153 for RG in (10, 15, 20, 25, 30, 40, 50):
154 P = 50./RG
165 if N < 2 * RG:
174 if RG == 10:
198 comment += ' RG.VARIANCE:%.1f' % ((p5/p95) ** (1./3))
203 if N >= 2 * RG:
222 if N < 2 * RG or quality >= 4:
  /libcore/luni/src/test/java/libcore/java/util/
EnumSetTest.java 106 AM, CM, BK, CF, ES, FM, MD, NO, LR, RF, DB, SG, BH, HS, MT, DS, RG, CN, UUT, UUQ, UUP, UUH,
  /external/lzma/CPP/7zip/UI/Common/
Bench.cpp 191 CBaseRandomGenerator rg = *_RG_; local
195 buf[i] = (Byte)rg.GetRnd();
196 *_RG_ = rg;
201 CBaseRandomGenerator rg = *_RG_; local
210 UInt32 r = rg.GetRnd();
237 r = rg.GetRnd();
243 r = rg.GetRnd();
261 *_RG_ = rg;
742 CBenchRandomGenerator rg;
755 CBaseRandomGenerator *rg);
    [all...]
  /external/deqp/external/vulkancts/modules/vulkan/pipeline/
vktPipelineMultisampleTestsUtil.cpp 293 case tcu::TextureFormat::RG: orderPart = "rg"; break;
vktPipelineMultisampleImageTests.cpp 669 case tcu::TextureFormat::RG: orderPart = "rg"; break;
758 numComponents == 2 ? "in_color.rg" :
    [all...]
vktPipelineMultisampleInterpolationTests.cpp 73 , m_imageFormat (tcu::TextureFormat(tcu::TextureFormat::RG, tcu::TextureFormat::UNORM_INT8))
    [all...]
  /external/deqp/external/vulkancts/modules/vulkan/sparse_resources/
vktSparseResourcesImageSparseResidency.cpp 673 tcu::TextureFormat(tcu::TextureFormat::RG, tcu::TextureFormat::SIGNED_INT32),
674 tcu::TextureFormat(tcu::TextureFormat::RG, tcu::TextureFormat::SIGNED_INT16),
675 tcu::TextureFormat(tcu::TextureFormat::RG, tcu::TextureFormat::SIGNED_INT8),
vktSparseResourcesShaderIntrinsicsBase.cpp 133 case tcu::TextureFormat::RG:
134 src << "Rg";
vktSparseResourcesTestsUtil.cpp 676 case tcu::TextureFormat::RG: orderPart = "rg"; break;
  /external/deqp/framework/common/
tcuTexture.cpp 541 case TextureFormat::RG:
582 return format.order == TextureFormat::RG;
661 case TextureFormat::RG: return 2;
778 static const TextureSwizzle RG = {{ TextureSwizzle::CHANNEL_0, TextureSwizzle::CHANNEL_1, TextureSwizzle::CHANNEL_ZERO, TextureSwizzle::CHANNEL_ONE }};
795 case TextureFormat::RG: return RG;
803 case TextureFormat::sRG: return RG;
832 static const TextureSwizzle RG = {{ TextureSwizzle::CHANNEL_0, TextureSwizzle::CHANNEL_1, TextureSwizzle::CHANNEL_LAST, TextureSwizzle::CHANNEL_LAST }};
849 case TextureFormat::RG: return RG;
    [all...]
tcuTextureUtil.cpp     [all...]
tcuCompressedTexture.cpp 216 case COMPRESSEDTEXFORMAT_EAC_RG11: return TextureFormat(TextureFormat::RG, TextureFormat::UNORM_INT16);
217 case COMPRESSEDTEXFORMAT_EAC_SIGNED_RG11: return TextureFormat(TextureFormat::RG, TextureFormat::SNORM_INT16);
    [all...]
tcuTexture.hpp 50 RG,
    [all...]
  /external/deqp/modules/gles31/functional/
es31fTextureLevelStateQueryTests.cpp     [all...]
  /external/deqp/external/vulkancts/modules/vulkan/image/
vktImageTestsUtil.cpp     [all...]
  /external/deqp/modules/gles3/functional/
es3fFramebufferBlitTests.cpp 316 case tcu::TextureFormat::RG: return tcu::BVec4(true, true, false, false);
    [all...]
  /external/deqp/modules/glshared/
glsShaderExecUtil.cpp 542 tcu::TextureFormat::RG,
    [all...]
  /external/deqp/external/vulkancts/modules/vulkan/spirv_assembly/
vktSpvAsmGraphicsShaderTestUtil.cpp 145 case 2: co = tcu::TextureFormat::RG; break;
    [all...]
  /external/deqp/external/vulkancts/modules/vulkan/shaderexecutor/
vktShaderExecutor.cpp 528 tcu::TextureFormat::RG,
    [all...]
  /external/deqp/external/vulkancts/modules/vulkan/synchronization/
vktSynchronizationOperation.cpp 422 case tcu::TextureFormat::RG: orderPart = "rg"; break;
    [all...]

Completed in 1587 milliseconds

1 2