Searched defs:prediction (Results 1 - 9 of 9) sorted by relevance

/external/v8/src/interpreter/
H A Dhandler-table-builder.cc61 int handler_id, HandlerTable::CatchPrediction prediction) {
62 entries_[handler_id].catch_prediction_ = prediction;
60 SetPrediction( int handler_id, HandlerTable::CatchPrediction prediction) argument
/external/libtextclassifier/smartselect/
H A Dtext-classification-model.cc316 const int prediction = local
319 selection_label_spans[prediction];
323 << prediction << " " << selection.first << " "
328 return {{selection.first, selection.second}, scores[prediction]};
/external/v8/src/ast/
H A Dprettyprinter.cc869 const char* prediction = ""; local
872 prediction = "UNCAUGHT";
875 prediction = "CAUGHT";
878 prediction = "PROMISE";
881 prediction = "DESUGARING";
884 prediction = "ASYNC_AWAIT";
887 Print(" %s\n", prediction);
H A Dast.h1099 // prediction is only an approximation.
1103 void set_catch_prediction(HandlerTable::CatchPrediction prediction) { argument
1104 catch_prediction_ = prediction;
/external/v8/src/
H A Dframes.cc987 int* stack_depth, HandlerTable::CatchPrediction* prediction) {
991 return code->LookupRangeInHandlerTable(pc_offset, stack_depth, prediction);
1248 int* stack_slots, HandlerTable::CatchPrediction* prediction) {
1249 // We cannot perform exception prediction on optimized code. Instead, we need
1251 // code to perform prediction there.
1252 DCHECK_NULL(prediction);
1371 int* context_register, HandlerTable::CatchPrediction* prediction) {
1374 context_register, prediction);
986 LookupExceptionHandlerInTable( int* stack_depth, HandlerTable::CatchPrediction* prediction) argument
1247 LookupExceptionHandlerInTable( int* stack_slots, HandlerTable::CatchPrediction* prediction) argument
1370 LookupExceptionHandlerInTable( int* context_register, HandlerTable::CatchPrediction* prediction) argument
H A Ddeoptimizer.cc641 HandlerTable::CatchPrediction prediction; local
642 return table->LookupRange(pc_offset, data_out, &prediction);
650 HandlerTable::CatchPrediction prediction; local
651 return table->LookupRange(bytecode_offset, data_out, &prediction);
H A Disolate.cc1151 CatchType prediction = PredictExceptionCatcher(); local
1152 if ((prediction == NOT_CAUGHT || prediction == CAUGHT_BY_EXTERNAL) &&
1344 HandlerTable::CatchPrediction prediction; local
1348 // exception prediction, and we need to use the corresponding handler
1362 code->LookupRangeInHandlerTable(code_offset, nullptr, &prediction);
1364 if (prediction == HandlerTable::UNCAUGHT) continue;
1365 return prediction;
1368 } else if (frame->LookupExceptionHandlerInTable(nullptr, &prediction) > 0) {
1369 return prediction;
1392 HandlerTable::CatchPrediction prediction = PredictException(js_frame); local
[all...]
H A Dobjects.cc10599 CatchPrediction prediction = HandlerPredictionField::decode(handler_field); local
10610 if (prediction_out) *prediction_out = prediction;
14357 HandlerTable::CatchPrediction* prediction) {
14360 return table->LookupRange(code_offset, data, prediction);
14877 CatchPrediction prediction = HandlerPredictionField::decode(handler_field); local
14881 << " (prediction=" << prediction << ", data=" << data << ")\n";
14892 CatchPrediction prediction = HandlerPredictionField::decode(handler_field); local
14894 << handler_offset << " (prediction=" << prediction << ")\ local
14356 LookupRangeInHandlerTable(int code_offset, int* data, HandlerTable::CatchPrediction* prediction) argument
15125 LookupRangeInHandlerTable( int code_offset, int* data, HandlerTable::CatchPrediction* prediction) argument
[all...]
/external/deqp/modules/gles3/performance/
H A Des3pBufferDataUploadTests.cpp716 const float prediction = (float)(samples[ndx].*predictor) * fit.coefficient + fit.offset; local
718 timeDiffs[ndx] = actual - prediction;
733 const float prediction = (float)(samples[ndx].*predictor) * fit.coefficient + fit.offset; local
739 if (prediction < 1.0f)
742 relativeDiffs[ndx] = (actual - prediction) / prediction;

Completed in 6542 milliseconds