HomeSort by relevance Sort by last modified time
    Searched refs:units (Results 51 - 75 of 214) sorted by null

1 23 4 5 6 7 8 9

  /frameworks/native/opengl/tools/glgen/specs/gles11/
GLES10.spec 78 void glPolygonOffset ( GLfloat factor, GLfloat units )
79 void glPolygonOffsetx ( GLfixed factor, GLfixed units )
GLES11Ext.spec 44 void glPolygonOffsetxOES ( GLfixed factor, GLfixed units )
  /packages/inputmethods/OpenWnn/src/jp/co/omronsoft/openwnn/
KeyboardView.java     [all...]
  /frameworks/native/opengl/libagl/
matrix.cpp 1106 void glPolygonOffsetx(GLfixed factor, GLfixed units)
1110 c->polygonOffset.units = units;
1113 void glPolygonOffset(GLfloat factor, GLfloat units)
1117 c->polygonOffset.units = gglFloatToFixed(units);
primitives.cpp 665 const int32_t units = (c->polygonOffset.units << 16); local
672 + uint32_t((maxDepthSlope*factor)>>16) + units;
677 itz[0] += units;
    [all...]
  /sdk/emulator/opengl/tests/gles_android_wrapper/
gles.cpp 206 void glPolygonOffset(GLfloat factor, GLfloat units)
208 getDispatch()->glPolygonOffset(factor, units);
641 void glPolygonOffsetx(GLfixed factor, GLfixed units)
643 getDispatch()->glPolygonOffsetx(factor, units);
996 void glPolygonOffsetxOES(GLfixed factor, GLfixed units)
998 getDispatch()->glPolygonOffsetxOES(factor, units);
    [all...]
  /external/jmonkeyengine/engine/src/core-plugins/com/jme3/material/plugins/
J3MLoader.java 324 float units = Float.parseFloat(split[2]); local
325 renderState.setPolyOffset(factor, units);
  /external/oprofile/utils/
opcontrol 184 --buffer-size=num kernel buffer size in sample units.
190 --buffer-watershed kernel buffer watershed in sample units (2.6
193 --cpu-buffer-size=num per-cpu buffer size in units (2.6 kernel)
195 --note-table-size kernel notes buffer size in notes units (2.4
    [all...]
  /frameworks/base/opengl/java/android/opengl/
GLES10.java     [all...]
GLES11Ext.java 617 // C function void glPolygonOffsetxOES ( GLfixed factor, GLfixed units )
621 int units
    [all...]
  /frameworks/base/opengl/java/javax/microedition/khronos/opengles/
GL10.java 778 float units
783 int units
  /packages/apps/Gallery2/tests/src/com/android/gallery3d/ui/
GLStub.java 546 float units
551 int units
  /external/replicaisland/src/com/replica/replicaisland/
GLErrorLogger.java 539 public void glPolygonOffset(float factor, float units) {
540 ((GL10)mGL).glPolygonOffset(factor, units);
544 public void glPolygonOffsetx(int factor, int units) {
545 ((GL10)mGL).glPolygonOffsetx(factor, units);
  /external/libpng/
pngget.c 638 png_charp *units, png_charpp *params)
644 nparams != NULL && units != NULL && params != NULL)
651 *units = info_ptr->pcal_units;
pngset.c 292 png_charp units, png_charpp params)
319 length = png_strlen(units) + 1;
320 png_debug1(3, "allocating units for info (%lu bytes)",
325 png_warning(png_ptr, "Insufficient memory for pCAL units.");
328 png_memcpy(info_ptr->pcal_units, units, (png_size_t)length);
    [all...]
pngtest.c 629 * 3: vpAg units
1027 png_charp purpose, units; local
1033 &nparams, &units, &params))
1036 nparams, units, params);
    [all...]
  /external/qemu/distrib/libpng-1.2.19/
pngget.c 606 png_charp *units, png_charpp *params)
610 nparams != NULL && units != NULL && params != NULL)
618 *units = info_ptr->pcal_units;
pngset.c 387 png_charp units, png_charpp params)
412 length = png_strlen(units) + 1;
413 png_debug1(3, "allocating units for info (%lu bytes)\n", length);
417 png_warning(png_ptr, "Insufficient memory for pCAL units.");
420 png_memcpy(info_ptr->pcal_units, units, (png_size_t)length);
    [all...]
  /external/quake/quake/src/QW/client/
sbar.c 480 int minutes, seconds, tens, units; local
488 units = seconds - 10*tens;
489 sprintf (str,"Time :%3i:%i%i", minutes, tens, units);
  /external/webkit/Source/WebCore/dom/
Element.cpp 299 void Element::scrollByUnits(int units, ScrollGranularity granularity)
305 if (units < 0) {
307 units = -units;
309 toRenderBox(rend)->layer()->scroll(direction, granularity, units);
    [all...]
Element.h 375 void scrollByUnits(int units, ScrollGranularity);
  /frameworks/base/core/java/android/inputmethodservice/
KeyboardView.java     [all...]
  /external/chromium/base/
string_util_unittest.cc 516 DataUnits units; member in struct:base::__anon2762
523 // Since we switch units once we cross the 1000 mark, this keeps
553 FormatBytes(cases[i].bytes, cases[i].units, false));
555 FormatBytes(cases[i].bytes, cases[i].units, true));
    [all...]
  /external/icu4c/common/
unistr.cpp 180 // get the code units for c
181 UChar units[UTF_MAX_CHAR_LENGTH]; local
182 UTF_APPEND_CHAR_UNSAFE(units, i, c);
192 array[i++]=units[unitIdx++];
636 // little-endian: compare UChar units
    [all...]
  /external/webkit/Source/ThirdParty/ANGLE/src/libGLESv2/
Context.h 273 void setPolygonOffsetParams(GLfloat factor, GLfloat units);

Completed in 866 milliseconds

1 23 4 5 6 7 8 9