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

1 2

  /external/mesa3d/src/gallium/drivers/ilo/core/
ilo_builder_decode.c 83 const unsigned state_size = sizeof(uint32_t); local
84 const unsigned count = item->size / state_size;
120 offset += state_size * 4;
129 const unsigned state_size = sizeof(uint32_t) * 4; local
130 const unsigned count = item->size / state_size;
149 offset += state_size;
158 const unsigned state_size = sizeof(uint32_t) * 16; local
159 const unsigned count = item->size / state_size;
210 offset += state_size;
219 const unsigned state_size = sizeof(uint32_t) * 8 local
265 const unsigned state_size = sizeof(uint32_t) * 2; local
292 const unsigned state_size = sizeof(uint32_t) * 2; local
370 const unsigned state_size = sizeof(uint32_t) * 2; local
393 const unsigned state_size = sizeof(uint32_t) * 4; local
420 const unsigned state_size = sizeof(uint32_t) * 8; local
569 const unsigned state_size = sizeof(uint32_t) * 1; local
    [all...]
  /external/libcxx/test/std/numerics/rand/rand.eng/rand.eng.mers/
values.pass.cpp 23 // static constexpr size_t state_size = n;
51 static_assert((E::state_size == 624), "");
72 where(E::state_size);
92 static_assert((E::state_size == 312), "");
113 where(E::state_size);
  /prebuilts/ndk/r11/sources/cxx-stl/llvm-libc++/libcxx/test/numerics/rand/rand.eng/rand.eng.mers/
values.pass.cpp 23 // static constexpr size_t state_size = n;
51 static_assert((E::state_size == 624), "");
67 where(E::state_size);
87 static_assert((E::state_size == 312), "");
103 where(E::state_size);
  /prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++/test/std/numerics/rand/rand.eng/rand.eng.mers/
values.pass.cpp 23 // static constexpr size_t state_size = n;
51 static_assert((E::state_size == 624), "");
67 where(E::state_size);
87 static_assert((E::state_size == 312), "");
103 where(E::state_size);
  /external/mesa3d/src/mesa/drivers/dri/radeon/
radeon_tcl.c 289 GLuint state_size; local
314 state_size = radeonCountStateEmitSize( &rmesa->radeon );
317 state_size += rmesa->hw.tcl.check( &rmesa->radeon.glCtx, &rmesa->hw.tcl );
344 return space_required + state_size;
radeon_swtcl.c 236 const int state_size = radeonCountStateEmitSize( &rmesa->radeon ); local
242 state_size +
247 rmesa->radeon.swtcl.emit_prediction = state_size;
  /external/mesa3d/src/mesa/drivers/dri/i965/
genX_blorp_exec.c 107 unsigned state_size, unsigned state_alignment,
120 state_size, state_alignment,
  /external/mesa3d/src/mesa/drivers/dri/r200/
r200_tcl.c 296 GLuint state_size; local
311 state_size = radeonCountStateEmitSize( &rmesa->radeon );
314 state_size += rmesa->hw.vtx.check(&rmesa->radeon.glCtx, &rmesa->hw.vtx);
341 if (rcommonEnsureCmdBufSpace(&rmesa->radeon, space_required + state_size, __func__))
344 return space_required + state_size;
r200_state_init.c 664 int state_size = TEX_STATE_SIZE_NEWDRM; local
667 ALLOC_STATE( tex[0], tex_pair_mm, state_size, "TEX/tex-0", 0 );
668 ALLOC_STATE( tex[1], tex_pair_mm, state_size, "TEX/tex-1", 1 );
672 ALLOC_STATE( tex[0], tex_mm, state_size, "TEX/tex-0", 0 );
673 ALLOC_STATE( tex[1], tex_mm, state_size, "TEX/tex-1", 1 );
676 ALLOC_STATE( tex[2], tex_mm, state_size, "TEX/tex-2", 2 );
677 ALLOC_STATE( tex[3], tex_mm, state_size, "TEX/tex-3", 3 );
678 ALLOC_STATE( tex[4], tex_mm, state_size, "TEX/tex-4", 4 );
679 ALLOC_STATE( tex[5], tex_mm, state_size, "TEX/tex-5", 5 );
    [all...]
