Searched refs:count (Results 51 - 75 of 144) sorted by relevance

123456

/sdk/emulator/opengl/host/libs/Translator/GLcommon/
H A DDummyGLfuncs.cpp43 void GLAPIENTRY dummy_glDrawArrays(GLenum mode, GLint first, GLsizei count){} argument
44 void GLAPIENTRY dummy_glDrawElements(GLenum mode, GLsizei count, GLenum type, const GLvoid *indices){} argument
204 void GL_APIENTRY dummy_glUniform1fv(GLint location, GLsizei count, const GLfloat* v){} argument
206 void GL_APIENTRY dummy_glUniform1iv(GLint location, GLsizei count, const GLint* v){} argument
208 void GL_APIENTRY dummy_glUniform2fv(GLint location, GLsizei count, const GLfloat* v){} argument
210 void GL_APIENTRY dummy_glUniform2iv(GLint location, GLsizei count, const GLint* v){} argument
212 void GL_APIENTRY dummy_glUniform3fv(GLint location, GLsizei count, const GLfloat* v){} argument
214 void GL_APIENTRY dummy_glUniform3iv(GLint location, GLsizei count, const GLint* v){} argument
216 void GL_APIENTRY dummy_glUniform4fv(GLint location, GLsizei count, const GLfloat* v){} argument
218 void GL_APIENTRY dummy_glUniform4iv(GLint location, GLsizei count, cons argument
219 dummy_glUniformMatrix2fv(GLint location, GLsizei count, GLboolean transpose, const GLfloat* value) argument
220 dummy_glUniformMatrix3fv(GLint location, GLsizei count, GLboolean transpose, const GLfloat* value) argument
221 dummy_glUniformMatrix4fv(GLint location, GLsizei count, GLboolean transpose, const GLfloat* value) argument
240 dummy_glGetAttachedShaders(GLuint program, GLsizei maxcount, GLsizei* count, GLuint* shaders) argument
254 dummy_glShaderSource(GLuint shader, GLsizei count, const GLchar** string, const GLint* length) argument
[all...]
H A DDummyGLfuncs.h50 void GLAPIENTRY dummy_glDrawArrays(GLenum mode, GLint first, GLsizei count);
51 void GLAPIENTRY dummy_glDrawElements(GLenum mode, GLsizei count, GLenum type, const GLvoid *indices);
211 void GL_APIENTRY dummy_glUniform1fv(GLint location, GLsizei count, const GLfloat* v);
213 void GL_APIENTRY dummy_glUniform1iv(GLint location, GLsizei count, const GLint* v);
215 void GL_APIENTRY dummy_glUniform2fv(GLint location, GLsizei count, const GLfloat* v);
217 void GL_APIENTRY dummy_glUniform2iv(GLint location, GLsizei count, const GLint* v);
219 void GL_APIENTRY dummy_glUniform3fv(GLint location, GLsizei count, const GLfloat* v);
221 void GL_APIENTRY dummy_glUniform3iv(GLint location, GLsizei count, const GLint* v);
223 void GL_APIENTRY dummy_glUniform4fv(GLint location, GLsizei count, const GLfloat* v);
225 void GL_APIENTRY dummy_glUniform4iv(GLint location, GLsizei count, cons
[all...]
/sdk/emulator/opengl/host/libs/Translator/include/GLES2/
H A Dgl2.h514 GL_APICALL void GL_APIENTRY glDrawArrays (GLenum mode, GLint first, GLsizei count);
515 GL_APICALL void GL_APIENTRY glDrawElements (GLenum mode, GLsizei count, GLenum type, const GLvoid* indices);
530 GL_APICALL void GL_APIENTRY glGetAttachedShaders (GLuint program, GLsizei maxcount, GLsizei* count, GLuint* shaders);
572 GL_APICALL void GL_APIENTRY glShaderSource (GLuint shader, GLsizei count, const GLchar** string, const GLint* length);
586 GL_APICALL void GL_APIENTRY glUniform1fv (GLint location, GLsizei count, const GLfloat* v);
588 GL_APICALL void GL_APIENTRY glUniform1iv (GLint location, GLsizei count, const GLint* v);
590 GL_APICALL void GL_APIENTRY glUniform2fv (GLint location, GLsizei count, const GLfloat* v);
592 GL_APICALL void GL_APIENTRY glUniform2iv (GLint location, GLsizei count, const GLint* v);
594 GL_APICALL void GL_APIENTRY glUniform3fv (GLint location, GLsizei count, const GLfloat* v);
596 GL_APICALL void GL_APIENTRY glUniform3iv (GLint location, GLsizei count, cons
[all...]
/sdk/emulator/opengl/host/libs/Translator/include/GLcommon/
H A DGLDispatch.h60 static void (GLAPIENTRY *glDrawArrays) (GLenum mode, GLint first, GLsizei count);
61 static void (GLAPIENTRY *glDrawElements) (GLenum mode, GLsizei count, GLenum type, const GLvoid *indices);
216 static void (GL_APIENTRY *glUniform1fv)(GLint location, GLsizei count, const GLfloat* v);
218 static void (GL_APIENTRY *glUniform1iv)(GLint location, GLsizei count, const GLint* v);
220 static void (GL_APIENTRY *glUniform2fv)(GLint location, GLsizei count, const GLfloat* v);
222 static void (GL_APIENTRY *glUniform2iv)(GLint location, GLsizei count, const GLint* v);
224 static void (GL_APIENTRY *glUniform3fv)(GLint location, GLsizei count, const GLfloat* v);
226 static void (GL_APIENTRY *glUniform3iv)(GLint location, GLsizei count, const GLint* v);
228 static void (GL_APIENTRY *glUniform4fv)(GLint location, GLsizei count, const GLfloat* v);
230 static void (GL_APIENTRY *glUniform4iv)(GLint location, GLsizei count, cons
[all...]
/sdk/ddms/libs/ddmlib/src/com/android/ddmlib/
H A DDeviceMonitor.java353 int count = newList.size();
355 for (int dd = 0 ; dd < count ; dd++) {
594 int count = mSelector.select();
629 if (count == 0) {
885 int count = mDebuggerPorts.size();
886 for (int i = 0 ; i < count ; i++) {
930 int count;
932 count = socket.read(buf);
933 if (count < 0) {
H A DNativeAllocationInfo.java74 * @param allocations the allocation count
106 * Returns the allocation count.
179 int count = mStackCallAddresses.size();
180 for (int i = 0 ; i < count ; i++) {
H A DRawImage.java151 int count = this.data.length;
152 rotated.data = new byte[count];
H A DSyncService.java234 * @param localPath The local destination. If the entries count is > 1 or
346 // get the total count of the bytes to transfer
393 int count = 0;
399 count += getTotalRemoteFileSize(children, fls) + 1;
401 count += e.getSizeValue();
405 return count;
416 int count = 0;
423 count += f.length();
428 return count;
H A DClient.java612 int count;
631 count = mChan.read(mReadBuffer);
632 if (count < 0)
635 if (Log.Config.LOGV) Log.v("ddms", "Read " + count + " bytes from " + this);
H A DEmulatorConsole.java614 int count;
616 count = mSocketChannel.read(buf);
617 if (count < 0) {
619 } else if (count == 0) {
/sdk/ddms/libs/ddmuilib/src/com/android/ddmuilib/log/event/
H A DEventLogPanel.java259 int count;
261 while ((count = fis.read(buffer)) != -1) {
262 fos.write(buffer, 0, count);
770 int count = 0;
784 if (count > 200) {
792 count++;
918 int count;
919 while ((count = fis.read(buffer)) != -1) {
920 logReceiver.parseNewData(buffer, 0, count);
/sdk/eventanalyzer/src/com/android/eventanalyzer/
H A DEventAnalyzer.java195 int count;
196 while ((count = fis.read(buffer)) != -1) {
197 receiver.parseNewData(buffer, 0, count);
243 int count = 0;
247 count++;
253 if (count > 100) {
/sdk/sdkmanager/libs/sdklib/src/com/android/sdklib/internal/build/
H A DSignedJarBuilder.java299 int count;
300 while ((count = input.read(mBuffer)) != -1) {
301 mOutputJar.write(mBuffer, 0, count);
305 mMessageDigest.update(mBuffer, 0, count);
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/export/
H A DKeySelectionPage.java173 int count = 0;
179 selection = count;
181 count++;
H A DKeyCheckPage.java248 int count = expirationYear-thisYear;
251 count, count == 1 ? "year" : "years"));
/sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/eclipse/adt/internal/editors/resources/manager/
H A DConfigMatchTest.java244 final int count = FolderConfiguration.getQualifierCount();
247 assertEquals(qualifierValues.length, count);
251 for (int i = 0 ; i < count ; i++) {
/sdk/emulator/gps/
H A Dgps_qemu.c66 int count; member in struct:__anon2
73 int count = 0; local
100 if (count < MAX_NMEA_TOKENS) {
101 t->tokens[count].p = p;
102 t->tokens[count].end = q;
103 count += 1;
112 t->count = count;
113 return count;
122 if (index < 0 || index >= t->count) {
[all...]
/sdk/screenshot/src/com/android/screenshot/
H A DScreenshot.java131 int count = 0;
135 count++;
141 if (count > 100) {
/sdk/sdk_common/src/com/android/ide/common/resources/
H A DValueResourceParser.java236 int count = value.length();
237 while (right < count) {
251 if (right < count) {
/sdk/eclipse/plugins/com.android.ide.eclipse.gldebugger/src/com/android/ide/eclipse/gltrace/views/
H A DFrameSummaryViewPage.java250 stats.count++;
300 public int count; field in class:FrameSummaryViewPage.PerCallStats
340 cell.setText(Integer.toString(stats.count));
408 return stats1.count - stats2.count;
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/refactoring/
H A DExtractStyleWizard.java270 // Frequency count, from attribute to integer. Attributes that do not
296 Integer count = mFrequencyCount.get(prevAttr);
297 if (count == null) {
298 count = Integer.valueOf(2);
300 count = Integer.valueOf(count.intValue() + 1);
302 mFrequencyCount.put(prevAttr, count);
/sdk/emulator/opengl/host/libs/Translator/GLES_V2/
H A DGLESv2Imp.cpp557 GL_APICALL void GL_APIENTRY glDrawArrays(GLenum mode, GLint first, GLsizei count){ argument
559 SET_ERROR_IF(count < 0,GL_INVALID_VALUE)
565 ctx->setupArraysPointers(tmpArrs,first,count,0,NULL,true);
567 ctx->validateAtt0PreDraw(count);
576 ctx->dispatcher().glDrawArrays(mode,first,count);
586 GL_APICALL void GL_APIENTRY glDrawElements(GLenum mode, GLsizei count, GLenum type, const GLvoid* elementsIndices){ argument
588 SET_ERROR_IF(count < 0,GL_INVALID_VALUE)
600 ctx->setupArraysPointers(tmpArrs,0,count,type,indices,false);
602 int maxIndex = ctx->findMaxIndex(count, type, indices);
611 ctx->dispatcher().glDrawElements(mode,count,typ
805 glGetAttachedShaders(GLuint program, GLsizei maxcount, GLsizei* count, GLuint* shaders) argument
1687 glShaderSource(GLuint shader, GLsizei count, const GLchar** string, const GLint* length) argument
1822 glUniform1fv(GLint location, GLsizei count, const GLfloat* v) argument
1831 glUniform1iv(GLint location, GLsizei count, const GLint* v) argument
1839 glUniform2fv(GLint location, GLsizei count, const GLfloat* v) argument
1847 glUniform2iv(GLint location, GLsizei count, const GLint* v) argument
1855 glUniform3fv(GLint location, GLsizei count, const GLfloat* v) argument
1864 glUniform3iv(GLint location, GLsizei count, const GLint* v) argument
1874 glUniform4fv(GLint location, GLsizei count, const GLfloat* v) argument
1884 glUniform4iv(GLint location, GLsizei count, const GLint* v) argument
1889 glUniformMatrix2fv(GLint location, GLsizei count, GLboolean transpose, const GLfloat* value) argument
1895 glUniformMatrix3fv(GLint location, GLsizei count, GLboolean transpose, const GLfloat* value) argument
1901 glUniformMatrix4fv(GLint location, GLsizei count, GLboolean transpose, const GLfloat* value) argument
[all...]
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/ui/tree/
H A DNewItemSelectionDialog.java227 int count = i == null ? 1 : i.intValue() + 1;
228 counts.put(name, count);
229 max = Math.max(max, count);
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/sdk/
H A DAndroidJarLoader.java397 int count = zis.read(data, offset, data_size - offset);
398 if (count < 0) { // read data is done
401 offset += count;
/sdk/emulator/opengl/host/tools/emugen/
H A DEntryPoint.cpp289 int count = 0; local
294 if (count == 0) {
300 count++;

Completed in 501 milliseconds

123456