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

1 2 3 4 5

  /external/qemu/android/utils/
duff.h 22 #define DUFF1(_count,_stmnt) \
24 int __n = (_count); \
30 #define DUFF2(_count,_stmnt) \
32 int __count = (_count); \
41 #define DUFF4(_count,_stmnt) \
43 int __count = (_count); \
54 #define DUFF8(_count,_stmnt) \
56 int __count = (_count); \
  /frameworks/native/opengl/tools/glgen/stubs/gles11/
glTransformFeedbackVaryings.cpp 9 jint _count = 0, _i; local
20 _count = _env->GetArrayLength(varyings_ref);
21 _varyings = (const char**)calloc(_count, sizeof(const char*));
22 for (_i = 0; _i < _count; _i++) {
33 glTransformFeedbackVaryings(program, _count, _varyings, bufferMode);
36 for (_i = _count - 1; _i >= 0; _i--) {
glGetUniformIndices.cpp 9 jint _count = 0; local
21 _count = _env->GetArrayLength(uniformNames_ref);
22 _names = (const char**)calloc(_count, sizeof(const char*));
23 for (_i = 0; _i < _count; _i++) {
46 if (_env->GetArrayLength(uniformIndices_ref) - uniformIndicesOffset < _count) {
56 glGetUniformIndices(program, _count, _names, _indices);
63 for (_i = _count - 1; _i >= 0; _i--) {
85 jint _count = 0; local
107 _count = _env->GetArrayLength(uniformNames_ref);
108 _names = (const char**)calloc(_count, sizeof(const char*))
    [all...]
  /external/chromium_org/third_party/bintrees/bintrees/
qavltree.pyx 18 cdef int _count
22 self._count = 0
31 return self._count
41 self._count = 0
62 self._count += res
70 self._count -= 1
qbintree.pyx 18 cdef int _count
22 self._count = 0
31 return self._count
41 self._count = 0
61 self._count += res
69 self._count -= 1
qrbtree.pyx 18 cdef int _count
22 self._count = 0
31 return self._count
41 self._count = 0
62 self._count += res
70 self._count -= 1
bintree.py 64 self._count = 0
76 self._count = 0
87 return self._count
91 self._count += 1
146 self._count -= 1
  /frameworks/base/core/java/android/provider/
BaseColumns.java 31 public static final String _COUNT = "_count";
  /external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/d3d1x/d3d1xshader/
gen-header.sh 10 echo $'\t'"SM4_${n}_COUNT"|tr '[a-z]' '[A-Z]'
  /external/mesa3d/src/gallium/state_trackers/d3d1x/d3d1xshader/
gen-header.sh 10 echo $'\t'"SM4_${n}_COUNT"|tr '[a-z]' '[A-Z]'
  /dalvik/vm/mterp/mips/
header.S 79 #define FETCH_ADVANCE_INST(_count) lhu rINST, ((_count)*2)(rPC); \
80 addu rPC, rPC, ((_count) * 2)
82 #define PREFETCH_ADVANCE_INST(_dreg, _sreg, _count) \
83 lhu _dreg, ((_count)*2)(_sreg) ; \
84 addu _sreg, _sreg, (_count)*2
89 #define FETCH(rd, _count) lhu rd, ((_count) * 2)(rPC)
90 #define FETCH_S(rd, _count) lh rd, ((_count) * 2)(rPC
    [all...]
  /dalvik/vm/mterp/armv5te/
header.S 110 * to point to the next instruction. "_count" is in 16-bit code units.
120 #define FETCH_ADVANCE_INST(_count) ldrh rINST, [rPC, #((_count)*2)]!
126 #define PREFETCH_ADVANCE_INST(_dreg, _sreg, _count) \
127 ldrh _dreg, [_sreg, #((_count)*2)]!
143 * "_count" value is in 16-bit code units. Does not advance rPC.
147 #define FETCH(_reg, _count) ldrh _reg, [rPC, #((_count)*2)]
148 #define FETCH_S(_reg, _count) ldrsh _reg, [rPC, #((_count)*2)
    [all...]
  /external/chromium_org/third_party/freetype/include/freetype/internal/
ftgloadr.h 124 #define FT_GLYPHLOADER_CHECK_P( _loader, _count ) \
125 ( (_count) == 0 || ((_loader)->base.outline.n_points + \
127 (unsigned long)(_count)) <= (_loader)->max_points )
129 #define FT_GLYPHLOADER_CHECK_C( _loader, _count ) \
130 ( (_count) == 0 || ((_loader)->base.outline.n_contours + \
132 (unsigned long)(_count)) <= (_loader)->max_contours )
  /external/freetype/include/freetype/internal/
ftgloadr.h 124 #define FT_GLYPHLOADER_CHECK_P( _loader, _count ) \
125 ( (_count) == 0 || ((_loader)->base.outline.n_points + \
127 (unsigned long)(_count)) <= (_loader)->max_points )
129 #define FT_GLYPHLOADER_CHECK_C( _loader, _count ) \
130 ( (_count) == 0 || ((_loader)->base.outline.n_contours + \
132 (unsigned long)(_count)) <= (_loader)->max_contours )
  /dalvik/vm/compiler/template/mips/
header.S 157 #define FETCH_ADVANCE_INST(_count) lhu rINST, (_count*2)(rPC); \
158 addu rPC, rPC, (_count * 2)
163 #define FETCH(rd, _count) lhu rd, (_count * 2)(rPC)
164 #define FETCH_S(rd, _count) lh rd, (_count * 2)(rPC)
168 #define FETCH_B(rd, _count) lbu rd, (_count * 2)(rPC)
169 #define FETCH_C(rd, _count) lbu rd, (_count * 2 + 1)(rPC
    [all...]
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/
progress.hpp 92 _count = _next_tic_count = _tic = 0;
107 if ( (_count += increment) >= _next_tic_count ) { display_tic(); }
108 return _count;
112 unsigned long count() const { return _count; }
121 unsigned long _count, _expected_count, _next_tic_count; member in class:boost::progress_display
130 (static_cast<double>(_count)/_expected_count)*50.0 );
134 if ( _count == _expected_count ) {
  /dalvik/vm/mterp/x86/
header.S 188 * Fetch the opcode byte at _count words offset from rPC and zero-extend
191 .macro FETCH_INST_OPCODE _count _reg
192 movzbl \_count*2(rPC),\_reg
197 * rPC, and _count is in words
199 .macro FETCH_INST_WORD _count
200 movzwl \_count*2(rPC),rINST
214 .macro ADVANCE_PC _count
215 leal 2*\_count(rPC),rPC
  /external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/os/
os_memory_debug.h 73 #define os_calloc( _count, _size ) \
74 debug_calloc(__FILE__, __LINE__, __FUNCTION__, _count, _size )
os_memory_stdc.h 44 #define os_calloc(_count, _size ) calloc(_count, _size )
  /external/mesa3d/src/gallium/auxiliary/os/
os_memory_debug.h 73 #define os_calloc( _count, _size ) \
74 debug_calloc(__FILE__, __LINE__, __FUNCTION__, _count, _size )
os_memory_stdc.h 44 #define os_calloc(_count, _size ) calloc(_count, _size )
  /external/webrtc/src/system_wrappers/source/
event_posix.cc 48 _count(0),
263 _count=0;
267 unsigned long long time = _time * ++_count;
286 if(_periodic || _count==1)
321 _count=0;
  /external/jmdns/src/javax/jmdns/impl/tasks/resolver/
DNSResolverTask.java 25 protected int _count = 0; field in class:DNSResolverTask
40 return super.toString() + " count: " + _count;
64 if (_count++ < 3) {
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_thread.py 108 # Test the _count() function.
109 orig = thread._count()
120 self.assertEqual(thread._count(), orig + 1)
131 self.assertEqual(thread._count(), orig)
144 c = thread._count()
152 while thread._count() > c:
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_thread.py 108 # Test the _count() function.
109 orig = thread._count()
120 self.assertEqual(thread._count(), orig + 1)
131 self.assertEqual(thread._count(), orig)
144 c = thread._count()
152 while thread._count() > c:

Completed in 353 milliseconds

1 2 3 4 5