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

1 2

  /external/sonivox/jet_tools/JetCreator/
JetDebug.py 40 print("transpose: %d" % queueSeg.transpose)
53 print("transpose: %d" % segment.transpose)
JetFile.py 79 SEGMENT_TRANSPOSE = 'transpose'
94 def __init__ (self, segname, filename, start=None, end=None, length=None, output=None, quantize=None, jetevents=[], dlsfile=None, dump_file=None, transpose=0, repeat=0, mute_flags=0):
106 self.transpose = transpose
314 transpose = repeat = mute_flags = 0
336 transpose = config.get(segment_name, SEGMENT_TRANSPOSE)
360 segments.append(JetSegment(segname, filename, start, end, length, output, quantize, jetevents, dlsfile, dump_file, int(transpose), int(repeat), int(mute_flags)))
615 def AddSegment(self, segname, filename, start, end, length, output, quantize, jetevents, dlsfile, dump_file, transpose, repeat, mute_flags):
621 self.segments.append(JetSegment(segname, filename, start, end, length, output, quantize, jetevents, dlsfile, dump_file, transpose, repeat, mute_flags))
623 def UpdateSegment(self, orgsegname, segname, filename, start, end, length, output, quantize, jetevents, dlsfile, dump_file, transpose, repeat, mute_flags):
    [all...]
JetPreview.py 117 self.segment.transpose,
135 self.queueSegs.append(QueueSeg(self.segment.segname, userID, seg_num, dls_num, self.segment.repeat, self.segment.transpose, self.segment.mute_flags))
JetUtils.py 101 jet.QueueSegment(queueSeg.userID, queueSeg.seg_num, queueSeg.dls_num, queueSeg.repeat, queueSeg.transpose, queueSeg.mute_flags)
105 def __init__ (self, name, userID, seg_num, dls_num=-1, repeat=0, transpose=0, mute_flags=0, status=''):
111 self.transpose = transpose
  /cts/tests/tests/media/src/android/media/cts/
JetPlayerTest.java 250 int transpose = 0; local
252 assertTrue(mJetPlayer.queueJetSegmentMuteArray(segmentNum, libNum, repeatCount, transpose,
261 assertTrue(mJetPlayer.queueJetSegmentMuteArray(segmentNum, libNum, repeatCount, transpose,
275 int transpose = 0; local
277 mJetPlayer.queueJetSegment(segmentNum, libNum, repeatCount, transpose, muteFlags, userID);
281 transpose = -1;
282 mJetPlayer.queueJetSegment(segmentNum, libNum, repeatCount, transpose, muteFlags, userID);
285 transpose = 0;
286 mJetPlayer.queueJetSegment(segmentNum, libNum, repeatCount, transpose, muteFlags, userID);
  /frameworks/base/media/java/android/media/
JetPlayer.java 263 * @param transpose the amount of pitch transposition. Set to 0 for normal playback.
277 int transpose, int muteFlags, byte userID) {
279 transpose, muteFlags, userID);
291 * @param transpose the amount of pitch transposition. Set to 0 for normal playback.
306 int transpose, boolean[] muteArray, byte userID) {
311 transpose, muteArray, userID);
543 int repeatCount, int transpose, int muteFlags, byte userID);
545 int repeatCount, int transpose, boolean[] muteArray, byte userID);
  /frameworks/base/include/media/