r200_swtcl.c 207 const int state_size = radeonCountStateEmitSize(&rmesa->radeon); local
209 state_size +
214 rmesa->radeon.swtcl.emit_prediction = state_size;
  /external/mesa3d/src/intel/vulkan/
anv_allocator.c 590 size_t state_size)
593 assert(state_size >= 64 && util_is_power_of_two(state_size));
595 pool->state_size = state_size;
617 block.u64 = __sync_fetch_and_add(&pool->block.u64, pool->state_size);
623 new.next = offset + pool->state_size;
genX_blorp_exec.c 82 unsigned state_size, unsigned state_alignment,
anv_private.h 385 size_t state_size; member in struct:anv_fixed_size_state_pool
461 size_t state_size, size_t alignment);
    [all...]
  /external/v8/src/compiler/
memory-optimizer.cc 171 int32_t const state_size = state->size() + object_size; local
175 if (OpParameter<int32_t>(group->size()) < state_size) {
177 common()->Int32Constant(state_size));
193 state = AllocationState::Open(group, state_size, top, zone());
  /external/mesa3d/src/mesa/main/
ffvertex_prog.c 1521 struct ureg state_size = register_param2(p, STATE_INTERNAL, STATE_POINT_SIZE_CLAMPED); local
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/x86_64-linux/include/c++/4.8/tr1/
random.h 536 * @var state_size The degree of recursion.
560 static const int state_size = __n; member in class:mersenne_twister
619 { return std::equal(__lhs._M_x, __lhs._M_x + state_size, __rhs._M_x); }
684 _UIntType _M_x[state_size];
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/x86_64-linux/include/c++/4.8/tr1/
random.h 536 * @var state_size The degree of recursion.
560 static const int state_size = __n; member in class:mersenne_twister
619 { return std::equal(__lhs._M_x, __lhs._M_x + state_size, __rhs._M_x); }
684 _UIntType _M_x[state_size];
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/tr1/
random.h 536 * @var state_size The degree of recursion.
560 static const int state_size = __n; member in class:mersenne_twister
619 { return std::equal(__lhs._M_x, __lhs._M_x + state_size, __rhs._M_x); }
684 _UIntType _M_x[state_size];
    [all...]
  /prebuilts/ndk/r10/sources/cxx-stl/gnu-libstdc++/4.9/include/tr1/
random.h 536 * @var state_size The degree of recursion.
560 static const int state_size = __n; member in class:mersenne_twister
619 { return std::equal(__lhs._M_x, __lhs._M_x + state_size, __rhs._M_x); }
684 _UIntType _M_x[state_size];
    [all...]
  /prebuilts/ndk/r11/sources/cxx-stl/gnu-libstdc++/4.9/include/tr1/
random.h 536 * @var state_size The degree of recursion.
560 static const int state_size = __n; member in class:mersenne_twister
619 { return std::equal(__lhs._M_x, __lhs._M_x + state_size, __rhs._M_x); }
684 _UIntType _M_x[state_size];
    [all...]
  /prebuilts/ndk/r13/sources/cxx-stl/gnu-libstdc++/4.9/include/tr1/
random.h 536 * @var state_size The degree of recursion.
560 static const int state_size = __n; member in class:mersenne_twister
619 { return std::equal(__lhs._M_x, __lhs._M_x + state_size, __rhs._M_x); }
684 _UIntType _M_x[state_size];
    [all...]
  /external/google-breakpad/src/client/mac/handler/
minidump_generator.cc 898 size_t state_size = cpu_type_ == CPU_TYPE_I386 ? local
901 std::min(static_cast<size_t>(*count), state_size);
    [all...]
  /external/mesa3d/src/intel/blorp/
blorp_genX_exec.h 66 unsigned state_size, unsigned state_alignment,
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/x86_64-linux/include/c++/4.8/bits/
random.h 484 static constexpr size_t state_size = __n;
561 { return (std::equal(__lhs._M_x, __lhs._M_x + state_size, __rhs._M_x)
619 _UIntType _M_x[state_size];
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/x86_64-linux/include/c++/4.8/bits/
random.h 484 static constexpr size_t state_size = __n;
561 { return (std::equal(__lhs._M_x, __lhs._M_x + state_size, __rhs._M_x)
619 _UIntType _M_x[state_size];
    [all...]

Completed in 1339 milliseconds

1 2