HomeSort by relevance Sort by last modified time
    Searched refs:opStatus (Results 1 - 15 of 15) sorted by null

  /external/llvm/include/llvm/ADT/
APFloat.h 169 enum opStatus {
295 opStatus add(const APFloat &, roundingMode);
296 opStatus subtract(const APFloat &, roundingMode);
297 opStatus multiply(const APFloat &, roundingMode);
298 opStatus divide(const APFloat &, roundingMode);
300 opStatus remainder(const APFloat &);
302 opStatus mod(const APFloat &);
303 opStatus fusedMultiplyAdd(const APFloat &, const APFloat &, roundingMode);
304 opStatus roundToIntegral(roundingMode);
306 opStatus next(bool nextDown)
    [all...]
  /external/llvm/lib/Support/
APFloat.cpp 989 opStatus status;
    [all...]
  /frameworks/base/media/jni/
android_media_MediaMetadataRetriever.cpp 54 static void process_media_retriever_call(JNIEnv *env, status_t opStatus, const char* exception, const char *message)
56 if (opStatus == (status_t) INVALID_OPERATION) {
58 } else if (opStatus != (status_t) OK) {
65 sprintf(msg, "%s: status = 0x%X", message, opStatus);
android_media_MediaRecorder.cpp 127 static bool process_media_recorder_call(JNIEnv *env, status_t opStatus, const char* exception, const char* message)
130 if (opStatus == (status_t)INVALID_OPERATION) {
133 } else if (opStatus != (status_t)OK) {
274 status_t opStatus = mr->setOutputFile(fd, offset, length);
275 process_media_recorder_call(env, opStatus, "java/io/IOException", "setOutputFile failed.");
android_media_MediaPlayer.cpp 163 // If exception is NULL and opStatus is not OK, this method sends an error
165 // opStatus is not OK, this method throws the given exception to the client
167 static void process_media_player_call(JNIEnv *env, jobject thiz, status_t opStatus, const char* exception, const char *message)
170 if (opStatus != (status_t) OK) {
172 if (mp != 0) mp->notify(MEDIA_ERROR, opStatus, 0);
175 if ( opStatus == (status_t) INVALID_OPERATION ) {
177 } else if ( opStatus == (status_t) BAD_VALUE ) {
179 } else if ( opStatus == (status_t) PERMISSION_DENIED ) {
181 } else if ( opStatus != (status_t) OK ) {
188 sprintf(msg, "%s: status=0x%X", message, opStatus);
    [all...]
  /external/clang/include/clang/Lex/
LiteralSupport.h 102 llvm::APFloat::opStatus GetFloatValue(llvm::APFloat &Result);
  /external/llvm/lib/Analysis/
ConstantFolding.cpp     [all...]
  /external/clang/lib/Lex/
LiteralSupport.cpp 957 llvm::APFloat::opStatus
    [all...]
  /external/llvm/unittests/ADT/
APFloatTest.cpp     [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
SelectionDAG.cpp     [all...]
DAGCombiner.cpp     [all...]
  /external/llvm/lib/Transforms/InstCombine/
InstCombineCalls.cpp     [all...]
  /external/clang/lib/Sema/
SemaOverload.cpp 358 llvm::APFloat::opStatus ConvertStatus = FloatVal.convert(
    [all...]
SemaExpr.cpp     [all...]
  /external/llvm/lib/Target/X86/
X86ISelLowering.cpp     [all...]

Completed in 427 milliseconds