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

  /external/llvm/include/llvm/ADT/
APFloat.h 160 enum opStatus {
268 opStatus add(const APFloat &, roundingMode);
269 opStatus subtract(const APFloat &, roundingMode);
270 opStatus multiply(const APFloat &, roundingMode);
271 opStatus divide(const APFloat &, roundingMode);
273 opStatus remainder(const APFloat &);
275 opStatus mod(const APFloat &, roundingMode);
276 opStatus fusedMultiplyAdd(const APFloat &, const APFloat &, roundingMode);
284 opStatus convert(const fltSemantics &, roundingMode, bool *);
285 opStatus convertToInteger(integerPart *, unsigned int, bool
    [all...]
  /external/llvm/lib/Support/
APFloat.cpp 907 opStatus status;
1116 APFloat::opStatus
1125 return (opStatus) (opOverflow | opInexact);
1179 APFloat::opStatus
    [all...]
  /frameworks/base/media/jni/
android_media_MediaRecorder.cpp 117 static bool process_media_recorder_call(JNIEnv *env, status_t opStatus, const char* exception, const char* message)
120 if (opStatus == (status_t)INVALID_OPERATION) {
123 } else if (opStatus != (status_t)OK) {
259 status_t opStatus = mr->setOutputFile(fd, offset, length);
260 process_media_recorder_call(env, opStatus, "java/io/IOException", "setOutputFile failed.");
android_media_MediaMetadataRetriever.cpp 50 static void process_media_retriever_call(JNIEnv *env, status_t opStatus, const char* exception, const char *message)
52 if (opStatus == (status_t) INVALID_OPERATION) {
54 } else if (opStatus != (status_t) OK) {
61 sprintf(msg, "%s: status = 0x%X", message, opStatus);
android_media_MediaPlayer.cpp 152 // If exception is NULL and opStatus is not OK, this method sends an error
154 // opStatus is not OK, this method throws the given exception to the client
156 static void process_media_player_call(JNIEnv *env, jobject thiz, status_t opStatus, const char* exception, const char *message)
159 if (opStatus != (status_t) OK) {
161 if (mp != 0) mp->notify(MEDIA_ERROR, opStatus, 0);
164 if ( opStatus == (status_t) INVALID_OPERATION ) {
166 } else if ( opStatus == (status_t) PERMISSION_DENIED ) {
168 } else if ( opStatus != (status_t) OK ) {
175 sprintf(msg, "%s: status=0x%X", message, opStatus);
215 status_t opStatus
    [all...]
  /external/clang/include/clang/Lex/
LiteralSupport.h 93 llvm::APFloat::opStatus GetFloatValue(llvm::APFloat &Result);
  /external/clang/lib/Lex/
LiteralSupport.cpp 749 llvm::APFloat::opStatus
    [all...]
  /external/llvm/lib/Analysis/
ConstantFolding.cpp     [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
SelectionDAG.cpp     [all...]
DAGCombiner.cpp     [all...]
  /external/clang/lib/Sema/
SemaExpr.cpp     [all...]
SemaOverload.cpp 356 llvm::APFloat::opStatus ConvertStatus = FloatVal.convert(
    [all...]

Completed in 415 milliseconds