JetPlayer.h 55 int queueSegment(int segmentNum, int libNum, int repeatCount, int transpose,
  /external/webkit/WebCore/html/canvas/
WebGLRenderingContext.h 250 void uniformMatrix2fv(const WebGLUniformLocation* location, bool transpose, WebGLFloatArray* value, ExceptionCode&);
251 void uniformMatrix2fv(const WebGLUniformLocation* location, bool transpose, float* value, int size, ExceptionCode&);
252 void uniformMatrix3fv(const WebGLUniformLocation* location, bool transpose, WebGLFloatArray* value, ExceptionCode&);
253 void uniformMatrix3fv(const WebGLUniformLocation* location, bool transpose, float* value, int size, ExceptionCode&);
254 void uniformMatrix4fv(const WebGLUniformLocation* location, bool transpose, WebGLFloatArray* value, ExceptionCode&);
255 void uniformMatrix4fv(const WebGLUniformLocation* location, bool transpose, float* value, int size, ExceptionCode&);
WebGLRenderingContext.cpp     [all...]
  /external/sonivox/arm-wt-22k/host_src/
jet.h 143 EAS_PUBLIC EAS_RESULT JET_QueueSegment (EAS_DATA_HANDLE easHandle, EAS_INT segmentNum, EAS_INT libNum, EAS_INT repeatCount, EAS_INT transpose, EAS_U32 muteFlags, EAS_U8 userID);
  /frameworks/base/media/libmedia/
JetPlayer.cpp 442 int JetPlayer::queueSegment(int segmentNum, int libNum, int repeatCount, int transpose,
445 LOGV("JetPlayer::queueSegment segmentNum=%d, libNum=%d, repeatCount=%d, transpose=%d",
446 segmentNum, libNum, repeatCount, transpose);
448 return JET_QueueSegment(mEasData, segmentNum, libNum, repeatCount, transpose, muteFlags, userID);
  /external/sonivox/arm-wt-22k/lib_src/
jet_data.h 111 EAS_I8 transpose; member in struct:s_jet_segment_tag
jet.c 191 if (p->transpose)
193 result = EAS_SetTransposition(easHandle, p->streamHandle, p->transpose);
599 EAS_PUBLIC EAS_RESULT JET_QueueSegment (EAS_DATA_HANDLE easHandle, EAS_INT segmentNum, EAS_INT libNum, EAS_INT repeatCount, EAS_INT transpose, EAS_U32 muteFlags, EAS_U8 userID)
623 p->transpose = (EAS_I8) transpose;
    [all...]
  /frameworks/base/core/jni/
android_media_JetPlayer.cpp 267 jint segmentNum, jint libNum, jint repeatCount, jint transpose, jint muteFlags,
278 = lpJet->queueSegment(segmentNum, libNum, repeatCount, transpose, muteFlags, userID);
293 jint segmentNum, jint libNum, jint repeatCount, jint transpose, jbooleanArray muteArray,
322 result = lpJet->queueSegment(segmentNum, libNum, repeatCount, transpose, muteMask, userID);
android_opengl_GLES20.cpp     [all...]
  /external/webkit/WebCore/bindings/js/
JSWebGLRenderingContextCustom.cpp 712 bool transpose = args.at(1).toBoolean(exec);
724 context->uniformMatrix2fv(location, transpose, webGLArray.get(), ec);
727 context->uniformMatrix3fv(location, transpose, webGLArray.get(), ec);
730 context->uniformMatrix4fv(location, transpose, webGLArray.get(), ec);
744 context->uniformMatrix2fv(location, transpose, array.data(), array.size(), ec);
747 context->uniformMatrix3fv(location, transpose, array.data(), array.size(), ec);
750 context->uniformMatrix4fv(location, transpose, array.data(), array.size(), ec);
  /external/webkit/WebCore/bindings/v8/custom/
V8WebGLRenderingContextCustom.cpp 986 bool transpose = args[1]->BooleanValue(); local
    [all...]
  /frameworks/base/media/libdrm/mobile2/src/util/ustl-1.0/
ulaalgo.h 62 void transpose (matrix<N,N,T>& m) function in namespace:ustl
  /frameworks/base/opengl/java/android/opengl/
GLES20.java     [all...]
  /frameworks/base/opengl/tools/glgen/specs/gles11/
GLES20.spec 128 void glUniformMatrix2fv ( GLint location, GLsizei count, GLboolean transpose, const GLfloat *value )
129 void glUniformMatrix3fv ( GLint location, GLsizei count, GLboolean transpose, const GLfloat *value )
130 void glUniformMatrix4fv ( GLint location, GLsizei count, GLboolean transpose, const GLfloat *value )
  /external/webkit/WebCore/platform/graphics/
GraphicsContext3D.h 573 void uniformMatrix2fv(long location, bool transpose, float* value, int size);
574 void uniformMatrix3fv(long location, bool transpose, float* value, int size);
575 void uniformMatrix4fv(long location, bool transpose, float* value, int size);
  /external/webkit/WebCore/platform/graphics/mac/
GraphicsContext3DMac.cpp 871 void GraphicsContext3D::uniformMatrix2fv(long location, bool transpose, float* array, int size)
875 ::glUniformMatrix2fv(location, size, transpose, array);
878 void GraphicsContext3D::uniformMatrix3fv(long location, bool transpose, float* array, int size)
882 ::glUniformMatrix3fv(location, size, transpose, array);
885 void GraphicsContext3D::uniformMatrix4fv(long location, bool transpose, float* array, int size)
889 ::glUniformMatrix4fv(location, size, transpose, array);
    [all...]
  /external/webkit/WebCore/editing/
Editor.h 105 void transpose();
  /external/webkit/WebKit/chromium/src/
GraphicsContext3D.cpp     [all...]
  /frameworks/base/opengl/include/GLES2/
gl2.h 600 GL_APICALL void GL_APIENTRY glUniformMatrix2fv (GLint location, GLsizei count, GLboolean transpose, const GLfloat* value);
601 GL_APICALL void GL_APIENTRY glUniformMatrix3fv (GLint location, GLsizei count, GLboolean transpose, const GLfloat* value);
602 GL_APICALL void GL_APIENTRY glUniformMatrix4fv (GLint location, GLsizei count, GLboolean transpose, const GLfloat* value);

Completed in 700 milliseconds

1 2