text stringlengths 1 24.5M |
|---|
#include "apitracefilter.h"
#include "apitracecall.h"
#include "apitracemodel.h"
#include <QDebug>
ApiTraceFilter::ApiTraceFilter(QObject *parent)
: QSortFilterProxyModel(),
m_filters(ExtensionsFilter | ResolutionsFilter |
ErrorsQueryFilter | ExtraStateFilter)
{
}
bool ApiTraceFilter::filt... |
#pragma once
#include <QRegularExpression>
#include <QSortFilterProxyModel>
class ApiTraceCall;
class ApiTraceFilter : public QSortFilterProxyModel
{
Q_OBJECT
public:
enum FilterOption {
NullFilter = 0,
ExtensionsFilter = 1 << 0,
ResolutionsFilter = 1 << 1,
ErrorsQuery... |
#include "apitracemodel.h"
#include "apitracecall.h"
#include "traceloader.h"
#include "trace_parser.hpp"
#include <QBuffer>
#include <QDebug>
#include <QImage>
#include <QVariant>
ApiTraceModel::ApiTraceModel(QObject *parent)
: QAbstractItemModel(parent),
m_trace(0)
{
}
ApiTraceModel::~ApiTraceModel()
{
... |
#pragma once
#include <QAbstractItemModel>
#include <QModelIndex>
#include <QSet>
#include <QVariant>
class ApiTrace;
class ApiTraceCall;
class ApiTraceEvent;
class ApiTraceFrame;
class ApiTraceModel : public QAbstractItemModel
{
Q_OBJECT
public:
enum Roles {
EventRole = Qt::UserRole + 1
};
publ... |
#include "argumentseditor.h"
#include "apitracecall.h"
#include <QDebug>
#include <QDoubleSpinBox>
#include <QItemEditorFactory>
#include <QSpinBox>
#include <limits.h>
#include <float.h>
static bool
isVariantEditable(const QVariant &var)
{
if (var.canConvert<ApiArray>()) {
ApiArray array = var.value<A... |
#pragma once
#include "apitracecall.h"
#include "ui_argumentseditor.h"
#include <QComboBox>
#include <QDialog>
#include <QItemEditorFactory>
#include <QStandardItemModel>
#include <QSpinBox>
#include <QTextEdit>
#include <limits.h>
#include <float.h>
class ApiTraceCall;
class BooleanComboBox : public QComboBox
{
... |
#pragma once
#include "graphing/graphwidget.h"
#include "trace_profiler.hpp"
#include "profiling.h"
/**
* Wrapper for call duration graphs.
*
* This implements the transformSelectionIn and transformSelectionOut to
* allow sharing the selection between the graphs and the heatmap as they
* are using different scal... |
/*
This file is part of the Ofi Labs X2 project.
Copyright (C) 2010 Ariya Hidayat <ariya.hidayat@gmail.com>
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are met:
* Redistributions of source code must retain the above... |
/*
This file is part of the Ofi Labs X2 project.
Copyright (C) 2010 Ariya Hidayat <ariya.hidayat@gmail.com>
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are met:
* Redistributions of source code must retain the above... |
#include "imageviewer.h"
#include "pixelwidget.h"
#include "apisurface.h"
#include "image.hpp"
#include <QDebug>
#include <QPainter>
#include <QPixmap>
#include <QScrollBar>
#include <QSettings>
#include <QScreen>
ImageViewer::ImageViewer(QWidget *parent, bool opaque, bool alpha)
: QDialog(parent),
m_image... |
#pragma once
#include "ui_imageviewer.h"
#include <QDialog>
class PixelWidget;
class QLabel;
namespace image {
class Image;
}
class ImageViewer : public QDialog, public Ui_ImageViewer
{
Q_OBJECT
public:
ImageViewer(QWidget *parent = 0, bool opaque = false, bool alpha = false);
~ImageViewer();
v... |
#include "jumpwidget.h"
#include <QDebug>
#include <QKeyEvent>
JumpWidget::JumpWidget(QWidget *parent )
: QWidget(parent)
{
m_ui.setupUi(this);
connect(m_ui.jumpButton, SIGNAL(clicked()),
SLOT(slotJump()));
connect(m_ui.spinBox, SIGNAL(editingFinished()),
SLOT(slotJump()));
... |
#pragma once
#include "ui_jumpwidget.h"
#include <QWidget>
class QKeyEvent;
class QShowEvent;
class JumpWidget : public QWidget
{
Q_OBJECT
public:
JumpWidget(QWidget *parent = 0);
signals:
void jumpTo(int callNumber);
private slots:
void slotJump();
void slotCancel();
protected:
virtual bo... |
#include "leaktracethread.h"
#include "apitracecall.h"
#include <QDebug>
#include <QProcess>
#include <QRegularExpression>
void LeakTraceThread::run()
{
QString msg = QLatin1String("Replay finished!");
/*
* Construct command line
*/
QString prog = "apitrace";
QStringList arguments;
ar... |
#pragma once
#include <QThread>
#include <QString>
#include <QList>
struct ApiTraceError;
class LeakTraceThread: public QThread{
Q_OBJECT
public:
LeakTraceThread(QString _filename):filename(_filename){}
bool hasError()const {return error;}
signals:
void leakTraceErrors(cons... |
#include <stdlib.h>
#include "mainwindow.h"
#include "apitrace.h"
#include "apitracecall.h"
#include "os_string.hpp"
#include "os_process.hpp"
#include "version.h"
#include <QApplication>
#include <QMetaType>
#include <QVariant>
#include <QImage>
Q_DECLARE_METATYPE(QList<ApiTraceFrame*>);
Q_DECLARE_METATYPE(QVect... |
#include "mainwindow.h"
#include "apitrace.h"
#include "apitracecall.h"
#include "apicalldelegate.h"
#include "apitracemodel.h"
#include "apitracefilter.h"
#include "argumentseditor.h"
#include "imageviewer.h"
#include "jumpwidget.h"
#include "profiledialog.h"
#include "retracer.h"
#include "searchwidget.h"
#include "... |
#pragma once
#include "ui_mainwindow.h"
#include "trace_api.hpp"
#include "apitrace.h"
#include <QMainWindow>
#include <QProcess>
#include <QList>
#include <QImage>
class ApiTrace;
class ApiTraceCall;
class ApiTraceEvent;
class ApiTraceFilter;
class ApiTraceFrame;
class ApiTraceModel;
class ApiTraceState;
class Arg... |
/**
* The source code is based on qpixeltool.cpp.
* Original license follows.
*/
/****************************************************************************
**
** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies).
** Contact: http://www.qt-project.org/legal
**
** This file is part of the tools applications... |
/**
* The source code is based on qpixeltool.h.
* Original license follows.
*/
/****************************************************************************
**
** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies).
** Contact: http://www.qt-project.org/legal
**
** This file is part of the tools applications o... |
#include "profiledialog.h"
#include "profiletablemodel.h"
#include <QSortFilterProxyModel>
#include "graphing/histogramview.h"
#include "graphing/timeaxiswidget.h"
#include "graphing/frameaxiswidget.h"
#include "graphing/heatmapverticalaxiswidget.h"
#include "profileheatmap.h"
/* Handy function to allow selection of ... |
#pragma once
#include "ui_profiledialog.h"
#include <QDialog>
namespace trace { struct Profile; }
class ProfileDialog : public QDialog, public Ui_ProfileDialog
{
Q_OBJECT
public:
ProfileDialog(QWidget *parent = 0);
~ProfileDialog();
void setProfile(trace::Profile* profile);
void showCall(in... |
#pragma once
#include "graphing/heatmapview.h"
#include "profiling.h"
#include <algorithm>
/**
* Data providers for a heatmap based off the trace::Profile call data
*/
class ProfileHeatmapRowIterator : public HeatmapRowIterator {
public:
ProfileHeatmapRowIterator(const trace::Profile* profile, qint64 start, q... |
#include "profiletablemodel.h"
#include "profiledialog.h"
#include "profiling.h"
#include <algorithm>
#include <QLocale>
typedef trace::Profile::Call Call;
typedef trace::Profile::Frame Frame;
typedef trace::Profile::Program Program;
enum {
COLUMN_PROGRAM,
COLUMN_USAGES,
COLUMN_GPU_TIME,
COLUMN_CPU_... |
#pragma once
#include <QAbstractTableModel>
#include "trace_profiler.hpp"
struct ProfileTableRow
{
ProfileTableRow(unsigned no)
: program(no),
uses(0),
gpuTime(0),
cpuTime(0),
pixels(0),
longestGpu(0),
longestCpu(0),
longestPixel(0)
... |
#pragma once
#include <QString>
#include <QLocale>
#include "trace_profiler.hpp"
class Profiling {
public:
/**
* Select and show the call in main window.
*/
static void jumpToCall(int index);
/**
* Convert a CPU / GPU time to a textual representation.
* This includes automatic unit se... |
/**************************************************************************
*
* Copyright 2015 VMware, Inc
* All Rights Reserved.
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software with... |
/**************************************************************************
*
* Copyright 2015 VMware, Inc
* All Rights Reserved.
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software with... |
/**************************************************************************
*
* Copyright 2015 VMware, Inc
* All Rights Reserved.
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software with... |
#include "retracer.h"
#include "apitracecall.h"
#include "thumbnail.h"
#include "image.hpp"
#include "trace_profiler.hpp"
#include <QDebug>
#include <QVariant>
#include <QList>
#include <QImage>
#include <QRegularExpression>
#include "qubjson.h"
/**
* Wrapper around a QProcess which enforces IO to block .
*
*... |
#pragma once
#include "trace_api.hpp"
#include "apitrace.h"
#include "apitracecall.h"
#include <QThread>
#include <QProcess>
class ApiTraceState;
namespace trace { struct Profile; }
struct RetracerCallRange
{
qlonglong m_callStartNo{0};
qlonglong m_callEndNo{0};
};
class Retracer : public QThread
{
Q_... |
#include "saverthread.h"
#include "trace_writer.hpp"
#include "trace_model.hpp"
#include "trace_parser.hpp"
#include <QFile>
#include <QHash>
#include <QUrl>
#include <QDebug>
#if 0
static trace::FunctionSig *
createFunctionSig(ApiTraceCall *call, unsigned id)
{
trace::FunctionSig *sig = new trace::FunctionSig(... |
#pragma once
#include "apitrace.h"
#include <QThread>
#include <QVector>
class ApiTraceCall;
class ApiTraceFrame;
class SaverThread : public QThread
{
Q_OBJECT
public:
SaverThread(QObject *parent=0);
public slots:
void saveFile(const QString &saveFileName,
const QString &readFileName,... |
#include "searchwidget.h"
#include <QDebug>
#include <QKeyEvent>
#include <QKeySequence>
SearchWidget::SearchWidget(QWidget *parent)
: QWidget(parent)
{
m_ui.setupUi(this);
m_ui.notFoundLabel->hide();
m_origPalette = m_ui.lineEdit->palette();
connect(m_ui.nextButton, SIGNAL(clicked()),
... |
#pragma once
#include "ui_searchwidget.h"
#include <QPalette>
#include <QWidget>
class QShowEvent;
class SearchWidget : public QWidget
{
Q_OBJECT
public:
SearchWidget(QWidget *parent=0);
void setFound(bool f);
void show();
signals:
void searchNext(const QString &str, Qt::CaseSensitivity cs = Qt:... |
#include "settingsdialog.h"
#include <QMessageBox>
SettingsDialog::SettingsDialog(QWidget *parent)
: QDialog(parent),
m_filter(0)
{
setupUi(this);
m_showFilters.insert(
tr("Draw events"),
QRegularExpression("glDraw|glVertex|glBegin|glEnd"));
m_showFilters.insert(
tr("Tex... |
#pragma once
#include "trace_api.hpp"
#include "apitracefilter.h"
#include "ui_settings.h"
#include <QDialog>
#include <QRegularExpression>
class SettingsDialog : public QDialog, public Ui_Settings
{
Q_OBJECT
public:
SettingsDialog(QWidget *parent = 0);
void accept() override;
void setFilterModel(Ap... |
#include "shaderssourcewidget.h"
#include "glsledit.h"
ShadersSourceWidget::ShadersSourceWidget(QWidget *parent)
: QWidget(parent)
{
m_ui.setupUi(this);
m_edit = new GLSLEdit(this);
m_edit->setReadOnly(true);
m_ui.verticalLayout->addWidget(m_edit);
connect(m_ui.shadersCB, SIGNAL(currentTextC... |
#pragma once
#include "ui_shaderssourcewidget.h"
#include <QWidget>
class GLSLEdit;
class ShadersSourceWidget : public QWidget
{
Q_OBJECT
public:
ShadersSourceWidget(QWidget *parent=0);
public slots:
void setShaders(const QMap<QString, QString> &sources);
private slots:
void changeShader(const QStr... |
#pragma once
#define THUMBNAIL_SIZE 64
#include <QImage>
inline QImage
thumbnail(const QImage &image, Qt::TransformationMode transformationMode = Qt::FastTransformation) {
return image.scaled(THUMBNAIL_SIZE, THUMBNAIL_SIZE, Qt::KeepAspectRatio, transformationMode);
}
|
#include "tracedialog.h"
#include <QDebug>
#include <QFileDialog>
#include <QMessageBox>
TraceDialog::TraceDialog(QWidget *parent)
: QDialog(parent)
{
setupUi(this);
apiComboBox->addItem("GL");
#ifdef Q_OS_WIN
apiComboBox->addItem("D3D7");
apiComboBox->addItem("D3D8");
apiComboBox->addItem("D... |
#pragma once
#include "ui_tracedialog.h"
#include <QDialog>
class TraceDialog : public QDialog, public Ui_TraceDialog
{
Q_OBJECT
public:
TraceDialog(QWidget *parent = 0);
void accept() override;
void setApi(const QString &api);
QString api() const;
void setApplicationPath(const QString &pat... |
#include "traceloader.h"
#include "apitrace.h"
#include <QDebug>
#include <QFile>
#define FRAMES_TO_CACHE 100
static ApiTraceCall *
apiCallFromTraceCall(const trace::Call *call,
const QHash<QString, QUrl> &helpHash,
ApiTraceFrame *frame,
ApiTraceCall *pa... |
#pragma once
#include "apitrace.h"
#include "trace_file.hpp"
#include "trace_parser.hpp"
#include <QObject>
#include <QList>
#include <QMap>
#include <QStack>
class TraceLoader : public QObject
{
Q_OBJECT
public:
TraceLoader(QObject *parent=0);
~TraceLoader();
ApiTraceCallSignature *signature(unsi... |
#include "traceprocess.h"
#include <QDebug>
#include <QDir>
#include <QFile>
#include <QFileInfo>
TraceProcess::TraceProcess(QObject *parent)
: QObject(parent),
m_canTrace(true)
{
m_process = new QProcess(this);
connect(m_process, SIGNAL(finished(int, QProcess::ExitStatus)),
this, SLOT(... |
#pragma once
#include <QObject>
#include <QProcess>
class TraceProcess : public QObject
{
Q_OBJECT
public:
TraceProcess(QObject *parent=0);
~TraceProcess();
bool canTrace() const;
void setApi(const QString &str);
void setExecutablePathAndWorkingDir(const QString &execPath, const QString &wor... |
#include "trimprocess.h"
#include "apitrace.h"
#include <QDebug>
#include <QDir>
#include <QFile>
#include <QFileInfo>
TrimProcess::TrimProcess(QObject *parent)
: QObject(parent)
{
m_process = new QProcess(this);
connect(m_process, SIGNAL(finished(int, QProcess::ExitStatus)),
this, SLOT(trimF... |
#pragma once
#include "apitrace.h"
#include <QObject>
#include <QProcess>
class TrimProcess : public QObject
{
Q_OBJECT
public:
TrimProcess(QObject *parent=0);
~TrimProcess();
void setTrimIndex(int trimIndex);
int trimIndex();
void setTracePath(const QString &str);
QString tracePath() c... |
#include "vertexdatainterpreter.h"
#include <QListWidget>
#include <QStringList>
#include <QDebug>
#include <qmath.h>
static int
sizeForType(int type)
{
switch(type) {
case DT_INT8:
case DT_UINT8:
return 1;
case DT_INT16:
case DT_UINT16:
return 2;
case DT_INT32:
case DT_U... |
#pragma once
#include <QObject>
class QListWidget;
enum DataType {
DT_INT8,
DT_UINT8,
DT_INT16,
DT_UINT16,
DT_INT32,
DT_UINT32,
DT_FLOAT,
DT_DOUBLE,
};
class VertexDataInterpreter : public QObject
{
Q_OBJECT
public:
VertexDataInterpreter(QObject *parent=0);
QByteArray da... |
#include "frameaxiswidget.h"
#include <QPainter>
FrameAxisWidget::FrameAxisWidget(QWidget* parent) :
GraphAxisWidget(parent),
m_data(NULL)
{
setSelectable(GraphAxisWidget::Range);
}
void FrameAxisWidget::setDataProvider(FrameDataProvider* data)
{
delete m_data;
m_data = data;
}
void FrameAxisWid... |
#pragma once
#include "graphaxiswidget.h"
class FrameDataProvider {
public:
virtual ~FrameDataProvider() {}
/* Number of frames */
virtual unsigned size() const = 0;
/* Start and end values of frame */
virtual qint64 frameStart(unsigned frame) const = 0;
virtual qint64 frameEnd(unsigned fram... |
#include "graphaxiswidget.h"
#include <QMouseEvent>
GraphAxisWidget::GraphAxisWidget(QWidget* parent) :
QWidget(parent),
m_selectable(None),
m_selectionState(NULL)
{
}
bool GraphAxisWidget::hasSelection()
{
if (!m_selectionState) {
return false;
}
if (m_selectionState->type == Selec... |
#pragma once
#include "graphing.h"
#include <QWidget>
/**
* The generic base class of all graph axes.
*
* Handles orientation, simple selections, and view area.
*/
class GraphAxisWidget : public QWidget {
Q_OBJECT
public:
enum Orientation {
Horizontal,
Vertical
};
enum SelectionS... |
#pragma once
#include <QString>
/**
* A simple struct to hold a horizontal or vertical selection
*/
struct SelectionState {
enum SelectionType {
None,
Horizontal,
Vertical
};
SelectionType type;
qint64 start;
qint64 end;
};
/**
* Fairly generic data provider for graph... |
#pragma once
#include <QWidget>
#include <QPainter>
/**
* A very simple label widget, basically a box with text in.
*/
class GraphLabelWidget : public QWidget {
public:
GraphLabelWidget(QString text = QString(), QWidget* parent = 0) :
QWidget(parent),
m_flags(Qt::AlignHCenter | Qt::AlignVCenter)... |
#include "graphview.h"
#include <QMouseEvent>
#include <QApplication>
GraphView::GraphView(QWidget* parent) :
QWidget(parent),
m_viewLeft(0),
m_viewRight(0),
m_viewBottom(0),
m_viewTop(0),
m_graphLeft(0),
m_graphRight(0),
m_graphBottom(0),
m_graphTop(0),
m_viewWidth(0),
m_v... |
#pragma once
#include "graphing.h"
#include <QWidget>
/**
* The generic base class for a graph's view, this is the component that
* displays the actual data for the graph.
*
* - Stores the view area within the graph
* - Simple user interaction such as translating and zooming with mouse
* - Selection tracking s... |
#include "graphwidget.h"
#include <QScrollBar>
GraphWidget::GraphWidget(QWidget* parent) :
QWidget(parent),
m_view(NULL),
m_label(NULL),
m_axisTop(NULL),
m_axisLeft(NULL),
m_axisRight(NULL),
m_axisBottom(NULL),
m_horizontalScrollbar(NULL),
m_horizontalMin(0),
m_horizontalMax(0)... |
#pragma once
#include "graphview.h"
#include "graphaxiswidget.h"
#include "graphlabelwidget.h"
class QScrollBar;
/**
* The generic GraphWidget class which combines the elements of a graph,
* the axis, view, scrollbars and label.
*/
class GraphWidget : public QWidget {
Q_OBJECT
public:
enum AxisPosition {
... |
#include "heatmapverticalaxiswidget.h"
#include <qmath.h>
#include <QPainter>
#include <QMouseEvent>
HeatmapVerticalAxisWidget::HeatmapVerticalAxisWidget(QWidget* parent) :
GraphAxisWidget(parent),
m_data(NULL)
{
m_rowHeight = 20;
}
void HeatmapVerticalAxisWidget::setDataProvider(HeatmapDataProvider* dat... |
#pragma once
#include "heatmapview.h"
#include "graphaxiswidget.h"
/**
* Vertical axis specifically for heatmap displaying header and data rows
*/
class HeatmapVerticalAxisWidget : public GraphAxisWidget {
public:
HeatmapVerticalAxisWidget(QWidget* parent);
void setDataProvider(HeatmapDataProvider* data);
... |
#include "heatmapview.h"
#include <qmath.h>
#include <QToolTip>
#include <QPainter>
#include <QMouseEvent>
HeatmapView::HeatmapView(QWidget* parent) :
GraphView(parent),
m_data(NULL)
{
m_rowHeight = 20;
setMouseTracking(true);
}
void HeatmapView::setDataProvider(HeatmapDataProvider* data)
{
dele... |
#pragma once
#include "graphview.h"
/**
* The heatmap iterator will only return data when there is something to draw,
* this allows much faster access to the data in the case where the view is
* zoomed out to the point of where there is multiple calls in one pixel,
* it automagically calculates the heat for that ... |
#include "histogramview.h"
#include <QPen>
#include <QBrush>
#include <qmath.h>
#include <QPainter>
#include <QToolTip>
#include <QMouseEvent>
HistogramView::HistogramView(QWidget* parent) :
GraphView(parent),
m_data(NULL)
{
setMouseTracking(true);
m_gradientUnselected.setColorAt(0.9, QColor(200, 200... |
#pragma once
#include "graphview.h"
/**
* Histogram graph view.
*
* When the view is zoomed such that there is more than one item occupying
* a single pixel the one with the highest value will be displayed.
*/
class HistogramView : public GraphView {
public:
HistogramView(QWidget* parent);
void setDataP... |
#include "timeaxiswidget.h"
#include "profiling.h"
#include <qmath.h>
#include <QPainter>
TimeAxisWidget::TimeAxisWidget(QWidget* parent) :
GraphAxisWidget(parent)
{
}
void TimeAxisWidget::paintEvent(QPaintEvent *)
{
/* TODO: Support selections? */
/* TODO: Vertical scrolling? */
QPainter painter(th... |
#pragma once
#include "graphaxiswidget.h"
/**
* A simple axis that draws text using getTimeString to nicely format time values
*/
class TimeAxisWidget : public GraphAxisWidget {
public:
TimeAxisWidget(QWidget* parent = 0);
virtual void paintEvent(QPaintEvent *e) override;
};
|
/**************************************************************************
*
* Copyright 2014 VMware, Inc.
* All Rights Reserved.
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software wit... |
/**************************************************************************
*
* Copyright 2012 Jose Fonseca
* All Rights Reserved.
*
* Permission is hereby granted, free of charge, to any person obtaining a
* copy of this software and associated documentation files (the "Software"),
* to deal in the Software wi... |
/**************************************************************************
*
* Copyright 2012 Jose Fonseca
* All Rights Reserved.
*
* Permission is hereby granted, free of charge, to any person obtaining a
* copy of this software and associated documentation files (the "Software"),
* to deal in the Software wi... |
/**************************************************************************
*
* Copyright 2015 VMware, Inc.
* All Rights Reserved.
*
* Permission is hereby granted, free of charge, to any person obtaining a
* copy of this software and associated documentation files (the "Software"),
* to deal in the Software wit... |
/**************************************************************************
*
* Copyright 2012 Jose Fonseca
* All Rights Reserved.
*
* Permission is hereby granted, free of charge, to any person obtaining a
* copy of this software and associated documentation files (the "Software"),
* to deal in the Software wi... |
/**************************************************************************
*
* Copyright 2012 Jose Fonseca
* All Rights Reserved.
*
* Permission is hereby granted, free of charge, to any person obtaining a
* copy of this software and associated documentation files (the "Software"),
* to deal in the Software wi... |
/**************************************************************************
*
* Copyright 2012 Jose Fonseca
* All Rights Reserved.
*
* Permission is hereby granted, free of charge, to any person obtaining a
* copy of this software and associated documentation files (the "Software"),
* to deal in the Software wi... |
/**************************************************************************
*
* Copyright 2011 Jose Fonseca
* Copyright 2008-2009 VMware, Inc.
* All Rights Reserved.
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Softwa... |
/**************************************************************************
*
* Copyright 2012 VMware, Inc.
* All Rights Reserved.
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software wit... |
/**************************************************************************
*
* Copyright 2012 Jose Fonseca
* All Rights Reserved.
*
* Permission is hereby granted, free of charge, to any person obtaining a
* copy of this software and associated documentation files (the "Software"),
* to deal in the Software wi... |
/*********************************************************************
*
* Copyright 2012 Intel Corporation
* All Rights Reserved.
*
* Permission is hereby granted, free of charge, to any person
* obtaining a copy of this software and associated documentation
* files (the "Software"), to deal in the Software wit... |
/*********************************************************************
*
* Copyright 2012 Intel Corporation
* All Rights Reserved.
*
* Permission is hereby granted, free of charge, to any person
* obtaining a copy of this software and associated documentation
* files (the "Software"), to deal in the Software wi... |
/* The code for converting fp11 and fp10 values to fp32 is taken from Mesa:
*
* Copyright (C) 2011 Marek Olšák <maraeo@gmail.com>
*
* Permission is hereby granted, free of charge, to any person obtaining a
* copy of this software and associated documentation files (the "Software"),
* to deal in the Software wi... |
/**************************************************************************
*
* Copyright 2014 VMware, Inc.
* All Rights Reserved.
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software wit... |
/**************************************************************************
*
* Copyright 2014 VMware, Inc.
* Copyright 2011 Jose Fonseca
* All Rights Reserved.
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"),... |
/**************************************************************************
*
* Copyright 2011 Jose Fonseca
* Copyright 2010 VMware, Inc.
* Copyright 2004 IBM Corporation
* All Rights Reserved.
*
* Permission is hereby granted, free of charge, to any person obtaining a
* copy of this software and associated do... |
/**************************************************************************
*
* Copyright 2010 Luca Barbieri
*
* Permission is hereby granted, free of charge, to any person obtaining
* a copy of this software and associated documentation files (the
* "Software"), to deal in the Software without restriction, inclu... |
/**************************************************************************
*
* Copyright 2011-2012 Jose Fonseca
* All Rights Reserved.
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Softwar... |
/**************************************************************************
*
* Copyright 2016-2022 VMware, Inc.
* Copyright 2011-2012 Jose Fonseca
* All Rights Reserved.
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "S... |
/**************************************************************************
*
* Copyright 2016-2022 VMware, Inc.
* Copyright 2011-2012 Jose Fonseca
* All Rights Reserved.
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "S... |
/**************************************************************************
*
* Copyright 2011 Jose Fonseca
* All Rights Reserved.
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software wit... |
/**************************************************************************
*
* Copyright 2015 VMware, Inc.
* All Rights Reserved.
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software wit... |
/**************************************************************************
*
* Copyright 2015 VMware, Inc.
* All Rights Reserved.
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software wit... |
/**************************************************************************
*
* Copyright 2015 VMware, Inc.
* All Rights Reserved.
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software wit... |
/**************************************************************************
*
* Copyright 2015 VMware, Inc.
* All Rights Reserved.
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software wit... |
/**************************************************************************
*
* Copyright 2015 VMware, Inc.
* All Rights Reserved.
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software wit... |
/**************************************************************************
*
* Copyright 2010 VMware, Inc.
* All Rights Reserved.
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software wit... |
/**************************************************************************
*
* Copyright 2010 VMware, Inc.
* All Rights Reserved.
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software wit... |
/**************************************************************************
*
* Copyright 2008-2010 VMware, Inc.
* All Rights Reserved.
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Softwar... |
/**************************************************************************
*
* Copyright 2011 Jose Fonseca
* Copyright 2008-2010 VMware, Inc.
* All Rights Reserved.
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Softwa... |
/**************************************************************************
*
* Copyright (C) 2013 Intel Corporation. All rights reversed.
* Author: Meng Mengmeng <mengmeng.meng@intel.com>
* All Rights Reserved.
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software a... |
/**************************************************************************
*
* Copyright 2011 Jose Fonseca
* Copyright 2008-2010 VMware, Inc.
* All Rights Reserved.
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Softwa... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.