HomeSort by relevance Sort by last modified time
    Searched full:realize (Results 26 - 50 of 298) sorted by null

12 3 4 5 6 7 8 91011>>

  /frameworks/wilhelm/tests/examples/
slesTestVirtualizerPath.cpp 97 /* Realize the Output Mix object in synchronous mode */
98 result = (*outputMix)->Realize(outputMix, SL_BOOLEAN_FALSE);
150 /* Realize the player in synchronous mode. */
151 result = (*player)->Realize(player, SL_BOOLEAN_FALSE); ExitOnError(result);
152 fprintf(stdout, "URI example: after Realize\n");
286 result = (*sl)->Realize(sl, SL_BOOLEAN_FALSE);
slesTestSawtoothBufferQueue.cpp 156 res = (*OutputMix)->Realize(OutputMix, SL_BOOLEAN_FALSE);
208 res = (*player)->Realize(player, SL_BOOLEAN_FALSE); CheckErr(res);
209 fprintf(stdout, "bufferQueue example: after Realize\n");
287 res = (*sl)->Realize(sl, SL_BOOLEAN_FALSE); CheckErr(res);
slesTestSendToPresetReverb.cpp 126 /* Realize the Output Mix object in synchronous mode */
127 result = (*outputMix)->Realize(outputMix, SL_BOOLEAN_FALSE);
204 /* Realize the player in synchronous mode. */
205 result = (*player)->Realize(player, SL_BOOLEAN_FALSE); ExitOnError(result);
206 fprintf(stdout, "URI example: after Realize\n");
375 result = (*sl)->Realize(sl, SL_BOOLEAN_FALSE);
  /frameworks/wilhelm/tests/mimeUri/
slesTestPlayStreamType.cpp 92 /* Realize the Output Mix object in synchronous mode */
93 result = (*outputMix)->Realize(outputMix, SL_BOOLEAN_FALSE);
149 /* Realize the player in synchronous mode. */
150 result = (*player)->Realize(player, SL_BOOLEAN_FALSE); ExitOnError(result);
151 fprintf(stdout, "URI example: after Realize\n");
262 result = (*sl)->Realize(sl, SL_BOOLEAN_FALSE);
slesTestLoopUri.cpp 165 res = (*OutputMix)->Realize(OutputMix, SL_BOOLEAN_FALSE);
193 res = (*player)->Realize(player, SL_BOOLEAN_FALSE); CheckErr(res);
194 fprintf(stdout, "URI example: after Realize\n");
312 res = (*sl)->Realize(sl, SL_BOOLEAN_FALSE);
  /development/ndk/platforms/android-9/samples/native-audio/jni/
native-audio-jni.c 159 // realize the engine
160 result = (*engineObject)->Realize(engineObject, SL_BOOLEAN_FALSE);
176 // realize the output mix
177 result = (*outputMixObject)->Realize(outputMixObject, SL_BOOLEAN_FALSE);
224 // realize the player
225 result = (*bqPlayerObject)->Realize(bqPlayerObject, SL_BOOLEAN_FALSE);
296 // or possibly during Realize on other platforms
303 // realize the player
304 result = (*uriPlayerObject)->Realize(uriPlayerObject, SL_BOOLEAN_FALSE);
612 // realize the playe
    [all...]
  /external/llvm/docs/HistoricalNotes/
2001-02-13-Reference-Memory.txt 28 A. If you do pointer analysis and realize that two stores are
2001-02-13-Reference-MemoryResponse.txt 28 > A. If you do pointer analysis and realize that two stores are
  /frameworks/wilhelm/src/android/
OutputMix_to_android.cpp 31 SL_LOGV("Realize outputMix=%p", om);
AudioPlayer_to_android.h 31 * Finish the Android-specific pre-Realize initialization of a CAudioPlayer.
android_prompts.h 31 "Cannot realize AudioPlayer: with unknown data source locator"
33 "Cannot realize AudioPlayer: unexpected object type \%d"
  /frameworks/wilhelm/tests/sandbox/
