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

1 2 3

  /ndk/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);
  /external/chromium_org/third_party/lzma_sdk/
LzmaLib.h 19 for compression: (dictSize * 11.5 + 6 MB) + state_size
20 for decompression: dictSize + state_size
21 state_size = (4 + (1.5 << (lc + lp))) KB
22 by default (lc=3, lp=0), state_size = 16 KB.
  /external/chromium_org/third_party/ots/third_party/lzma_sdk/
LzmaLib.h 20 for compression: (dictSize * 11.5 + 6 MB) + state_size
21 for decompression: dictSize + state_size
22 state_size = (4 + (1.5 << (lc + lp))) KB
23 by default (lc=3, lp=0), state_size = 16 KB.
  /external/lzma/C/
LzmaLib.h 19 for compression: (dictSize * 11.5 + 6 MB) + state_size
20 for decompression: dictSize + state_size
21 state_size = (4 + (1.5 << (lc + lp))) KB
22 by default (lc=3, lp=0), state_size = 16 KB.
  /packages/providers/UserDictionaryProvider/src/com/android/providers/userdictionary/
DictionaryBackupAgent.java 54 private static final int STATE_SIZE = 1;
108 long[] stateChecksums = new long[STATE_SIZE];
112 for (int i = 0; i < STATE_SIZE; i++) {
127 for (int i = 0; i < STATE_SIZE; i++) {
  /external/chromium_org/third_party/openssl/openssl/crypto/rand/
md_rand.c 138 #define STATE_SIZE 1023
140 static unsigned char state[STATE_SIZE+MD_DIGEST_LENGTH];
240 /* state_index <= state_num <= STATE_SIZE */
242 if (state_index >= STATE_SIZE)
244 state_index%=STATE_SIZE;
245 state_num=STATE_SIZE;
247 else if (state_num < STATE_SIZE)
252 /* state_index <= state_num <= STATE_SIZE */
254 /* state[st_idx], ..., state[(st_idx + num - 1) % STATE_SIZE]
270 k=(st_idx+j)-STATE_SIZE;
    [all...]
  /external/openssl/crypto/rand/
md_rand.c 138 #define STATE_SIZE 1023
140 static unsigned char state[STATE_SIZE+MD_DIGEST_LENGTH];
240 /* state_index <= state_num <= STATE_SIZE */
242 if (state_index >= STATE_SIZE)
244 state_index%=STATE_SIZE;
245 state_num=STATE_SIZE;
247 else if (state_num < STATE_SIZE)
252 /* state_index <= state_num <= STATE_SIZE */
254 /* state[st_idx], ..., state[(st_idx + num - 1) % STATE_SIZE]
270 k=(st_idx+j)-STATE_SIZE;
    [all...]
  /external/chromium_org/chrome/browser/ui/views/
avatar_menu_bubble_view.cc 322 gfx::Size state_size = sync_state_label_->GetPreferredSize(); local
323 state_size.set_width(std::min(state_size.width(), max_label_width));
329 std::max(state_size.height(), edit_size.height());
334 sync_state_label_->SetBounds(label_x, bottom - state_size.height(),
335 state_size.width(), state_size.height());
  /external/chromium_org/third_party/mesa/src/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/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/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/r200/
r200_state_init.c 662 int state_size = TEX_STATE_SIZE_NEWDRM; local
665 ALLOC_STATE( tex[0], tex_pair_mm, state_size, "TEX/tex-0", 0 );
666 ALLOC_STATE( tex[1], tex_pair_mm, state_size, "TEX/tex-1", 1 );
670 ALLOC_STATE( tex[0], tex_mm, state_size, "TEX/tex-0", 0 );
671 ALLOC_STATE( tex[1], tex_mm, state_size, "TEX/tex-1", 1 );
674 ALLOC_STATE( tex[2], tex_mm, state_size, "TEX/tex-2", 2 );
675 ALLOC_STATE( tex[3], tex_mm, state_size, "TEX/tex-3", 3 );
676 ALLOC_STATE( tex[4], tex_mm, state_size, "TEX/tex-4", 4 );
677 ALLOC_STATE( tex[5], tex_mm, state_size, "TEX/tex-5", 5 );
    [all...]
r200_tcl.c 297 GLuint state_size; local
312 state_size = radeonCountStateEmitSize( &rmesa->radeon );
315 state_size += rmesa->hw.vtx.check(rmesa->radeon.glCtx, &rmesa->hw.vtx);
342 if (rcommonEnsureCmdBufSpace(&rmesa->radeon, space_required + state_size, __FUNCTION__))
345 return space_required + state_size;
r200_swtcl.c 209 const int state_size = radeonCountStateEmitSize(&rmesa->radeon); local
211 state_size +
216 rmesa->radeon.swtcl.emit_prediction = state_size;
  /external/mesa3d/src/mesa/drivers/dri/r200/
r200_state_init.c 662 int state_size = TEX_STATE_SIZE_NEWDRM; local
665 ALLOC_STATE( tex[0], tex_pair_mm, state_size, "TEX/tex-0", 0 );
666 ALLOC_STATE( tex[1], tex_pair_mm, state_size, "TEX/tex-1", 1 );
670 ALLOC_STATE( tex[0], tex_mm, state_size, "TEX/tex-0", 0 );
671 ALLOC_STATE( tex[1], tex_mm, state_size, "TEX/tex-1", 1 );
674 ALLOC_STATE( tex[2], tex_mm, state_size, "TEX/tex-2", 2 );
675 ALLOC_STATE( tex[3], tex_mm, state_size, "TEX/tex-3", 3 );
676 ALLOC_STATE( tex[4], tex_mm, state_size, "TEX/tex-4", 4 );
677 ALLOC_STATE( tex[5], tex_mm, state_size, "TEX/tex-5", 5 );
    [all...]
r200_tcl.c 297 GLuint state_size; local
312 state_size = radeonCountStateEmitSize( &rmesa->radeon );
315 state_size += rmesa->hw.vtx.check(rmesa->radeon.glCtx, &rmesa->hw.vtx);
342 if (rcommonEnsureCmdBufSpace(&rmesa->radeon, space_required + state_size, __FUNCTION__))
345 return space_required + state_size;
r200_swtcl.c 209 const int state_size = radeonCountStateEmitSize(&rmesa->radeon); local
211 state_size +
216 rmesa->radeon.swtcl.emit_prediction = state_size;
  /external/lzma/
lzma.txt 330 state_size = (4 + (1.5 << (lc + lp))) KB
331 by default (lc=3, lp=0), state_size = 16 KB.
358 - LZMA Internal Structures: state_size (16 KB for default settings)
412 - LZMA Internal Structures: state_size (16 KB for default settings)
452 - (dictSize * 11.5 + 6 MB) + state_size
  /frameworks/base/packages/SettingsProvider/src/com/android/providers/settings/
SettingsBackupAgent.java 84 private static final int STATE_SIZE = 6; // The current number of state items
91 STATE_SIZE // version 3 added STATE_GLOBAL
558 long[] stateChecksums = new long[STATE_SIZE];
582 for (int i = 0; i < STATE_SIZE; i++) {
    [all...]
  /external/chromium_org/third_party/mesa/src/src/mesa/main/
ffvertex_prog.c 1530 struct ureg state_size = register_param2(p, STATE_INTERNAL, STATE_POINT_SIZE_CLAMPED); local
    [all...]
  /external/mesa3d/src/mesa/main/
ffvertex_prog.c 1530 struct ureg state_size = register_param2(p, STATE_INTERNAL, STATE_POINT_SIZE_CLAMPED); local
    [all...]
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/tr1_impl/
random.tcc 187 for (int __i = 1; __i < state_size; ++__i)
196 _M_p = state_size;
208 for (int __i = 0; __i < state_size; ++__i)
211 _M_p = state_size;
225 if (_M_p >= state_size)
    [all...]
  /prebuilts/ndk/5/sources/cxx-stl/gnu-libstdc++/include/tr1_impl/
random.tcc 187 for (int __i = 1; __i < state_size; ++__i)
196 _M_p = state_size;
208 for (int __i = 0; __i < state_size; ++__i)
211 _M_p = state_size;
225 if (_M_p >= state_size)
    [all...]
  /prebuilts/ndk/6/sources/cxx-stl/gnu-libstdc++/include/tr1_impl/
random.tcc 187 for (int __i = 1; __i < state_size; ++__i)
196 _M_p = state_size;
208 for (int __i = 0; __i < state_size; ++__i)
211 _M_p = state_size;
225 if (_M_p >= state_size)
    [all...]

Completed in 2098 milliseconds

1 2 3