monkey.c 129 // realize the player
130 SLresult result = (*p->mObject)->Realize(p->mObject, SL_BOOLEAN_FALSE);
176 result = (*engineObject)->Realize(engineObject, SL_BOOLEAN_FALSE);
184 result = (*outputMixObject)->Realize(outputMixObject, SL_BOOLEAN_FALSE);
srcsink.c 33 result = (*engineObject)->Realize(engineObject, SL_BOOLEAN_FALSE);
78 // create output mix but don't realize it yet
90 // now realize the output mix
91 result = (*outputMixObject)->Realize(outputMixObject, SL_BOOLEAN_FALSE);
engine.c 121 printf("interface available pre-realize: ");
134 printf("Realize the engine\n");
135 result = (*engineObject)->Realize(engineObject, SL_BOOLEAN_FALSE);
intbufq.c 89 result = (*engineObject)->Realize(engineObject, SL_BOOLEAN_FALSE);
99 result = (*outputmixObject)->Realize(outputmixObject, SL_BOOLEAN_FALSE);
129 result = (*playerObject)->Realize(playerObject, SL_BOOLEAN_FALSE);
multiplay.c 152 result = (*engineObject)->Realize(engineObject, SL_BOOLEAN_FALSE);
164 result = (*mixObject)->Realize(mixObject, SL_BOOLEAN_FALSE);
195 result = (*p->mPlayerObject)->Realize(p->mPlayerObject, SL_BOOLEAN_FALSE);
  /cts/tests/tests/nativemedia/xa/src/
XAObjectCreationTest.cpp 19 * The tests verify the creation and completion of the call to Realize() for the following objects:
84 res = (*engineObj)->Realize(engineObj, XA_BOOLEAN_FALSE);
116 res = (*outputMixObj)->Realize(outputMixObj, XA_BOOLEAN_FALSE);
  /frameworks/wilhelm/src/
sles_allinclusive.h 125 #define INTERFACE_IMPLICIT_PREREALIZE 4 // implicit, and can call GetInterface before Realize
126 #define INTERFACE_EXPLICIT_PREREALIZE 5 // explicit, and can call GetInterface before Realize
129 #define INTERFACE_PREREALIZE 4 // bit-mask to test for calling GetInterface before Realize
367 #define SL_OBJECT_STATE_REALIZING_1 ((SLuint32) 0x4) // async realize on work queue
368 #define SL_OBJECT_STATE_REALIZING_2 ((SLuint32) 0x5) // sync realize, or async realize hook
372 #define SL_OBJECT_STATE_REALIZING_1A ((SLuint32) 0x9) // abort while async realize on work queue
  /cts/tests/tests/mediastress/jni/
native-media-jni.cpp 293 // realize the engine
294 res = (*engineObject)->Realize(engineObject, XA_BOOLEAN_FALSE);
305 // realize the output mix
306 res = (*outputMixObject)->Realize(outputMixObject, XA_BOOLEAN_FALSE);
368 // realize the player
369 res = (*playerObj)->Realize(playerObj, XA_BOOLEAN_FALSE);
  /development/ndk/platforms/android-14/samples/native-media/jni/
native-media-jni.c 253 // realize the engine
254 res = (*engineObject)->Realize(engineObject, XA_BOOLEAN_FALSE);
265 // realize the output mix
266 res = (*outputMixObject)->Realize(outputMixObject, XA_BOOLEAN_FALSE);
382 // realize the player
383 res = (*playerObj)->Realize(playerObj, XA_BOOLEAN_FALSE);
  /frameworks/wilhelm/tests/native-media/jni/
native-media-jni.c 276 // realize the engine
277 res = (*engineObject)->Realize(engineObject, XA_BOOLEAN_FALSE);
288 // realize the output mix
289 res = (*outputMixObject)->Realize(outputMixObject, XA_BOOLEAN_FALSE);
395 // realize the player
396 res = (*playerObj)->Realize(playerObj, XA_BOOLEAN_FALSE);
  /development/samples/TicTacToeMain/
README.txt 33 One important thing to realize is that the library is not a separately-compiled
  /external/pdfium/core/src/fxcodec/fx_libopenjpeg/libopenjpeg20/
image.h 37 The functions in IMAGE.C have for goal to realize operations on images.
  /frameworks/wilhelm/src/objects/
CAudioPlayer.c 22 /** \brief Hook called by Object::Realize when an audio player is realized */
COutputMix.c 22 /** \brief Hook called by Object::Realize when an output mix is realized */

Completed in 225 milliseconds

12 3 4 5 6 7 8 91011>>