name string | code string | asm string | file string |
|---|---|---|---|
QtMWidgets::AbstractScrollAreaPrivate::AbstractScrollAreaPrivate(QtMWidgets::AbstractScrollArea*) | explicit AbstractScrollAreaPrivate( AbstractScrollArea * parent )
: q( parent )
, viewport( 0 )
, scrolledAreaSize( 0, 0 )
, topLeftCorner( 0, 0 )
, top( 0 )
, bottom( 0 )
, right( 0 )
, left( 0 )
, leftMouseButtonPressed( false )
, horIndicator( 0 )
, vertIndicator( 0 )
, animationT... | pushq %rbp
movq %rsp, %rbp
subq $0x20, %rsp
movq %rdi, -0x8(%rbp)
movq %rsi, -0x10(%rbp)
movq -0x8(%rbp), %rdi
movq %rdi, -0x18(%rbp)
leaq 0x87b41(%rip), %rax # 0x135ff0
addq $0x10, %rax
movq %rax, (%rdi)
movq -0x10(%rbp), %rax
movq %rax, 0x8(%rdi)
addq $0x10, %rdi
callq 0x95080
movq -0x18(%rbp), %rdi
movq $0x0, 0x... | /igormironchik[P]qtmwidgets/src/private/abstractscrollarea_p.hpp |
QtMWidgets::DateTimePickerPrivate::drawSectionItems(int, QPainter*, QStyleOption const&) | void
DateTimePickerPrivate::drawSectionItems( int section, QPainter * p,
const QStyleOption & opt )
{
int x = 0;
for( int i = 0; i < section; ++i )
x += sections.at( i ).sectionWidth;
x += 3 + itemSideMargin;
p->setPen( opt.palette.color( QPalette::WindowText ) );
const int yOffset = sections.a... | pushq %rbp
movq %rsp, %rbp
subq $0x160, %rsp # imm = 0x160
movq %rdi, -0x8(%rbp)
movl %esi, -0xc(%rbp)
movq %rdx, -0x18(%rbp)
movq %rcx, -0x20(%rbp)
movq -0x8(%rbp), %rax
movq %rax, -0xe0(%rbp)
movl $0x0, -0x24(%rbp)
movl $0x0, -0x28(%rbp)
movl -0x28(%rbp), %eax
cmpl -0xc(%rbp), %eax
jge 0xb17b3
movq -0xe0(%... | /igormironchik[P]qtmwidgets/src/datetimepicker.cpp |
QtMWidgets::DateTimePicker::DateTimePicker(QDateTime const&, QWidget*) | DateTimePicker::DateTimePicker( const QDateTime & dt, QWidget * parent )
: QWidget( parent )
, d( new DateTimePickerPrivate( this, QMetaType::QDateTime ) )
{
setSizePolicy( QSizePolicy( QSizePolicy::Fixed,
QSizePolicy::Fixed ) );
setDateTime( dt.isValid() ? dt : DATETIMEPICKER_DATETIME_MIN );
connect(... | pushq %rbp
movq %rsp, %rbp
subq $0x100, %rsp # imm = 0x100
movq %rdi, -0x8(%rbp)
movq %rsi, -0x10(%rbp)
movq %rdx, -0x18(%rbp)
movq -0x8(%rbp), %rax
movq %rax, -0xd8(%rbp)
movq -0x18(%rbp), %rax
movq %rax, -0xe0(%rbp)
leaq -0x1c(%rbp), %rdi
callq 0x93fd0
movq -0xe0(%rbp), %rsi
movq -0xd8(%rbp), %rdi
movl -0x... | /igormironchik[P]qtmwidgets/src/datetimepicker.cpp |
QtMWidgets::ScrollerPrivate::ScrollerPrivate(QtMWidgets::Scroller*, QObject*) | ScrollerPrivate( Scroller * parent, QObject * t )
: q( parent )
, target( t )
, minVelocity( 0 )
, maxVelocity( 0 )
, startDragDistance( 0 )
, scrollingCurve( QEasingCurve::OutCirc )
, scrollTime( 3000 )
, xVelocity( 0.0 )
, yVelocity( 0.0 )
, mousePressed( false )
, maxPause( 300 )
... | pushq %rbp
movq %rsp, %rbp
subq $0x40, %rsp
movq %rdi, -0x8(%rbp)
movq %rsi, -0x10(%rbp)
movq %rdx, -0x18(%rbp)
movq -0x8(%rbp), %rdi
movq %rdi, -0x30(%rbp)
movq -0x10(%rbp), %rax
movq %rax, (%rdi)
movq -0x18(%rbp), %rax
movq %rax, 0x8(%rdi)
movl $0x0, 0x10(%rdi)
movl $0x0, 0x14(%rdi)
movl $0x0, 0x18(%rdi)
addq $0x20, ... | /igormironchik[P]qtmwidgets/src/scroller.cpp |
QtMWidgets::NavigationArrow::mouseReleaseEvent(QMouseEvent*) | void
NavigationArrow::mouseReleaseEvent( QMouseEvent * e )
{
if( e->button() == Qt::LeftButton )
{
if( d->leftButtonPressed && rect().contains( e->pos() ) )
emit clicked();
d->leftButtonPressed = false;
e->accept();
}
else
e->ignore();
} | pushq %rbp
movq %rsp, %rbp
subq $0x40, %rsp
movq %rdi, -0x8(%rbp)
movq %rsi, -0x10(%rbp)
movq -0x8(%rbp), %rax
movq %rax, -0x30(%rbp)
movq -0x10(%rbp), %rdi
callq 0xa8f70
cmpl $0x1, %eax
jne 0xba47f
movq -0x30(%rbp), %rdi
addq $0x28, %rdi
callq 0xba560
movq %rax, %rcx
xorl %eax, %eax
testb $0x1, 0x38(%rcx)
movb %al, -0... | /igormironchik[P]qtmwidgets/src/navigationarrow.cpp |
QtMWidgets::TextLabel::setMargin(int) | void
TextLabel::setMargin( int margin )
{
if( d->margin == margin )
return;
d->margin = margin;
const QMargins margins = contentsMargins();
d->staticText.setTextWidth( width() - margins.left() -
margins.right() - 2 * frameWidth() - 2 * d->margin );
update();
} | pushq %rbp
movq %rsp, %rbp
subq $0x50, %rsp
movq %rdi, -0x8(%rbp)
movl %esi, -0xc(%rbp)
movq -0x8(%rbp), %rdi
movq %rdi, -0x28(%rbp)
addq $0x28, %rdi
callq 0xbc050
movl 0x10(%rax), %eax
cmpl -0xc(%rbp), %eax
jne 0xbb16d
jmp 0xbb223
movq -0x28(%rbp), %rdi
movl -0xc(%rbp), %eax
movl %eax, -0x48(%rbp)
addq $0x28, %rdi
cal... | /igormironchik[P]qtmwidgets/src/textlabel.cpp |
QtMWidgets::TextLabel::heightForWidth(int) const | int
TextLabel::heightForWidth( int w ) const
{
if( text().isEmpty() )
return 2 * frameWidth();
const QMargins margins = contentsMargins();
const qreal width = w - 2 * frameWidth() - margins.left() -
margins.right() - 2 * d->margin;
QTextDocument doc;
doc.setHtml( d->staticText.text() );
doc.se... | pushq %rbp
movq %rsp, %rbp
subq $0x120, %rsp # imm = 0x120
movq %rdi, -0x10(%rbp)
movl %esi, -0x14(%rbp)
movq -0x10(%rbp), %rsi
movq %rsi, -0xc0(%rbp)
leaq -0x30(%rbp), %rdi
movq %rdi, -0xb8(%rbp)
callq 0xbaf60
movq -0xb8(%rbp), %rdi
callq 0xbc0f0
movb %al, -0xa9(%rbp)
jmp 0xbb331
leaq -0x30(%rbp), %rdi
call... | /igormironchik[P]qtmwidgets/src/textlabel.cpp |
QtMWidgets::TextLabel::minimumSizeHint() const | QSize
TextLabel::minimumSizeHint() const
{
if( text().isEmpty() )
return QSize( 2 * frameWidth(), 2 * frameWidth() );
const QMargins margins = contentsMargins();
QTextDocument doc;
doc.setHtml( d->staticText.text() );
doc.setDefaultTextOption( d->staticText.textOption() );
doc.setTextWidth( fontMet... | pushq %rbp
movq %rsp, %rbp
subq $0x110, %rsp # imm = 0x110
movq %rdi, -0x10(%rbp)
movq -0x10(%rbp), %rsi
movq %rsi, -0xb8(%rbp)
leaq -0x28(%rbp), %rdi
movq %rdi, -0xb0(%rbp)
callq 0xbaf60
movq -0xb0(%rbp), %rdi
callq 0xbc0f0
movb %al, -0xa5(%rbp)
jmp 0xbb64e
leaq -0x28(%rbp), %rdi
callq 0x9c410
movb -0xa5(%r... | /igormironchik[P]qtmwidgets/src/textlabel.cpp |
QtMWidgets::TableViewCellLayout::heightForWidth(int) const | int
TableViewCellLayout::heightForWidth( int w ) const
{
const QSize imageSize = imageLabel->sizeHint();
const QSize accessorySize = accessoryWidget->sizeHint();
const QMargins m = contentsMargins();
const int textWidth = qMax( 10,
w - imageSize.width() - accessorySize.width() );
int height = textLab... | pushq %rbp
movq %rsp, %rbp
subq $0x70, %rsp
movq %rdi, -0x8(%rbp)
movl %esi, -0xc(%rbp)
movq -0x8(%rbp), %rax
movq %rax, -0x68(%rbp)
movq 0x20(%rax), %rdi
movq (%rdi), %rax
callq *0x70(%rax)
movq %rax, %rcx
movq -0x68(%rbp), %rax
movq %rcx, -0x14(%rbp)
movq 0x38(%rax), %rdi
movq (%rdi), %rax
callq *0x70(%rax)
movq -0x6... | /igormironchik[P]qtmwidgets/src/tableview.cpp |
QtMWidgets::TableView::setHighlightCellOnClick(bool) | void
TableView::setHighlightCellOnClick( bool on )
{
TableViewPrivate * d = d_func();
if( d->highlightCellOnClick != on )
{
d->highlightCellOnClick = on;
foreach( TableViewSection * sect, d->sections )
sect->setHighlightCellOnClick( on );
}
} | pushq %rbp
movq %rsp, %rbp
subq $0x80, %rsp
movb %sil, %al
movq %rdi, -0x8(%rbp)
andb $0x1, %al
movb %al, -0x9(%rbp)
movq -0x8(%rbp), %rdi
callq 0xc0670
movq %rax, -0x18(%rbp)
movq -0x18(%rbp), %rax
movb 0xe8(%rax), %al
andb $0x1, %al
movzbl %al, %eax
movb -0x9(%rbp), %cl
andb $0x1, %cl
movzbl %cl, %ecx
cmpl %ecx, %eax... | /igormironchik[P]qtmwidgets/src/tableview.cpp |
QtMWidgets::TableViewSectionPrivate::TableViewSectionPrivate(QtMWidgets::TableViewSection*) | TableViewSectionPrivate( TableViewSection * parent )
: q( parent )
, header( 0 )
, footer( 0 )
, layout( 0 )
, highlightCellOnClick( false )
{
} | pushq %rbp
movq %rsp, %rbp
subq $0x20, %rsp
movq %rdi, -0x8(%rbp)
movq %rsi, -0x10(%rbp)
movq -0x8(%rbp), %rdi
movq %rdi, -0x18(%rbp)
leaq 0x76309(%rip), %rax # 0x1364a8
addq $0x10, %rax
movq %rax, (%rdi)
movq -0x10(%rbp), %rax
movq %rax, 0x8(%rdi)
movq $0x0, 0x10(%rdi)
movq $0x0, 0x18(%rdi)
addq $0x20, %rdi
callq ... | /igormironchik[P]qtmwidgets/src/private/tableview_p.hpp |
QtMWidgets::MessageBox::_q_clicked() | void
MessageBox::_q_clicked()
{
d->clickedButton = qobject_cast< QAbstractButton* > ( sender() );
ButtonRole role = d->buttonsMap[ d->clickedButton ];
switch( role )
{
case AcceptRole :
accept();
break;
case RejectRole :
reject();
break;
default :
break;
}
emit butto... | pushq %rbp
movq %rsp, %rbp
subq $0x30, %rsp
movq %rdi, -0x8(%rbp)
movq -0x8(%rbp), %rdi
movq %rdi, -0x30(%rbp)
callq 0x92ed0
movq %rax, %rdi
callq 0xc7d10
movq -0x30(%rbp), %rdi
movq %rax, -0x28(%rbp)
addq $0x28, %rdi
movq %rdi, -0x20(%rbp)
callq 0xc7890
movq -0x28(%rbp), %rcx
movq -0x20(%rbp), %rdi
movq %rcx, 0x60(%ra... | /igormironchik[P]qtmwidgets/src/messagebox.cpp |
QtMWidgets::MsgBoxTitle::MsgBoxTitle(QString const&, QWidget*) | explicit MsgBoxTitle( const QString & title, QWidget * parent = 0 )
: QWidget( parent )
, d( new MsgBoxTitlePrivate( title, this ) )
{
d->init();
} | pushq %rbp
movq %rsp, %rbp
subq $0x50, %rsp
movq %rdi, -0x8(%rbp)
movq %rsi, -0x10(%rbp)
movq %rdx, -0x18(%rbp)
movq -0x8(%rbp), %rax
movq %rax, -0x48(%rbp)
movq -0x18(%rbp), %rax
movq %rax, -0x50(%rbp)
leaq -0x1c(%rbp), %rdi
callq 0x93fd0
movq -0x50(%rbp), %rsi
movq -0x48(%rbp), %rdi
movl -0x1c(%rbp), %edx
callq 0x92c... | /igormironchik[P]qtmwidgets/src/messagebox.cpp |
QtMWidgets::MsgBoxTitle::paintEvent(QPaintEvent*) | void paintEvent( QPaintEvent * ) override
{
QPainter p( this );
p.setPen( palette().color( QPalette::WindowText ) );
p.drawText( rect().marginsRemoved( QMargins( d->margin, 0,
d->margin, 0 ) ),
d->preparedTitle, QTextOption( Qt::AlignLeft | Qt::AlignVCenter ) );
} | pushq %rbp
movq %rsp, %rbp
subq $0xd0, %rsp
movq %rdi, -0x8(%rbp)
movq %rsi, -0x10(%rbp)
movq -0x8(%rbp), %rsi
movq %rsi, -0xa8(%rbp)
addq $0x10, %rsi
leaq -0x18(%rbp), %rdi
callq 0x938f0
movq -0xa8(%rbp), %rdi
callq 0x92e50
movq %rax, -0xa0(%rbp)
jmp 0xc7ec0
movq -0xa0(%rbp), %rdi
xorl %esi, %esi
callq 0x94cf0
movq %r... | /igormironchik[P]qtmwidgets/src/messagebox.cpp |
QtMWidgets::lighterColor(QColor const&, int) | QColor
lighterColor( const QColor & c, int b )
{
if( b <= 0 )
return c;
int h = 0;
int s = 0;
int v = 0;
int a = 0;
QColor hsv = c.toHsv();
hsv.getHsv( &h, &s, &v, &a );
v += b;
if( v > 255 )
{
s -= v - 255;
if( s < 0 ) s = 0;
v = 255;
}
hsv.setHsv( h, s, v, a );
... | pushq %rbp
movq %rsp, %rbp
subq $0x70, %rsp
movq %rdi, -0x18(%rbp)
movl %esi, -0x1c(%rbp)
cmpl $0x0, -0x1c(%rbp)
jg 0xce7ed
movq -0x18(%rbp), %rax
movq (%rax), %rcx
movq %rcx, -0x10(%rbp)
movq 0x8(%rax), %rax
movq %rax, -0x8(%rbp)
jmp 0xce8cc
movl $0x0, -0x20(%rbp)
movl $0x0, -0x24(%rbp)
movl $0x0, -0x28(%rbp)
movl $0x... | /igormironchik[P]qtmwidgets/src/color.cpp |
QtMWidgets::darkerColor(QColor const&, int) | QColor
darkerColor( const QColor & c, int b )
{
if( b <= 0 )
return c;
int h = 0;
int s = 0;
int v = 0;
int a = 0;
QColor hsv = c.toHsv();
hsv.getHsv( &h, &s, &v, &a );
v -= b;
if( v < 0 )
v = 0;
hsv.setHsv( h, s, v, a );
return hsv.convertTo( c.spec() );
} | pushq %rbp
movq %rsp, %rbp
subq $0x70, %rsp
movq %rdi, -0x18(%rbp)
movl %esi, -0x1c(%rbp)
cmpl $0x0, -0x1c(%rbp)
jg 0xce90d
movq -0x18(%rbp), %rax
movq (%rax), %rcx
movq %rcx, -0x10(%rbp)
movq 0x8(%rax), %rax
movq %rax, -0x8(%rbp)
jmp 0xce9cd
movl $0x0, -0x20(%rbp)
movl $0x0, -0x24(%rbp)
movl $0x0, -0x28(%rbp)
movl $0x... | /igormironchik[P]qtmwidgets/src/color.cpp |
QtMWidgets::PageControlPrivate::init() | void
PageControlPrivate::init()
{
QStyleOption opt;
opt.initFrom( q );
currentPageIndicatorColor = opt.palette.color( QPalette::Highlight );
pageIndicatorColor = lighterColor( currentPageIndicatorColor, 75 );
radius = FingerGeometry::width() * 0.3 / 2;
smallRadius = radius * 0.75;
buttonSize = r... | pushq %rbp
movq %rsp, %rbp
subq $0xb0, %rsp
movq %rdi, -0x8(%rbp)
movq -0x8(%rbp), %rax
movq %rax, -0x88(%rbp)
leaq -0x48(%rbp), %rdi
movq %rdi, -0x80(%rbp)
movl $0x1, %esi
xorl %edx, %edx
callq 0x93b30
movq -0x88(%rbp), %rax
movq -0x80(%rbp), %rdi
movq (%rax), %rsi
callq 0x92160
jmp 0xcea33
leaq -0x20(%rbp), %rdi
movl... | /igormironchik[P]qtmwidgets/src/pagecontrol.cpp |
QtMWidgets::PageViewPrivate::movePages() | void
PageViewPrivate::movePages()
{
const int index = control->currentIndex();
if( index != 0 )
{
const QPoint p = viewport->rect().topLeft() -
QPoint( viewport->width(), 0 ) + QPoint( pagesOffset, 0 );
pages.at( index - 1 )->move( p );
}
if( index < control->count() - 1 )
{
const QPoin... | pushq %rbp
movq %rsp, %rbp
subq $0xc0, %rsp
movq %rdi, -0x8(%rbp)
movq -0x8(%rbp), %rax
movq %rax, -0xb0(%rbp)
movq 0x10(%rax), %rdi
callq 0xcef90
movl %eax, -0xc(%rbp)
cmpl $0x0, -0xc(%rbp)
je 0xdac74
movq -0xb0(%rbp), %rax
movq 0x8(%rax), %rdi
callq 0xa6830
movq %rax, -0x34(%rbp)
movq %rdx, -0x2c(%rbp)
leaq -0x34(%rb... | /igormironchik[P]qtmwidgets/src/pageview.cpp |
QtMWidgets::PageView::PageView(QWidget*) | PageView::PageView( QWidget * parent )
: QFrame( parent )
, d( new PageViewPrivate( this ) )
{
connect( d->control, &PageControl::currentChanged,
this, &PageView::_q_currentIndexChanged );
connect( d->normalizeAnimation, &QVariantAnimation::valueChanged,
this, &PageView::_q_normalizePageAnimation );
... | pushq %rbp
movq %rsp, %rbp
subq $0x120, %rsp # imm = 0x120
movq %rdi, -0x8(%rbp)
movq %rsi, -0x10(%rbp)
movq -0x8(%rbp), %rax
movq %rax, -0xd8(%rbp)
movq -0x10(%rbp), %rax
movq %rax, -0xe0(%rbp)
leaq -0x14(%rbp), %rdi
callq 0x93fd0
movq -0xe0(%rbp), %rsi
movq -0xd8(%rbp), %rdi
movl -0x14(%rbp), %edx
callq 0x... | /igormironchik[P]qtmwidgets/src/pageview.cpp |
QtMWidgets::PageView::indexOf(QWidget*) const | int
PageView::indexOf( QWidget * widget ) const
{
for( int i = 0; i < d->pages.count(); ++i )
{
if( d->pages.at( i ) == widget )
return i;
}
return -1;
} | pushq %rbp
movq %rsp, %rbp
subq $0x30, %rsp
movq %rdi, -0x10(%rbp)
movq %rsi, -0x18(%rbp)
movq -0x10(%rbp), %rax
movq %rax, -0x28(%rbp)
movl $0x0, -0x1c(%rbp)
movq -0x28(%rbp), %rdi
movslq -0x1c(%rbp), %rax
movq %rax, -0x30(%rbp)
addq $0x28, %rdi
callq 0xdc2c0
movq %rax, %rdi
addq $0x20, %rdi
callq 0xdc010
movq %rax, %... | /igormironchik[P]qtmwidgets/src/pageview.cpp |
QtMWidgets::PageView::removeWidget(QWidget*) | void
PageView::removeWidget( QWidget * widget )
{
const int index = indexOf( widget );
if( index != -1 )
{
d->pages.removeAt( index );
widget->setParent( 0 );
widget->hide();
const bool changePage = index == currentIndex();
d->control->setCount( d->pages.count() );
if( changePage ... | pushq %rbp
movq %rsp, %rbp
subq $0x40, %rsp
movq %rdi, -0x8(%rbp)
movq %rsi, -0x10(%rbp)
movq -0x8(%rbp), %rdi
movq %rdi, -0x20(%rbp)
movq -0x10(%rbp), %rsi
callq 0xdb980
movl %eax, -0x14(%rbp)
cmpl $-0x1, -0x14(%rbp)
je 0xdbb43
movq -0x20(%rbp), %rdi
addq $0x28, %rdi
callq 0xdc2c0
movq %rax, %rdi
addq $0x20, %rdi
movs... | /igormironchik[P]qtmwidgets/src/pageview.cpp |
QtMWidgets::PageView::mouseMoveEvent(QMouseEvent*) | void
PageView::mouseMoveEvent( QMouseEvent * e )
{
if( d->leftButtonPressed )
{
const int delta = ( e->pos() - d->pos ).x();
d->pos = e->pos();
if( delta > 0 )
d->movePageRight( delta );
else if( delta < 0 )
d->movePageLeft( qAbs( delta ) );
}
e->ignore();
} | pushq %rbp
movq %rsp, %rbp
subq $0x40, %rsp
movq %rdi, -0x8(%rbp)
movq %rsi, -0x10(%rbp)
movq -0x8(%rbp), %rdi
movq %rdi, -0x38(%rbp)
addq $0x28, %rdi
callq 0xdc2c0
testb $0x1, 0x3c(%rax)
je 0xdbf16
movq -0x10(%rbp), %rdi
callq 0xa8f90
movq -0x38(%rbp), %rdi
movq %rax, -0x24(%rbp)
addq $0x28, %rdi
callq 0xdc2c0
movq %r... | /igormironchik[P]qtmwidgets/src/pageview.cpp |
QtMWidgets::ToolBarLayout::setGeometry(QRect const&) | void
ToolBarLayout::setGeometry( const QRect & rect )
{
QLayout::setGeometry( rect );
const QMargins m = contentsMargins();
const QRect r = rect.adjusted( m.left(), m.top(), -m.right(), -m.bottom() );
int x = r.x();
int y = r.y();
if( !buttons.isEmpty() && left && right )
{
if( offset < 0 )
... | pushq %rbp
movq %rsp, %rbp
subq $0x250, %rsp # imm = 0x250
movq %rdi, -0x8(%rbp)
movq %rsi, -0x10(%rbp)
movq -0x8(%rbp), %rdi
movq %rdi, -0x118(%rbp)
movq -0x10(%rbp), %rsi
callq 0x93a10
movq -0x118(%rbp), %rdi
callq 0x93980
movq %rax, -0x20(%rbp)
movq %rdx, -0x18(%rbp)
movq -0x10(%rbp), %rax
movq %rax, -0x1... | /igormironchik[P]qtmwidgets/src/toolbar.cpp |
non-virtual thunk to QtMWidgets::ToolBarLayout::setGeometry(QRect const&) | void
ToolBarLayout::setGeometry( const QRect & rect )
{
QLayout::setGeometry( rect );
const QMargins m = contentsMargins();
const QRect r = rect.adjusted( m.left(), m.top(), -m.right(), -m.bottom() );
int x = r.x();
int y = r.y();
if( !buttons.isEmpty() && left && right )
{
if( offset < 0 )
... | pushq %rbp
movq %rsp, %rbp
movq %rdi, -0x8(%rbp)
movq %rsi, -0x10(%rbp)
movq -0x8(%rbp), %rdi
addq $-0x10, %rdi
movq -0x10(%rbp), %rsi
popq %rbp
jmp 0xdf180
nop
| /igormironchik[P]qtmwidgets/src/toolbar.cpp |
QtMWidgets::ToolBarLayout::takeAt(int) | QLayoutItem *
ToolBarLayout::takeAt( int index )
{
if( index >= 0 && index < buttons.size() + 2 )
{
if( index == 0 )
{
QLayoutItem * item = left;
left = 0;
return item;
}
else if( index == buttons.size() + 1 )
{
QLayoutItem * item = right;
right = 0;
return item;
}
els... | pushq %rbp
movq %rsp, %rbp
subq $0x50, %rsp
movq %rdi, -0x10(%rbp)
movl %esi, -0x14(%rbp)
movq -0x10(%rbp), %rax
movq %rax, -0x38(%rbp)
cmpl $0x0, -0x14(%rbp)
jl 0xdffa5
movq -0x38(%rbp), %rdi
movslq -0x14(%rbp), %rax
movq %rax, -0x40(%rbp)
addq $0x30, %rdi
callq 0xe19a0
movq %rax, %rcx
movq -0x40(%rbp), %rax
addq $0x2... | /igormironchik[P]qtmwidgets/src/toolbar.cpp |
QtMWidgets::ToolBarLayout::minimumSize() const | QSize
ToolBarLayout::minimumSize() const
{
int width = 0;
int height = 0;
const QSize arrowSize = left->sizeHint();
QSize buttonSize;
if( !buttons.isEmpty() )
buttonSize = buttons.at( 0 )->sizeHint();
else
buttonSize = QSize( FingerGeometry::width(),
FingerGeometry::height() );
const Q... | pushq %rbp
movq %rsp, %rbp
subq $0x90, %rsp
movq %rdi, -0x10(%rbp)
movq -0x10(%rbp), %rax
movq %rax, -0x60(%rbp)
movl $0x0, -0x14(%rbp)
movl $0x0, -0x18(%rbp)
movq 0x20(%rax), %rdi
movq (%rdi), %rax
callq *0x10(%rax)
movq %rax, -0x20(%rbp)
leaq -0x28(%rbp), %rdi
callq 0xa48c0
movq -0x60(%rbp), %rdi
addq $0x30, %rdi
cal... | /igormironchik[P]qtmwidgets/src/toolbar.cpp |
non-virtual thunk to QtMWidgets::ToolBarLayout::minimumSize() const | QSize
ToolBarLayout::minimumSize() const
{
int width = 0;
int height = 0;
const QSize arrowSize = left->sizeHint();
QSize buttonSize;
if( !buttons.isEmpty() )
buttonSize = buttons.at( 0 )->sizeHint();
else
buttonSize = QSize( FingerGeometry::width(),
FingerGeometry::height() );
const Q... | pushq %rbp
movq %rsp, %rbp
subq $0x10, %rsp
movq %rdi, -0x10(%rbp)
movq -0x10(%rbp), %rdi
addq $-0x10, %rdi
callq 0xdfff0
movq %rax, -0x8(%rbp)
movq -0x8(%rbp), %rax
addq $0x10, %rsp
popq %rbp
retq
nopw (%rax,%rax)
| /igormironchik[P]qtmwidgets/src/toolbar.cpp |
QtMWidgets::Switch::mouseReleaseEvent(QMouseEvent*) | void
Switch::mouseReleaseEvent( QMouseEvent * event )
{
if( event->button() == Qt::LeftButton )
{
event->accept();
d->leftMouseButtonPressed = false;
const int distance = rect().width() - d->radius * 2;
if( d->mouseMoveDelta <= FingerGeometry::touchBounce() )
{
switch( d->state )
{
... | pushq %rbp
movq %rsp, %rbp
subq $0x70, %rsp
movq %rdi, -0x8(%rbp)
movq %rsi, -0x10(%rbp)
movq -0x8(%rbp), %rax
movq %rax, -0x50(%rbp)
movq -0x10(%rbp), %rdi
callq 0xa8f70
cmpl $0x1, %eax
jne 0xe4f05
movq -0x10(%rbp), %rdi
callq 0xa8fd0
movq -0x50(%rbp), %rdi
addq $0x28, %rdi
callq 0xe51f0
movq -0x50(%rbp), %rdi
movb $0... | /igormironchik[P]qtmwidgets/src/switch.cpp |
QtMWidgets::Switch::mouseMoveEvent(QMouseEvent*) | void
Switch::mouseMoveEvent( QMouseEvent * event )
{
if( d->leftMouseButtonPressed )
{
const int delta = event->pos().x() - d->mousePos.x();
d->offset += delta;
d->mouseMoveDelta += qAbs( delta );
d->mousePos = event->pos();
if( d->offset < 0 )
d->offset = 0;
else if( d->offset > rect().wi... | pushq %rbp
movq %rsp, %rbp
subq $0x70, %rsp
movq %rdi, -0x8(%rbp)
movq %rsi, -0x10(%rbp)
movq -0x8(%rbp), %rdi
movq %rdi, -0x50(%rbp)
addq $0x28, %rdi
callq 0xe51f0
testb $0x1, 0x60(%rax)
je 0xe50c2
movq -0x10(%rbp), %rdi
callq 0xa8f90
movq %rax, -0x1c(%rbp)
leaq -0x1c(%rbp), %rdi
callq 0xa7000
movq -0x50(%rbp), %rdi
m... | /igormironchik[P]qtmwidgets/src/switch.cpp |
QtMWidgets::ScrollArea::ScrollArea(QWidget*) | ScrollArea::ScrollArea( QWidget * parent )
: AbstractScrollArea( new ScrollAreaPrivate( this ), parent )
{
ScrollAreaPrivate * d = d_func();
d->viewport->setBackgroundRole( QPalette::NoRole );
} | pushq %rbp
movq %rsp, %rbp
subq $0x40, %rsp
movq %rdi, -0x8(%rbp)
movq %rsi, -0x10(%rbp)
movq -0x8(%rbp), %rax
movq %rax, -0x38(%rbp)
leaq 0x3f2b1(%rip), %rcx # 0x133aa0
movq %rcx, %rdx
addq $0x10, %rdx
movq %rdx, (%rax)
addq $0x1d8, %rcx # imm = 0x1D8
movq %rcx, 0x10(%rax)
movl $0xc0, %edi
callq 0x93010... | /igormironchik[P]qtmwidgets/src/scrollarea.cpp |
QtMWidgets::ScrollArea::setWidget(QWidget*) | void
ScrollArea::setWidget( QWidget * widget )
{
ScrollAreaPrivate * d = d_func();
if( widget == d->widget || !widget )
return;
d->horIndicator->setParent( 0 );
d->vertIndicator->setParent( 0 );
d->horBlur->setParent( 0 );
d->vertBlur->setParent( 0 );
delete d->widget;
d->widget = 0;
if( widg... | pushq %rbp
movq %rsp, %rbp
subq $0x60, %rsp
movq %rdi, -0x8(%rbp)
movq %rsi, -0x10(%rbp)
movq -0x8(%rbp), %rdi
movq %rdi, -0x28(%rbp)
callq 0xf5b90
movq %rax, -0x18(%rbp)
movq -0x10(%rbp), %rdi
movq -0x18(%rbp), %rsi
addq $0xa8, %rsi
callq 0xf5bd0
testb $0x1, %al
jne 0xf4a60
cmpq $0x0, -0x10(%rbp)
jne 0xf4a65
jmp 0xf4c... | /igormironchik[P]qtmwidgets/src/scrollarea.cpp |
QtMWidgets::ScrollArea::takeWidget() | QWidget *
ScrollArea::takeWidget()
{
ScrollAreaPrivate * d = d_func();
QWidget * w = d->widget;
w->removeEventFilter( this );
d->horIndicator->setParent( d->viewport );
d->vertIndicator->setParent( d->viewport );
d->horBlur->setParent( d->viewport );
d->vertBlur->setParent( d->viewport );
d->widget = ... | pushq %rbp
movq %rsp, %rbp
subq $0x20, %rsp
movq %rdi, -0x8(%rbp)
movq -0x8(%rbp), %rdi
movq %rdi, -0x20(%rbp)
callq 0xf5b90
movq %rax, -0x10(%rbp)
movq -0x10(%rbp), %rdi
addq $0xa8, %rdi
callq 0xf5a80
movq -0x20(%rbp), %rsi
movq %rax, -0x18(%rbp)
movq -0x18(%rbp), %rdi
callq 0x93a00
movq -0x10(%rbp), %rax
movq 0x58(%r... | /igormironchik[P]qtmwidgets/src/scrollarea.cpp |
QtMWidgets::ScrollArea::ensureWidgetVisible(QWidget*, int, int) | void
ScrollArea::ensureWidgetVisible( QWidget * childWidget,
int xmargin, int ymargin )
{
ScrollAreaPrivate * d = d_func();
if( !d->widget->isAncestorOf( childWidget ) )
return;
const QRect microFocus =
childWidget->inputMethodQuery( Qt::ImCursorRectangle ).toRect();
const QRect defaultMicroFocus ... | pushq %rbp
movq %rsp, %rbp
subq $0x1a0, %rsp # imm = 0x1A0
movq %rdi, -0x8(%rbp)
movq %rsi, -0x10(%rbp)
movl %edx, -0x14(%rbp)
movl %ecx, -0x18(%rbp)
movq -0x8(%rbp), %rdi
movq %rdi, -0x120(%rbp)
callq 0xf5b90
movq %rax, -0x20(%rbp)
movq -0x20(%rbp), %rdi
addq $0xa8, %rdi
callq 0xf59c0
movq %rax, %rdi
movq -... | /igormironchik[P]qtmwidgets/src/scrollarea.cpp |
QtMWidgets::ScrollArea::ensureVisible(int, int, int, int) | void
ScrollArea::ensureVisible( int x, int y, int xmargin, int ymargin )
{
ScrollAreaPrivate * d = d_func();
int logicalX = QStyle::visualPos( layoutDirection(), d->viewport->rect(),
QPoint( x, y ) ).x();
int posX = 0;
int posY = 0;
if( logicalX - xmargin < topLeftPointShownArea().x() )
posX = q... | pushq %rbp
movq %rsp, %rbp
subq $0xa0, %rsp
movq %rdi, -0x8(%rbp)
movl %esi, -0xc(%rbp)
movl %edx, -0x10(%rbp)
movl %ecx, -0x14(%rbp)
movl %r8d, -0x18(%rbp)
movq -0x8(%rbp), %rdi
movq %rdi, -0x80(%rbp)
callq 0xf5b90
movq -0x80(%rbp), %rdi
movq %rax, -0x20(%rbp)
callq 0x928d0
movl %eax, -0x84(%rbp)
movq -0x20(%rbp), %ra... | /igormironchik[P]qtmwidgets/src/scrollarea.cpp |
QtMWidgets::ScrollArea::sizeHint() const | QSize
ScrollArea::sizeHint() const
{
const ScrollAreaPrivate * d = d_func();
QSize sz( 0, 0 );
const int h = fontMetrics().height();
if( d->widget )
sz += ( d->resizable ? d->widget->sizeHint() : d->widget->size() );
else
sz += QSize( 12 * h, 8 * h );
const QSize marginsSize = QSize( d->left +... | pushq %rbp
movq %rsp, %rbp
subq $0x90, %rsp
movq %rdi, -0x10(%rbp)
movq -0x10(%rbp), %rdi
movq %rdi, -0x80(%rbp)
callq 0xf5bb0
movq %rax, -0x18(%rbp)
leaq -0x20(%rbp), %rdi
xorl %edx, %edx
movl %edx, %esi
callq 0x94e20
movq -0x80(%rbp), %rsi
leaq -0x30(%rbp), %rdi
movq %rdi, -0x78(%rbp)
callq 0xaec90
movq -0x78(%rbp), ... | /igormironchik[P]qtmwidgets/src/scrollarea.cpp |
QtMWidgets::qSmartMinSize(QSize const&, QSize const&, QSize const&, QSize const&, QSizePolicy const&) | QSize qSmartMinSize( const QSize & sizeHint, const QSize & minSizeHint,
const QSize & minSize, const QSize & maxSize,
const QSizePolicy & sizePolicy )
{
QSize s( 0, 0 );
if( sizePolicy.horizontalPolicy() != QSizePolicy::Ignored )
{
if( sizePolicy.horizontalPolicy() & QSizePolicy::ShrinkFlag )
s.setW... | pushq %rbp
movq %rsp, %rbp
subq $0x60, %rsp
movq %rdi, -0x10(%rbp)
movq %rsi, -0x18(%rbp)
movq %rdx, -0x20(%rbp)
movq %rcx, -0x28(%rbp)
movq %r8, -0x30(%rbp)
leaq -0x38(%rbp), %rdi
xorl %edx, %edx
movl %edx, %esi
callq 0x94e20
movq -0x30(%rbp), %rdi
callq 0xf63d0
cmpl $0xd, %eax
je 0xf6000
movq -0x30(%rbp), %rdi
callq ... | /igormironchik[P]qtmwidgets/src/private/layoutengine.cpp |
QtMWidgets::Section::maxWidth(QStyleOption const&) const | int
Section::maxWidth( const QStyleOption & opt ) const
{
int width = opt.fontMetrics.boundingRect( value(
DATETIMEPICKER_DATETIME_MAX ) ).width();
width += opt.fontMetrics.averageCharWidth() / 3;
switch( type )
{
case DaySectionShort :
{
width += opt.fontMetrics.boundingRect( maxShortDay( op... | pushq %rbp
movq %rsp, %rbp
subq $0x1c0, %rsp # imm = 0x1C0
movq %rdi, -0x8(%rbp)
movq %rsi, -0x10(%rbp)
movq -0x8(%rbp), %rax
movq %rax, -0x118(%rbp)
movq -0x10(%rbp), %rax
addq $0x20, %rax
movq %rax, -0x120(%rbp)
leaq -0x50(%rbp), %rdi
movl $0x1f3f, %esi # imm = 0x1F3F
movl $0xc, %edx
movl $0x1f, ... | /igormironchik[P]qtmwidgets/src/private/datetimeparser.cpp |
QtMWidgets::maxShortDay(QStyleOption const&) | static inline QString
maxShortDay( const QStyleOption & opt )
{
int index = 1;
int width = 0;
for( int i = 1; i < 8; ++i )
{
const int tmpWidth = opt.fontMetrics.boundingRect(
QLocale::system().dayName( i, QLocale::ShortFormat ) + QLatin1Char( ' ' ) ).width();
if( tmpWidth > width )
{
in... | pushq %rbp
movq %rsp, %rbp
subq $0xc0, %rsp
movq %rdi, -0x90(%rbp)
movq %rdi, %rax
movq %rax, -0x88(%rbp)
movq %rdi, -0x8(%rbp)
movq %rsi, -0x10(%rbp)
movl $0x1, -0x14(%rbp)
movl $0x0, -0x18(%rbp)
movl $0x1, -0x1c(%rbp)
cmpl $0x8, -0x1c(%rbp)
jge 0xf715e
movq -0x10(%rbp), %rax
addq $0x20, %rax
movq %rax, -0xa0(%rbp)
le... | /igormironchik[P]qtmwidgets/src/private/datetimeparser.cpp |
QtMWidgets::maxLongDay(QStyleOption const&) | static inline QString
maxLongDay( const QStyleOption & opt )
{
int index = 1;
int width = 0;
for( int i = 1; i < 8; ++i )
{
const int tmpWidth = opt.fontMetrics.boundingRect(
QLocale::system().dayName( i ) + QLatin1Char( ' ' ) ).width();
if( tmpWidth > width )
{
index = i;
width = tm... | pushq %rbp
movq %rsp, %rbp
subq $0xc0, %rsp
movq %rdi, -0x90(%rbp)
movq %rdi, %rax
movq %rax, -0x88(%rbp)
movq %rdi, -0x8(%rbp)
movq %rsi, -0x10(%rbp)
movl $0x1, -0x14(%rbp)
movl $0x0, -0x18(%rbp)
movl $0x1, -0x1c(%rbp)
cmpl $0x8, -0x1c(%rbp)
jge 0xf734b
movq -0x10(%rbp), %rax
addq $0x20, %rax
movq %rax, -0xa0(%rbp)
le... | /igormironchik[P]qtmwidgets/src/private/datetimeparser.cpp |
QtMWidgets::maxShortMonth(QStyleOption const&) | static inline QString
maxShortMonth( const QStyleOption & opt )
{
int index = 1;
int width = 0;
for( int i = 1; i < 13; ++i )
{
const int tmpWidth = opt.fontMetrics.boundingRect(
QLocale::system().monthName( i, QLocale::ShortFormat ) + QLatin1Char( ' ' ) ).width();
if( tmpWidth > width )
{
... | pushq %rbp
movq %rsp, %rbp
subq $0xc0, %rsp
movq %rdi, -0x90(%rbp)
movq %rdi, %rax
movq %rax, -0x88(%rbp)
movq %rdi, -0x8(%rbp)
movq %rsi, -0x10(%rbp)
movl $0x1, -0x14(%rbp)
movl $0x0, -0x18(%rbp)
movl $0x1, -0x1c(%rbp)
cmpl $0xd, -0x1c(%rbp)
jge 0xf752e
movq -0x10(%rbp), %rax
addq $0x20, %rax
movq %rax, -0xa0(%rbp)
le... | /igormironchik[P]qtmwidgets/src/private/datetimeparser.cpp |
QtMWidgets::maxLongMonth(QStyleOption const&) | static inline QString
maxLongMonth( const QStyleOption & opt )
{
int index = 1;
int width = 0;
for( int i = 1; i < 13; ++i )
{
const int tmpWidth = opt.fontMetrics.boundingRect(
QLocale::system().monthName( i ) + QLatin1Char( ' ' ) ).width();
if( tmpWidth > width )
{
index = i;
width... | pushq %rbp
movq %rsp, %rbp
subq $0xc0, %rsp
movq %rdi, -0x90(%rbp)
movq %rdi, %rax
movq %rax, -0x88(%rbp)
movq %rdi, -0x8(%rbp)
movq %rsi, -0x10(%rbp)
movl $0x1, -0x14(%rbp)
movl $0x0, -0x18(%rbp)
movl $0x1, -0x1c(%rbp)
cmpl $0xd, -0x1c(%rbp)
jge 0xf771b
movq -0x10(%rbp), %rax
addq $0x20, %rax
movq %rax, -0xa0(%rbp)
le... | /igormironchik[P]qtmwidgets/src/private/datetimeparser.cpp |
QtMWidgets::DateTimeParser::parseFormat(QString const&) | bool
DateTimeParser::parseFormat( const QString & fmt )
{
if( fmt.isEmpty() )
return false;
if( fmt == format )
return true;
const int max = fmt.size();
int amPmSectIndex = -1;
int secondSectIndex = -1;
int minuteSectIndex = -1;
int hourSectIndex = -1;
int daySectIndex = -1;
int monthSec... | pushq %rbp
movq %rsp, %rbp
subq $0x390, %rsp # imm = 0x390
movq %rdi, -0x10(%rbp)
movq %rsi, -0x18(%rbp)
movq -0x10(%rbp), %rax
movq %rax, -0x310(%rbp)
movq -0x18(%rbp), %rdi
callq 0xbc0f0
testb $0x1, %al
jne 0xf8c0d
jmp 0xf8c16
movb $0x0, -0x1(%rbp)
jmp 0xf96a5
movq -0x310(%rbp), %rsi
movq -0x18(%rbp), %rdi... | /igormironchik[P]qtmwidgets/src/private/datetimeparser.cpp |
QtMWidgets::drawCylinder(QPainter*, QRect const&, QColor const&, bool, bool) | void
drawCylinder( QPainter * p, const QRect & r, const QColor & baseColor,
bool roundLeftCorner, bool roundRightCorner )
{
QLinearGradient firstVertLineGradient( QPointF( 0.0, 0.0 ),
QPointF( 0.0, 1.0 ) );
firstVertLineGradient.setCoordinateMode( QGradient::ObjectBoundingMode );
firstVertLineGradient.setC... | pushq %rbp
movq %rsp, %rbp
subq $0x460, %rsp # imm = 0x460
movb %r8b, %al
movq %rdi, -0x8(%rbp)
movq %rsi, -0x10(%rbp)
movq %rdx, -0x18(%rbp)
andb $0x1, %cl
movb %cl, -0x19(%rbp)
andb $0x1, %al
movb %al, -0x1a(%rbp)
leaq -0x88(%rbp), %rdi
movq %rdi, -0x2e8(%rbp)
xorps %xmm1, %xmm1
movsd %xmm1, -0x2f0(%rbp)
m... | /igormironchik[P]qtmwidgets/src/private/drawing.cpp |
QtMWidgets::drawSliderHandle(QPainter*, QRect const&, int, int, QColor const&, QColor const&) | void drawSliderHandle( QPainter * p, const QRect & r,
int xRadius, int yRadius, const QColor & borderColor,
const QColor & lightColor )
{
p->setPen( borderColor );
p->setBrush( lightColor );
p->drawRoundedRect( r, xRadius, yRadius );
QLinearGradient g( QPointF( 0.0, 0.0 ), QPointF( 0.0, 1.0 ) );
g.setC... | pushq %rbp
movq %rsp, %rbp
subq $0x190, %rsp # imm = 0x190
movq %rdi, -0x8(%rbp)
movq %rsi, -0x10(%rbp)
movl %edx, -0x14(%rbp)
movl %ecx, -0x18(%rbp)
movq %r8, -0x20(%rbp)
movq %r9, -0x28(%rbp)
movq -0x8(%rbp), %rdi
movq -0x20(%rbp), %rsi
callq 0x936b0
movq -0x8(%rbp), %rax
movq %rax, -0x130(%rbp)
movq -0x28... | /igormironchik[P]qtmwidgets/src/private/drawing.cpp |
QtMWidgets::MsgBoxButton::minimumSizeHint() const | QSize
MsgBoxButton::minimumSizeHint() const
{
const int margin = fontMetrics().height() / 3;
const QSize s = fontMetrics()
.boundingRect( QRect(), Qt::AlignCenter, d->text )
.marginsAdded( QMargins( margin, margin, margin, margin ) )
.size();
return QSize( qMax( s.width(), FingerGeometry::width() ),
qMax( ... | pushq %rbp
movq %rsp, %rbp
subq $0xd0, %rsp
movq %rdi, -0x10(%rbp)
movq -0x10(%rbp), %rsi
movq %rsi, -0xa8(%rbp)
leaq -0x20(%rbp), %rdi
movq %rdi, -0xa0(%rbp)
callq 0xaec90
movq -0xa0(%rbp), %rdi
callq 0x93b50
movl %eax, -0x94(%rbp)
jmp 0xfdbde
movl -0x94(%rbp), %eax
cltq
imulq $0x55555556, %rax, %rax # imm = 0x5555555... | /igormironchik[P]qtmwidgets/src/private/messageboxbutton.cpp |
QtMWidgets::MsgBoxButton::paintEvent(QPaintEvent*) | void
MsgBoxButton::paintEvent( QPaintEvent * )
{
QPainter p( this );
p.setPen( palette().color( QPalette::WindowText ) );
p.drawText( rect(), d->text, QTextOption( Qt::AlignCenter ) );
if( d->pressed )
{
QColor c = palette().color( QPalette::Highlight );
c.setAlpha( 75 );
p.setPen( Qt::NoPen );
p.setBr... | pushq %rbp
movq %rsp, %rbp
subq $0x100, %rsp # imm = 0x100
movq %rdi, -0x8(%rbp)
movq %rsi, -0x10(%rbp)
movq -0x8(%rbp), %rsi
movq %rsi, -0xb8(%rbp)
addq $0x10, %rsi
leaq -0x18(%rbp), %rdi
callq 0x938f0
movq -0xb8(%rbp), %rdi
callq 0x92e50
movq %rax, -0xb0(%rbp)
jmp 0xfde00
movq -0xb0(%rbp), %rdi
xorl %esi, ... | /igormironchik[P]qtmwidgets/src/private/messageboxbutton.cpp |
SHOPManagement::Helper::saveFileByLine(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char>> const&, std::vector<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char>>, std::allocator<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char>>>> const&... | bool Helper::saveFileByLine(const std::string &file_path, const std::vector<std::string> &t_data)
{
std::ofstream file_data(file_path);
if (!file_data.is_open())
{
std::cerr << file_path << " can't open!";
exit(EXIT_FAILURE);
}
for (auto line : t_dat... | pushq %rbp
movq %rsp, %rbp
subq $0x280, %rsp # imm = 0x280
movq %rdi, -0x8(%rbp)
movq %rsi, -0x10(%rbp)
movq -0x8(%rbp), %rsi
leaq -0x210(%rbp), %rdi
movq %rdi, -0x268(%rbp)
movl $0x10, %edx
callq 0x4540
movq -0x268(%rbp), %rdi
callq 0x4200
movb %al, -0x259(%rbp)
jmp 0x7e23
movb -0x259(%rbp), %al
testb $0x1,... | /yusufsefasezer[P]cpp-shop-management/src/Helper.cpp |
SHOPManagement::Manager::display() | void Manager::display()
{
std::cout << "*** " << this->className() << " Information ***" << std::endl;
std::cout << "First Name: " << this->getFirstName() << std::endl;
std::cout << "Last Name: " << this->getLastName() << std::endl;
std::cout << "Phone Number: " << this->getPhoneNumb... | pushq %rbp
movq %rsp, %rbp
subq $0x110, %rsp # imm = 0x110
movq %rdi, -0x8(%rbp)
movq -0x8(%rbp), %rax
movq %rax, -0xc0(%rbp)
movq 0x16047(%rip), %rdi # 0x1efb8
leaq 0xd48b(%rip), %rsi # 0x16403
callq 0x4290
movq -0xc0(%rbp), %rsi
movq %rax, -0xb8(%rbp)
movq (%rsi), %rax
movq 0x10(%rax), %rax
leaq -... | /yusufsefasezer[P]cpp-shop-management/src/Manager.cpp |
SHOPManagement::Person::editAddress() | void Person::editAddress()
{
if (this->v_adress_list.size() < 1)
{
Helper::m_message = "Please add an address.";
return;
}
int address_index = this->getAddressIndex();
std::string address_name = "";
std::string address_country = "";
st... | pushq %rbp
movq %rsp, %rbp
subq $0x100, %rsp # imm = 0x100
movq %rdi, -0x8(%rbp)
movq -0x8(%rbp), %rdi
movq %rdi, -0xd0(%rbp)
addq $0xb0, %rdi
callq 0x7090
cmpq $0x1, %rax
jae 0xa354
leaq 0x14f95(%rip), %rdi # 0x1f2d8
leaq 0xc1a3(%rip), %rsi # 0x164ed
callq 0x43c0
jmp 0xa59d
movq -0xd0(%rbp), %rdi
c... | /yusufsefasezer[P]cpp-shop-management/src/Person.cpp |
SHOPManagement::Person::changePhoneNumber() | void Person::changePhoneNumber()
{
std::string new_value;
std::cout << "Phone Number(" << this->getPhoneNumber() << "): ";
std::cin.ignore();
std::getline(std::cin, new_value);
if (!new_value.empty())
{
this->setPhoneNumber(new_value);
Helper:... | pushq %rbp
movq %rsp, %rbp
subq $0x70, %rsp
movq %rdi, -0x8(%rbp)
movq -0x8(%rbp), %rax
movq %rax, -0x68(%rbp)
leaq -0x28(%rbp), %rdi
callq 0x43d0
movq 0x14654(%rip), %rdi # 0x1efb8
leaq 0xbc4b(%rip), %rsi # 0x165b6
callq 0x4290
movq %rax, -0x60(%rbp)
jmp 0xa976
movq -0x68(%rbp), %rsi
leaq -0x58(%rbp), %rdi
ca... | /yusufsefasezer[P]cpp-shop-management/src/Person.cpp |
SHOPManagement::Shop::saveAddress() | void Shop::saveAddress()
{
std::vector<std::string> lines;
std::stringstream ss;
for (auto current : this->v_users)
{
Person *pPerson = dynamic_cast<Person *>(current);
for (auto current_address : pPerson->v_adress_list)
{
ss << c... | pushq %rbp
movq %rsp, %rbp
subq $0x370, %rsp # imm = 0x370
movq %rdi, -0x8(%rbp)
movq -0x8(%rbp), %rax
movq %rax, -0x2f8(%rbp)
leaq -0x20(%rbp), %rdi
callq 0x8460
leaq -0x1a8(%rbp), %rdi
callq 0x41d0
jmp 0xde81
movq -0x2f8(%rbp), %rax
addq $0x38, %rax
movq %rax, -0x1c0(%rbp)
movq -0x1c0(%rbp), %rdi
callq 0x1... | /yusufsefasezer[P]cpp-shop-management/src/Shop.cpp |
libcmudp_LTX_non_blocking_listen | extern attr_list
libcmudp_LTX_non_blocking_listen(CManager cm, CMtrans_services svc, transport_entry trans, attr_list listen_info)
{
udp_transport_data_ptr utd = trans->trans_data;
int int_port_num = 0;
u_short port_num;
attr_list listen_list;
unsigned int nl;
int one = 1;
SOCKET socket_fd;
... | pushq %rbp
pushq %r15
pushq %r14
pushq %r13
pushq %r12
pushq %rbx
subq $0x38, %rsp
movq %rcx, %r12
movq %rdx, %r13
movq %rsi, %rbx
movq %rdi, %r15
movq 0x98(%rdx), %r14
movl $0x0, 0x8(%rsp)
movl $0x1, 0x1c(%rsp)
callq 0x2e21
movl %eax, %ebp
testq %r12, %r12
je 0x3527
movl 0x3cac(%rip), %esi # 0x7194
leaq 0x8(%rsp)... | /ornladios[P]ADIOS2/thirdparty/EVPath/EVPath/cmudp.c |
void phmap::priv::raw_hash_set<phmap::priv::FlatHashMapPolicy<phmap::priv::(anonymous namespace)::FlatHashMap_StandardLayout_Test::TestBody()::Int, phmap::priv::(anonymous namespace)::FlatHashMap_StandardLayout_Test::TestBody()::Int>, phmap::priv::(anonymous namespace)::FlatHashMap_StandardLayout_Test::TestBody()::Hash... | void emplace_at(size_t i, Args&&... args) {
PolicyTraits::construct(&alloc_ref(), slots_ + i,
std::forward<Args>(args)...);
#ifdef PHMAP_CHECK_CONSTRUCTED_VALUE
// this check can be costly, so do it only when requested
assert(PolicyTraits::apply(FindEleme... | pushq %rbp
movq %rsp, %rbp
subq $0x30, %rsp
movq %rdi, -0x8(%rbp)
movq %rsi, -0x10(%rbp)
movq %rdx, -0x18(%rbp)
movq %rcx, -0x20(%rbp)
movq %r8, -0x28(%rbp)
movq -0x8(%rbp), %rdi
movq %rdi, -0x30(%rbp)
callq 0x34af0
movq %rax, %rdi
movq -0x30(%rbp), %rax
movq 0x8(%rax), %rsi
movq -0x10(%rbp), %rax
shlq $0x4, %rax
addq ... | /greg7mdp[P]parallel-hashmap/parallel_hashmap/phmap.h |
phmap::priv::raw_hash_set<phmap::priv::FlatHashMapPolicy<phmap::priv::(anonymous namespace)::FlatHashMap_StandardLayout_Test::TestBody()::Int, phmap::priv::(anonymous namespace)::FlatHashMap_StandardLayout_Test::TestBody()::Int>, phmap::priv::(anonymous namespace)::FlatHashMap_StandardLayout_Test::TestBody()::Hash, phm... | void resize(size_t new_capacity) {
assert(IsValidCapacity(new_capacity));
auto* old_ctrl = ctrl_;
auto* old_slots = slots_;
const size_t old_capacity = capacity_;
initialize_slots(new_capacity);
capacity_ = new_capacity;
for (size_t i = 0; i != old_capacity; ++i)... | pushq %rbp
movq %rsp, %rbp
subq $0x90, %rsp
movq %rdi, -0x8(%rbp)
movq %rsi, -0x10(%rbp)
movq -0x8(%rbp), %rax
movq %rax, -0x70(%rbp)
movq -0x10(%rbp), %rdi
callq 0x45830
testb $0x1, %al
jne 0x3446a
jmp 0x3446c
jmp 0x3448b
leaq 0x217700(%rip), %rdi # 0x24bb73
leaq 0x2174d9(%rip), %rsi # 0x24b953
movl $0x807, %edx... | /greg7mdp[P]parallel-hashmap/parallel_hashmap/phmap.h |
phmap::priv::raw_hash_set<phmap::priv::FlatHashMapPolicy<phmap::priv::(anonymous namespace)::FlatHashMap_StandardLayout_Test::TestBody()::Int, phmap::priv::(anonymous namespace)::FlatHashMap_StandardLayout_Test::TestBody()::Int>, phmap::priv::(anonymous namespace)::FlatHashMap_StandardLayout_Test::TestBody()::Hash, phm... | void drop_deletes_without_resize() PHMAP_ATTRIBUTE_NOINLINE {
assert(IsValidCapacity(capacity_));
assert(!is_small());
// Algorithm:
// - mark all DELETED slots as EMPTY
// - mark all FULL slots as DELETED
// - for each slot marked as DELETED
// hash = Hash(el... | pushq %rbp
movq %rsp, %rbp
subq $0x90, %rsp
movq %rdi, -0x8(%rbp)
movq -0x8(%rbp), %rax
movq %rax, -0x68(%rbp)
movq 0x18(%rax), %rdi
callq 0x45830
testb $0x1, %al
jne 0x34676
jmp 0x34678
jmp 0x34697
leaq 0x217ed7(%rip), %rdi # 0x24c556
leaq 0x2172cd(%rip), %rsi # 0x24b953
movl $0x822, %edx # imm = 0x82... | /greg7mdp[P]parallel-hashmap/parallel_hashmap/phmap.h |
phmap::priv::(anonymous namespace)::FlatHashMap_IteratesMsan_Test::~FlatHashMap_IteratesMsan_Test() | TEST(THIS_TEST_NAME, IteratesMsan) {
// Because SwissTable randomizes on pointer addresses, we keep old tables
// around to ensure we don't reuse old memory.
std::vector<ThisMap<int, balast>> garbage;
for (int i = 0; i < 100; ++i) {
ThisMap<int, balast> t;
for (int j = 0; j < 100; ++j) {
t[j];
... | pushq %rbp
movq %rsp, %rbp
subq $0x10, %rsp
movq %rdi, -0x8(%rbp)
movq -0x8(%rbp), %rdi
movq %rdi, -0x10(%rbp)
callq 0x362f0
movq -0x10(%rbp), %rdi
movl $0x10, %esi
callq 0x2f740
addq $0x10, %rsp
popq %rbp
retq
nopl (%rax)
| /greg7mdp[P]parallel-hashmap/tests/flat_hash_map_test.cc |
void phmap::priv::Deallocate<4ul, std::allocator<std::pair<int const, phmap::priv::(anonymous namespace)::balast>>>(std::allocator<std::pair<int const, phmap::priv::(anonymous namespace)::balast>>*, void*, unsigned long) | void Deallocate(Alloc* alloc, void* p, size_t n) {
static_assert(Alignment > 0, "");
assert(n && "n must be positive");
struct alignas(Alignment) M {};
using A = typename phmap::allocator_traits<Alloc>::template rebind_alloc<M>;
using AT = typename phmap::allocator_traits<Alloc>::template rebind_traits<M>;
... | pushq %rbp
movq %rsp, %rbp
subq $0x40, %rsp
movq %rdi, -0x8(%rbp)
movq %rsi, -0x10(%rbp)
movq %rdx, -0x18(%rbp)
xorl %eax, %eax
cmpq $0x0, -0x18(%rbp)
movb %al, -0x2d(%rbp)
je 0x38437
movb $0x1, %al
movb %al, -0x2d(%rbp)
jmp 0x38437
movb -0x2d(%rbp), %al
testb $0x1, %al
jne 0x38440
jmp 0x38442
jmp 0x38461
leaq 0x2139cc... | /greg7mdp[P]parallel-hashmap/parallel_hashmap/phmap_base.h |
std::conditional<std::is_const<char>::value, std::tuple_element<1ul, std::tuple<signed char, phmap::priv::map_slot_type<int, phmap::priv::(anonymous namespace)::balast>>>::type const, std::tuple_element<1ul, std::tuple<signed char, phmap::priv::map_slot_type<int, phmap::priv::(anonymous namespace)::balast>>>::type>::ty... | CopyConst<Char, ElementType<N>>* Pointer(Char* p) const {
using C = typename std::remove_const<Char>::type;
static_assert(
std::is_same<C, char>() || std::is_same<C, unsigned char>() ||
std::is_same<C, signed char>(),
"The argument must be a pointer to [const] [signed... | pushq %rbp
movq %rsp, %rbp
subq $0x30, %rsp
movq %rdi, -0x8(%rbp)
movq %rsi, -0x10(%rbp)
movq -0x8(%rbp), %rax
movq %rax, -0x20(%rbp)
movq $0x4, -0x18(%rbp)
movq -0x10(%rbp), %rax
andq $0x3, %rax
cmpq $0x0, %rax
jne 0x38690
jmp 0x386af
leaq 0x2138f5(%rip), %rdi # 0x24bf8c
leaq 0x213791(%rip), %rsi # 0x24be2f
movl... | /greg7mdp[P]parallel-hashmap/parallel_hashmap/phmap_base.h |
void phmap::priv::map_slot_policy<int, phmap::priv::(anonymous namespace)::balast>::transfer<std::allocator<std::pair<int const, phmap::priv::(anonymous namespace)::balast>>>(std::allocator<std::pair<int const, phmap::priv::(anonymous namespace)::balast>>*, phmap::priv::map_slot_type<int, phmap::priv::(anonymous namesp... | static void transfer(Allocator* alloc, slot_type* new_slot,
slot_type* old_slot) {
emplace(new_slot);
if (kMutableKeys::value) {
phmap::allocator_traits<Allocator>::construct(
*alloc, &new_slot->mutable_value, std::move(old_slot->mutable_value));
... | pushq %rbp
movq %rsp, %rbp
subq $0x20, %rsp
movq %rdi, -0x8(%rbp)
movq %rsi, -0x10(%rbp)
movq %rdx, -0x18(%rbp)
movq -0x10(%rbp), %rdi
callq 0x38ae0
movq -0x8(%rbp), %rdi
movq -0x10(%rbp), %rsi
movq -0x18(%rbp), %rdx
callq 0x38b00
movq -0x8(%rbp), %rdi
movq -0x18(%rbp), %rsi
callq 0x38b30
addq $0x20, %rsp
popq %rbp
ret... | /greg7mdp[P]parallel-hashmap/parallel_hashmap/phmap_base.h |
bool testing::internal::MatchPrintAndExplain<std::pair<int const, phmap::priv::(anonymous namespace)::balast> const, std::pair<int const, phmap::priv::(anonymous namespace)::balast> const&>(std::pair<int const, phmap::priv::(anonymous namespace)::balast> const&, testing::Matcher<std::pair<int const, phmap::priv::(anony... | bool MatchPrintAndExplain(Value& value, const Matcher<T>& matcher,
MatchResultListener* listener) {
if (!listener->IsInterested()) {
// If the listener is not interested, we do not need to construct the
// inner explanation.
return matcher.Matches(value);
}
StringMatchResult... | pushq %rbp
movq %rsp, %rbp
subq $0x250, %rsp # imm = 0x250
movq %rdi, -0x10(%rbp)
movq %rsi, -0x18(%rbp)
movq %rdx, -0x20(%rbp)
movq -0x20(%rbp), %rdi
callq 0x46e40
testb $0x1, %al
jne 0x393db
movq -0x18(%rbp), %rdi
movq -0x10(%rbp), %rsi
callq 0x39280
andb $0x1, %al
movb %al, -0x1(%rbp)
jmp 0x39590
leaq -0x... | /greg7mdp[P]parallel-hashmap/build_O0/googletest-src/googlemock/include/gmock/gmock-matchers.h |
testing::MatcherDescriberInterface const* testing::internal::MatcherBase<std::pair<int const, phmap::priv::(anonymous namespace)::balast> const&>::GetDescriberImpl<testing::internal::MatcherBase<std::pair<int const, phmap::priv::(anonymous namespace)::balast> const&>::ValuePolicy<testing::MatcherInterface<std::pair<int... | static const MatcherDescriberInterface* GetDescriberImpl(
const MatcherBase& m) {
// If the impl is a MatcherDescriberInterface, then return it.
// Otherwise use MatcherBase itself.
// This allows us to implement the GetDescriber() function without support
// from the impl, but some users really w... | pushq %rbp
movq %rsp, %rbp
subq $0x30, %rsp
movq %rdi, -0x8(%rbp)
movq -0x8(%rbp), %rax
movq %rax, -0x20(%rbp)
movq -0x8(%rbp), %rdi
callq 0x3aa30
movq %rax, -0x28(%rbp)
leaq -0x18(%rbp), %rdi
leaq -0x20(%rbp), %rsi
leaq -0x28(%rbp), %rdx
callq 0x3ab70
leaq -0x18(%rbp), %rdi
callq 0x3ab50
movq (%rax), %rax
addq $0x30, ... | /greg7mdp[P]parallel-hashmap/build_O0/googletest-src/googletest/include/gtest/gtest-matchers.h |
void testing::internal::PrintWithFallback<phmap::priv::(anonymous namespace)::balast>(phmap::priv::(anonymous namespace)::balast const&, std::ostream*) | void PrintWithFallback(const T& value, ::std::ostream* os) {
using Printer = typename FindFirstPrinter<
T, void, ContainerPrinter, FunctionPointerPrinter, PointerPrinter,
ProtobufPrinter,
#ifdef GTEST_HAS_ABSL
ConvertibleToAbslStringifyPrinter,
#endif // GTEST_HAS_ABSL
internal_stream_operato... | pushq %rbp
movq %rsp, %rbp
subq $0x10, %rsp
movq %rdi, -0x8(%rbp)
movq %rsi, -0x10(%rbp)
movq -0x8(%rbp), %rdi
movq -0x10(%rbp), %rsi
callq 0x3b480
addq $0x10, %rsp
popq %rbp
retq
nopw %cs:(%rax,%rax)
| /greg7mdp[P]parallel-hashmap/build_O0/googletest-src/googletest/include/gtest/gtest-printers.h |
testing::AssertionResult testing::internal::PredicateFormatterFromMatcher<testing::internal::UnorderedElementsAreMatcher<std::tuple<testing::internal::PairMatcher<int, int>>>>::operator()<phmap::flat_hash_map<unsigned long, unsigned long, phmap::priv::(anonymous namespace)::Hash, phmap::priv::(anonymous namespace)::Eq,... | AssertionResult operator()(const char* value_text, const T& x) const {
// We convert matcher_ to a Matcher<const T&> *now* instead of
// when the PredicateFormatterFromMatcher object was constructed,
// as matcher_ may be polymorphic (e.g. NotNull()) and we won't
// know which type to instantiate it to ... | pushq %rbp
movq %rsp, %rbp
subq $0x410, %rsp # imm = 0x410
movq %rdi, -0x3d8(%rbp)
movq %rdi, %rax
movq %rax, -0x3d0(%rbp)
movq %rdi, -0x8(%rbp)
movq %rsi, -0x10(%rbp)
movq %rdx, -0x18(%rbp)
movq %rcx, -0x20(%rbp)
movq -0x10(%rbp), %rsi
leaq -0x38(%rbp), %rdi
movq %rdi, -0x3c8(%rbp)
callq 0x3f8f0
movq -0x3c8... | /greg7mdp[P]parallel-hashmap/build_O0/googletest-src/googlemock/include/gmock/gmock-matchers.h |
phmap::priv::raw_hash_set<phmap::priv::FlatHashMapPolicy<unsigned long, unsigned long>, phmap::priv::(anonymous namespace)::Hash, phmap::priv::(anonymous namespace)::Eq, std::allocator<std::pair<unsigned long const, unsigned long>>>::initialize_slots(unsigned long) | void initialize_slots(size_t new_capacity) {
assert(new_capacity);
if (std::is_same<SlotAlloc, std::allocator<slot_type>>::value &&
slots_ == nullptr) {
infoz_ = Sample();
}
auto layout = MakeLayout(new_capacity);
char* mem = static_cast<char*>(
... | pushq %rbp
movq %rsp, %rbp
subq $0x40, %rsp
movq %rdi, -0x8(%rbp)
movq %rsi, -0x10(%rbp)
movq -0x8(%rbp), %rax
movq %rax, -0x38(%rbp)
cmpq $0x0, -0x10(%rbp)
je 0x3dce1
jmp 0x3dd00
leaq 0x20dfd6(%rip), %rdi # 0x24bcbe
leaq 0x20dc64(%rip), %rsi # 0x24b953
movl $0x7dd, %edx # imm = 0x7DD
leaq 0x211154(%ri... | /greg7mdp[P]parallel-hashmap/parallel_hashmap/phmap.h |
phmap::priv::raw_hash_set<phmap::priv::FlatHashMapPolicy<unsigned long, unsigned long>, phmap::priv::(anonymous namespace)::Hash, phmap::priv::(anonymous namespace)::Eq, std::allocator<std::pair<unsigned long const, unsigned long>>>::destroy_slots() | void destroy_slots() {
if (!capacity_)
return;
PHMAP_IF_CONSTEXPR((!std::is_trivially_destructible<typename PolicyTraits::value_type>::value ||
std::is_same<typename Policy::is_flat, std::false_type>::value)) {
// node map, or not trivially de... | pushq %rbp
movq %rsp, %rbp
subq $0x30, %rsp
movq %rdi, -0x8(%rbp)
movq -0x8(%rbp), %rax
movq %rax, -0x20(%rbp)
cmpq $0x0, 0x18(%rax)
jne 0x3e1c0
jmp 0x3e251
movq -0x20(%rbp), %rax
movq 0x18(%rax), %rdi
callq 0x3dfb0
movq %rax, %rcx
movq -0x20(%rbp), %rax
movq %rcx, -0x18(%rbp)
movq %rdx, -0x10(%rbp)
movq 0x8(%rax), %rd... | /greg7mdp[P]parallel-hashmap/parallel_hashmap/phmap.h |
phmap::priv::raw_hash_set<phmap::priv::FlatHashMapPolicy<unsigned long, unsigned long>, phmap::priv::(anonymous namespace)::Hash, phmap::priv::(anonymous namespace)::Eq, std::allocator<std::pair<unsigned long const, unsigned long>>>::set_ctrl(unsigned long, signed char) | void set_ctrl(size_t i, ctrl_t h) {
assert(i < capacity_);
if (IsFull(h)) {
SanitizerUnpoisonObject(slots_ + i);
} else {
SanitizerPoisonObject(slots_ + i);
}
ctrl_[i] = h;
ctrl_[((i - Group::kWidth) & capacity_) + 1 +
((Group::kWid... | pushq %rbp
movq %rsp, %rbp
subq $0x20, %rsp
movb %dl, %al
movq %rdi, -0x8(%rbp)
movq %rsi, -0x10(%rbp)
movb %al, -0x11(%rbp)
movq -0x8(%rbp), %rcx
movq %rcx, -0x20(%rbp)
movq -0x10(%rbp), %rax
cmpq 0x18(%rcx), %rax
jae 0x3e5c9
jmp 0x3e5e8
leaq 0x20e171(%rip), %rdi # 0x24c741
leaq 0x20d37c(%rip), %rsi # 0x24b953
m... | /greg7mdp[P]parallel-hashmap/parallel_hashmap/phmap.h |
std::pair<phmap::priv::raw_hash_set<phmap::priv::FlatHashMapPolicy<unsigned long, unsigned long>, phmap::priv::(anonymous namespace)::Hash, phmap::priv::(anonymous namespace)::Eq, std::allocator<std::pair<unsigned long const, unsigned long>>>::iterator, bool> phmap::priv::raw_hash_map<phmap::priv::FlatHashMapPolicy<uns... | std::pair<iterator, bool> try_emplace_impl(K&& k, Args&&... args) {
size_t hashval = this->hash(k);
size_t offset = this->_find_key(k, hashval);
if (offset == (size_t)-1) {
offset = this->prepare_insert(hashval);
this->emplace_at(offset, std::piecewise_construct,
... | pushq %rbp
movq %rsp, %rbp
subq $0x90, %rsp
movq %rdi, -0x78(%rbp)
movq %rdi, -0x70(%rbp)
movq %rsi, -0x8(%rbp)
movq %rdx, -0x10(%rbp)
movq -0x8(%rbp), %rdi
movq %rdi, -0x68(%rbp)
movq -0x10(%rbp), %rsi
callq 0x3e9e0
movq -0x68(%rbp), %rdi
movq %rax, -0x18(%rbp)
movq -0x10(%rbp), %rsi
movq -0x18(%rbp), %rdx
callq 0x3ea... | /greg7mdp[P]parallel-hashmap/parallel_hashmap/phmap.h |
testing::internal::UnorderedElementsAreMatcher<std::tuple<testing::internal::PairMatcher<int, int>, testing::internal::PairMatcher<int, int>>>::operator testing::Matcher<phmap::flat_hash_map<unsigned long, unsigned long, phmap::priv::(anonymous namespace)::Hash, phmap::priv::(anonymous namespace)::Eq, std::allocator<st... | operator Matcher<Container>() const {
typedef GTEST_REMOVE_REFERENCE_AND_CONST_(Container) RawContainer;
typedef typename internal::StlContainerView<RawContainer>::type View;
typedef typename View::value_type Element;
typedef ::std::vector<Matcher<const Element&>> MatcherVec;
MatcherVec matchers;
... | pushq %rbp
movq %rsp, %rbp
subq $0xa0, %rsp
movq %rdi, -0x78(%rbp)
movq %rdi, %rax
movq %rax, -0x70(%rbp)
movq %rdi, -0x8(%rbp)
movq %rsi, -0x10(%rbp)
movq -0x10(%rbp), %rax
movq %rax, -0x68(%rbp)
leaq -0x28(%rbp), %rdi
movq %rdi, -0x60(%rbp)
callq 0x4c240
movq -0x60(%rbp), %rdi
movl $0x2, %esi
callq 0x4c260
jmp 0x41e1... | /greg7mdp[P]parallel-hashmap/build_O0/googletest-src/googlemock/include/gmock/gmock-matchers.h |
phmap::priv::(anonymous namespace)::FlatHashMap_MergeExtractInsert_Test::~FlatHashMap_MergeExtractInsert_Test() | TEST(THIS_TEST_NAME, MergeExtractInsert) {
// We can't test mutable keys, or non-copyable keys with ThisMap.
// Test that the nodes have the proper API.
ThisMap<int, int> m = {{1, 7}, {2, 9}};
auto node = m.extract(1);
EXPECT_TRUE(node);
EXPECT_EQ(node.key(), 1);
EXPECT_EQ(node.mapped(), 7);
EXPECT_THAT... | pushq %rbp
movq %rsp, %rbp
subq $0x10, %rsp
movq %rdi, -0x8(%rbp)
movq -0x8(%rbp), %rdi
callq 0x20a3c0
addq $0x10, %rsp
popq %rbp
retq
nopl (%rax,%rax)
| /greg7mdp[P]parallel-hashmap/tests/flat_hash_map_test.cc |
testing::internal::TypeParameterizedTestSuite<phmap::priv::ModifiersTest, testing::internal::Templates<phmap::priv::gtest_suite_ModifiersTest_::Clear, phmap::priv::gtest_suite_ModifiersTest_::Insert, phmap::priv::gtest_suite_ModifiersTest_::InsertHint, phmap::priv::gtest_suite_ModifiersTest_::InsertRange, phmap::priv::... | static bool Register(const char* prefix, CodeLocation code_location,
const TypedTestSuitePState* state, const char* case_name,
const char* test_names,
const std::vector<std::string>& type_names =
GenerateNames<DefaultNameGen... | pushq %rbp
movq %rsp, %rbp
subq $0x170, %rsp # imm = 0x170
movq %rsi, -0x108(%rbp)
movq %rdi, -0x8(%rbp)
movq %rsi, -0x10(%rbp)
movq %rdx, -0x18(%rbp)
movq %rcx, -0x20(%rbp)
movq %r8, -0x28(%rbp)
movq %r9, -0x30(%rbp)
movq -0x20(%rbp), %rdi
callq 0x202800
movq -0x28(%rbp), %rsi
leaq -0x70(%rbp), %rdi
movq %r... | /greg7mdp[P]parallel-hashmap/build_O0/googletest-src/googletest/include/gtest/internal/gtest-internal.h |
testing::AssertionResult::~AssertionResult() | class GTEST_API_ AssertionResult {
public:
// Copy constructor.
// Used in EXPECT_TRUE/FALSE(assertion_result).
AssertionResult(const AssertionResult& other);
// C4800 is a level 3 warning in Visual Studio 2015 and earlier.
// This warning is not emitted in Visual Studio 2017.
// This warning is off by default ... | pushq %rbp
movq %rsp, %rbp
subq $0x10, %rsp
movq %rdi, -0x8(%rbp)
movq -0x8(%rbp), %rdi
addq $0x8, %rdi
callq 0x478d0
addq $0x10, %rsp
popq %rbp
retq
nop
| /greg7mdp[P]parallel-hashmap/build_O0/googletest-src/googletest/include/gtest/gtest-assertion-result.h |
phmap::priv::raw_hash_set<phmap::priv::FlatHashMapPolicy<void*, bool>, phmap::priv::HashEq<void*, void>::Hash, phmap::priv::HashEq<void*, void>::Eq, std::allocator<std::pair<void* const, bool>>>::raw_hash_set() | raw_hash_set() noexcept(
std::is_nothrow_default_constructible<hasher>::value&&
std::is_nothrow_default_constructible<key_equal>::value&&
std::is_nothrow_default_constructible<allocator_type>::value) {} | pushq %rbp
movq %rsp, %rbp
subq $0x30, %rsp
movq %rdi, -0x8(%rbp)
movq -0x8(%rbp), %rax
movq %rax, -0x28(%rbp)
movq %rax, -0x20(%rbp)
callq 0x48480
movq %rax, -0x18(%rbp)
jmp 0x48403
movq -0x20(%rbp), %rax
movq -0x28(%rbp), %rcx
movq -0x18(%rbp), %rdx
movq %rdx, (%rcx)
movq $0x0, 0x8(%rax)
movq $0x0, 0x10(%rax)
movq $0... | /greg7mdp[P]parallel-hashmap/parallel_hashmap/phmap.h |
phmap::priv::raw_hash_set<phmap::priv::FlatHashMapPolicy<void*, bool>, phmap::priv::HashEq<void*, void>::Hash, phmap::priv::HashEq<void*, void>::Eq, std::allocator<std::pair<void* const, bool>>>::rehash_and_grow_if_necessary() | void rehash_and_grow_if_necessary() {
if (capacity_ == 0) {
resize(1);
} else if (size() <= CapacityToGrowth(capacity()) / 2) {
// Squash DELETED without growing if there is enough capacity.
drop_deletes_without_resize();
} else {
// Otherwise grow... | pushq %rbp
movq %rsp, %rbp
subq $0x20, %rsp
movq %rdi, -0x8(%rbp)
movq -0x8(%rbp), %rax
movq %rax, -0x10(%rbp)
cmpq $0x0, 0x18(%rax)
jne 0x496db
movq -0x10(%rbp), %rdi
movl $0x1, %esi
callq 0x49790
jmp 0x49729
movq -0x10(%rbp), %rdi
callq 0x49960
movq -0x10(%rbp), %rdi
movq %rax, -0x18(%rbp)
callq 0x49980
movq %rax, %r... | /greg7mdp[P]parallel-hashmap/parallel_hashmap/phmap.h |
phmap::priv::raw_hash_set<phmap::priv::FlatHashMapPolicy<void*, bool>, phmap::priv::HashEq<void*, void>::Hash, phmap::priv::HashEq<void*, void>::Eq, std::allocator<std::pair<void* const, bool>>>::drop_deletes_without_resize() | void drop_deletes_without_resize() PHMAP_ATTRIBUTE_NOINLINE {
assert(IsValidCapacity(capacity_));
assert(!is_small());
// Algorithm:
// - mark all DELETED slots as EMPTY
// - mark all FULL slots as DELETED
// - for each slot marked as DELETED
// hash = Hash(el... | pushq %rbp
movq %rsp, %rbp
subq $0x90, %rsp
movq %rdi, -0x8(%rbp)
movq -0x8(%rbp), %rax
movq %rax, -0x68(%rbp)
movq 0x18(%rax), %rdi
callq 0x45830
testb $0x1, %al
jne 0x499c6
jmp 0x499c8
jmp 0x499e7
leaq 0x202b87(%rip), %rdi # 0x24c556
leaq 0x201f7d(%rip), %rsi # 0x24b953
movl $0x822, %edx # imm = 0x82... | /greg7mdp[P]parallel-hashmap/parallel_hashmap/phmap.h |
void* phmap::priv::Allocate<8ul, std::allocator<std::pair<void* const, bool>>>(std::allocator<std::pair<void* const, bool>>*, unsigned long) | void* Allocate(Alloc* alloc, size_t n) {
static_assert(Alignment > 0, "");
assert(n && "n must be positive");
struct alignas(Alignment) M {};
using A = typename phmap::allocator_traits<Alloc>::template rebind_alloc<M>;
using AT = typename phmap::allocator_traits<Alloc>::template rebind_traits<M>;
A mem_allo... | pushq %rbp
movq %rsp, %rbp
subq $0x50, %rsp
movq %rdi, -0x8(%rbp)
movq %rsi, -0x10(%rbp)
xorl %eax, %eax
cmpq $0x0, -0x10(%rbp)
movb %al, -0x2d(%rbp)
je 0x49fc3
movb $0x1, %al
movb %al, -0x2d(%rbp)
jmp 0x49fc3
movb -0x2d(%rbp), %al
testb $0x1, %al
jne 0x49fcc
jmp 0x49fce
jmp 0x49fed
leaq 0x201e40(%rip), %rdi # 0x24b... | /greg7mdp[P]parallel-hashmap/parallel_hashmap/phmap_base.h |
signed char* phmap::priv::EmptyGroup<std::is_same<std::allocator<std::pair<unsigned long const, unsigned long>>, std::allocator<std::pair<unsigned long const, unsigned long>>>>() | inline ctrl_t* EmptyGroup() {
PHMAP_IF_CONSTEXPR (std_alloc_t::value) {
alignas(16) static constexpr ctrl_t empty_group[] = {
kSentinel, kEmpty, kEmpty, kEmpty, kEmpty, kEmpty, kEmpty, kEmpty,
kEmpty, kEmpty, kEmpty, kEmpty, kEmpty, kEmpty, kEmpty, kEmpty};
return const_cast<ctrl_t... | pushq %rbp
movq %rsp, %rbp
leaq 0x210f15(%rip), %rax # 0x25c3f0
popq %rbp
retq
nopl (%rax)
| /greg7mdp[P]parallel-hashmap/parallel_hashmap/phmap.h |
testing::internal::PairMatcherImpl<std::pair<unsigned long const, unsigned long> const&>::PairMatcherImpl<int, int>(int, int) | PairMatcherImpl(FirstMatcher first_matcher, SecondMatcher second_matcher)
: first_matcher_(
testing::SafeMatcherCast<const FirstType&>(first_matcher)),
second_matcher_(
testing::SafeMatcherCast<const SecondType&>(second_matcher)) {} | pushq %rbp
movq %rsp, %rbp
subq $0x30, %rsp
movq %rdi, -0x8(%rbp)
movl %esi, -0xc(%rbp)
movl %edx, -0x10(%rbp)
movq -0x8(%rbp), %rdi
movq %rdi, -0x30(%rbp)
callq 0x4d300
movq -0x30(%rbp), %rdi
leaq 0x2f9426(%rip), %rax # 0x346680
movq %rax, (%rdi)
addq $0x8, %rdi
movq %rdi, -0x28(%rbp)
leaq -0xc(%rbp), %rsi
callq 0x... | /greg7mdp[P]parallel-hashmap/build_O0/googletest-src/googlemock/include/gmock/gmock-matchers.h |
testing::MatcherDescriberInterface const* testing::internal::MatcherBase<std::pair<unsigned long const, unsigned long> const&>::GetDescriberImpl<testing::internal::MatcherBase<std::pair<unsigned long const, unsigned long> const&>::ValuePolicy<testing::MatcherInterface<std::pair<unsigned long const, unsigned long> const... | static const MatcherDescriberInterface* GetDescriberImpl(
const MatcherBase& m) {
// If the impl is a MatcherDescriberInterface, then return it.
// Otherwise use MatcherBase itself.
// This allows us to implement the GetDescriber() function without support
// from the impl, but some users really w... | pushq %rbp
movq %rsp, %rbp
subq $0x30, %rsp
movq %rdi, -0x8(%rbp)
movq -0x8(%rbp), %rax
movq %rax, -0x20(%rbp)
movq -0x8(%rbp), %rdi
callq 0x4e900
movq %rax, -0x28(%rbp)
leaq -0x18(%rbp), %rdi
leaq -0x20(%rbp), %rsi
leaq -0x28(%rbp), %rdx
callq 0x4ea40
leaq -0x18(%rbp), %rdi
callq 0x4ea20
movq (%rax), %rax
addq $0x30, ... | /greg7mdp[P]parallel-hashmap/build_O0/googletest-src/googletest/include/gtest/gtest-matchers.h |
signed char* phmap::priv::EmptyGroup<std::is_same<std::allocator<std::pair<int const, int>>, std::allocator<std::pair<int const, int>>>>() | inline ctrl_t* EmptyGroup() {
PHMAP_IF_CONSTEXPR (std_alloc_t::value) {
alignas(16) static constexpr ctrl_t empty_group[] = {
kSentinel, kEmpty, kEmpty, kEmpty, kEmpty, kEmpty, kEmpty, kEmpty,
kEmpty, kEmpty, kEmpty, kEmpty, kEmpty, kEmpty, kEmpty, kEmpty};
return const_cast<ctrl_t... | pushq %rbp
movq %rsp, %rbp
leaq 0x209325(%rip), %rax # 0x25c530
popq %rbp
retq
nopl (%rax)
| /greg7mdp[P]parallel-hashmap/parallel_hashmap/phmap.h |
phmap::priv::raw_hash_set<phmap::priv::FlatHashMapPolicy<int, int>, phmap::Hash<int>, phmap::EqualTo<int>, std::allocator<std::pair<int const, int>>>::prefetch_hash(unsigned long) const | void prefetch_hash(size_t hashval) const {
(void)hashval;
#if defined(_MSC_VER) && (defined(_M_X64) || defined(_M_IX86))
auto seq = probe(hashval);
_mm_prefetch((const char *)(ctrl_ + seq.offset()), _MM_HINT_NTA);
_mm_prefetch((const char *)(slots_ + seq.offset()), _MM_HINT_NTA);
#elif d... | pushq %rbp
movq %rsp, %rbp
subq $0x40, %rsp
movq %rdi, -0x8(%rbp)
movq %rsi, -0x10(%rbp)
movq -0x8(%rbp), %rsi
movq %rsi, -0x38(%rbp)
movq -0x10(%rbp), %rdx
leaq -0x28(%rbp), %rdi
callq 0x53db0
movq -0x38(%rbp), %rax
movq (%rax), %rax
movq %rax, -0x40(%rbp)
leaq -0x28(%rbp), %rdi
callq 0x451c0
movq -0x40(%rbp), %rcx
mo... | /greg7mdp[P]parallel-hashmap/parallel_hashmap/phmap.h |
phmap::priv::raw_hash_set<phmap::priv::FlatHashMapPolicy<int, int>, phmap::Hash<int>, phmap::EqualTo<int>, std::allocator<std::pair<int const, int>>>::iterator::skip_empty_or_deleted() | void skip_empty_or_deleted() {
PHMAP_IF_CONSTEXPR (!std_alloc_t::value) {
// ctrl_ could be nullptr
if (!ctrl_)
return;
}
while (IsEmptyOrDeleted(*ctrl_)) {
// ctrl is not necessarily aligned to Group::kWidth. It is ... | pushq %rbp
movq %rsp, %rbp
subq $0x30, %rsp
movq %rdi, -0x8(%rbp)
movq -0x8(%rbp), %rax
movq %rax, -0x28(%rbp)
movq -0x28(%rbp), %rax
movq (%rax), %rax
movsbl (%rax), %edi
callq 0x461d0
testb $0x1, %al
jne 0x54479
jmp 0x544bf
movq -0x28(%rbp), %rax
movq (%rax), %rsi
leaq -0x20(%rbp), %rdi
callq 0x451e0
leaq -0x20(%rbp)... | /greg7mdp[P]parallel-hashmap/parallel_hashmap/phmap.h |
phmap::priv::raw_hash_set<phmap::priv::FlatHashMapPolicy<int, int>, phmap::Hash<int>, phmap::EqualTo<int>, std::allocator<std::pair<int const, int>>>::initialize_slots(unsigned long) | void initialize_slots(size_t new_capacity) {
assert(new_capacity);
if (std::is_same<SlotAlloc, std::allocator<slot_type>>::value &&
slots_ == nullptr) {
infoz_ = Sample();
}
auto layout = MakeLayout(new_capacity);
char* mem = static_cast<char*>(
... | pushq %rbp
movq %rsp, %rbp
subq $0x40, %rsp
movq %rdi, -0x8(%rbp)
movq %rsi, -0x10(%rbp)
movq -0x8(%rbp), %rax
movq %rax, -0x38(%rbp)
cmpq $0x0, -0x10(%rbp)
je 0x55041
jmp 0x55060
leaq 0x1f6c76(%rip), %rdi # 0x24bcbe
leaq 0x1f6904(%rip), %rsi # 0x24b953
movl $0x7dd, %edx # imm = 0x7DD
leaq 0x1fb5c5(%ri... | /greg7mdp[P]parallel-hashmap/parallel_hashmap/phmap.h |
std::conditional<std::is_const<char>::value, std::tuple_element<1ul, std::tuple<signed char, phmap::priv::map_slot_type<int, int>>>::type const, std::tuple_element<1ul, std::tuple<signed char, phmap::priv::map_slot_type<int, int>>>::type>::type* phmap::priv::internal_layout::LayoutImpl<std::tuple<signed char, phmap::pr... | CopyConst<Char, ElementType<N>>* Pointer(Char* p) const {
using C = typename std::remove_const<Char>::type;
static_assert(
std::is_same<C, char>() || std::is_same<C, unsigned char>() ||
std::is_same<C, signed char>(),
"The argument must be a pointer to [const] [signed... | pushq %rbp
movq %rsp, %rbp
subq $0x30, %rsp
movq %rdi, -0x8(%rbp)
movq %rsi, -0x10(%rbp)
movq -0x8(%rbp), %rax
movq %rax, -0x20(%rbp)
movq $0x4, -0x18(%rbp)
movq -0x10(%rbp), %rax
andq $0x3, %rax
cmpq $0x0, %rax
jne 0x55470
jmp 0x5548f
leaq 0x1f6b15(%rip), %rdi # 0x24bf8c
leaq 0x1f69b1(%rip), %rsi # 0x24be2f
movl... | /greg7mdp[P]parallel-hashmap/parallel_hashmap/phmap_base.h |
testing::AssertionResult testing::internal::PredicateFormatterFromMatcher<testing::internal::UnorderedElementsAreMatcher<std::tuple<testing::internal::PairMatcher<int, int>, testing::internal::PairMatcher<int, int>>>>::operator()<phmap::flat_hash_map<int, int, phmap::Hash<int>, phmap::EqualTo<int>, std::allocator<std::... | AssertionResult operator()(const char* value_text, const T& x) const {
// We convert matcher_ to a Matcher<const T&> *now* instead of
// when the PredicateFormatterFromMatcher object was constructed,
// as matcher_ may be polymorphic (e.g. NotNull()) and we won't
// know which type to instantiate it to ... | pushq %rbp
movq %rsp, %rbp
subq $0x410, %rsp # imm = 0x410
movq %rdi, -0x3d8(%rbp)
movq %rdi, %rax
movq %rax, -0x3d0(%rbp)
movq %rdi, -0x8(%rbp)
movq %rsi, -0x10(%rbp)
movq %rdx, -0x18(%rbp)
movq %rcx, -0x20(%rbp)
movq -0x10(%rbp), %rsi
leaq -0x38(%rbp), %rdi
movq %rdi, -0x3c8(%rbp)
callq 0x5d960
movq -0x3c8... | /greg7mdp[P]parallel-hashmap/build_O0/googletest-src/googlemock/include/gmock/gmock-matchers.h |
phmap::priv::raw_hash_set<phmap::priv::FlatHashMapPolicy<int, int>, phmap::Hash<int>, phmap::EqualTo<int>, std::allocator<std::pair<int const, int>>>::raw_hash_set(unsigned long, phmap::Hash<int> const&, phmap::EqualTo<int> const&, std::allocator<std::pair<int const, int>> const&) | explicit raw_hash_set(size_t bucket_cnt, const hasher& hashfn = hasher(),
const key_equal& eq = key_equal(),
const allocator_type& alloc = allocator_type())
: ctrl_(EmptyGroup<std_alloc_t>()), settings_(0, hashfn, eq, alloc) {
if (bucket_cnt) {
... | pushq %rbp
movq %rsp, %rbp
subq $0x60, %rsp
movq %rdi, -0x8(%rbp)
movq %rsi, -0x10(%rbp)
movq %rdx, -0x18(%rbp)
movq %rcx, -0x20(%rbp)
movq %r8, -0x28(%rbp)
movq -0x8(%rbp), %rax
movq %rax, -0x58(%rbp)
callq 0x53200
movq -0x58(%rbp), %rdi
movq %rax, (%rdi)
movq $0x0, 0x8(%rdi)
movq $0x0, 0x10(%rdi)
movq $0x0, 0x18(%rdi... | /greg7mdp[P]parallel-hashmap/parallel_hashmap/phmap.h |
testing::Matcher<int const&> testing::internal::MatcherCastImpl<int const&, int>::CastImpl<true>(int const&, std::integral_constant<bool, true>, std::integral_constant<bool, true>) | static Matcher<T> CastImpl(const M& polymorphic_matcher_or_value,
std::true_type /* convertible_to_matcher */,
std::integral_constant<bool, Ignore>) {
// M is implicitly convertible to Matcher<T>, which means that either
// M is a polymorphic matcher or ... | pushq %rbp
movq %rsp, %rbp
subq $0x20, %rsp
movq %rdi, %rax
movq %rax, -0x20(%rbp)
movq %rdi, -0x8(%rbp)
movq %rsi, -0x18(%rbp)
movq -0x18(%rbp), %rsi
callq 0x59d60
movq -0x20(%rbp), %rax
addq $0x20, %rsp
popq %rbp
retq
nopw (%rax,%rax)
| /greg7mdp[P]parallel-hashmap/build_O0/googletest-src/googlemock/include/gmock/gmock-matchers.h |
testing::MatcherDescriberInterface const* testing::internal::MatcherBase<std::pair<int const, int> const&>::GetDescriberImpl<testing::internal::MatcherBase<std::pair<int const, int> const&>::ValuePolicy<testing::MatcherInterface<std::pair<int const, int> const&> const*, true>>(testing::internal::MatcherBase<std::pair<i... | static const MatcherDescriberInterface* GetDescriberImpl(
const MatcherBase& m) {
// If the impl is a MatcherDescriberInterface, then return it.
// Otherwise use MatcherBase itself.
// This allows us to implement the GetDescriber() function without support
// from the impl, but some users really w... | pushq %rbp
movq %rsp, %rbp
subq $0x30, %rsp
movq %rdi, -0x8(%rbp)
movq -0x8(%rbp), %rax
movq %rax, -0x20(%rbp)
movq -0x8(%rbp), %rdi
callq 0x5a820
movq %rax, -0x28(%rbp)
leaq -0x18(%rbp), %rdi
leaq -0x20(%rbp), %rsi
leaq -0x28(%rbp), %rdx
callq 0x5a960
leaq -0x18(%rbp), %rdi
callq 0x5a940
movq (%rax), %rax
addq $0x30, ... | /greg7mdp[P]parallel-hashmap/build_O0/googletest-src/googletest/include/gtest/gtest-matchers.h |
testing::internal::UnorderedElementsAreMatcherImpl<phmap::flat_hash_map<int, int, phmap::priv::StatefulTestingHash, phmap::priv::StatefulTestingEqual, phmap::priv::Alloc<std::pair<int const, int>>> const&>::MatchAndExplain(phmap::flat_hash_map<int, int, phmap::priv::StatefulTestingHash, phmap::priv::StatefulTestingEqua... | bool MatchAndExplain(Container container,
MatchResultListener* listener) const override {
StlContainerReference stl_container = View::ConstReference(container);
::std::vector<std::string> element_printouts;
MatchMatrix matrix =
AnalyzeElements(stl_container.begin(), stl_contai... | pushq %rbp
movq %rsp, %rbp
subq $0xd0, %rsp
movq %rdi, -0x8(%rbp)
movq %rsi, -0x10(%rbp)
movq %rdx, -0x18(%rbp)
movq -0x8(%rbp), %rax
movq %rax, -0xa8(%rbp)
movq -0x10(%rbp), %rdi
callq 0x61290
movq %rax, -0x20(%rbp)
leaq -0x38(%rbp), %rdi
callq 0x50430
movq -0x20(%rbp), %rdi
callq 0x61680
movq %rdx, -0xa0(%rbp)
movq %... | /greg7mdp[P]parallel-hashmap/build_O0/googletest-src/googlemock/include/gmock/gmock-matchers.h |
testing::internal::MatchMatrix testing::internal::UnorderedElementsAreMatcherImpl<phmap::flat_hash_map<int, int, phmap::priv::StatefulTestingHash, phmap::priv::StatefulTestingEqual, phmap::priv::Alloc<std::pair<int const, int>>> const&>::AnalyzeElements<phmap::priv::raw_hash_set<phmap::priv::FlatHashMapPolicy<int, int>... | MatchMatrix AnalyzeElements(ElementIter elem_first, ElementIter elem_last,
::std::vector<std::string>* element_printouts,
MatchResultListener* listener) const {
element_printouts->clear();
::std::vector<char> did_match;
size_t num_elements = 0;
... | pushq %rbp
movq %rsp, %rbp
subq $0x140, %rsp # imm = 0x140
movq %rdi, -0xe0(%rbp)
movq %rdi, %rax
movq %rax, -0xd8(%rbp)
movq 0x18(%rbp), %rax
movq 0x10(%rbp), %rax
movq %rdi, -0x8(%rbp)
movq %rdx, -0x18(%rbp)
movq %rcx, -0x10(%rbp)
movq %r8, -0x28(%rbp)
movq %r9, -0x20(%rbp)
movq %rsi, -0x30(%rbp)
movq -0x3... | /greg7mdp[P]parallel-hashmap/build_O0/googletest-src/googlemock/include/gmock/gmock-matchers.h |
phmap::priv::raw_hash_set<phmap::priv::FlatHashMapPolicy<int, int>, phmap::priv::StatefulTestingHash, phmap::priv::StatefulTestingEqual, phmap::priv::Alloc<std::pair<int const, int>>>::destroy_slots() | void destroy_slots() {
if (!capacity_)
return;
PHMAP_IF_CONSTEXPR((!std::is_trivially_destructible<typename PolicyTraits::value_type>::value ||
std::is_same<typename Policy::is_flat, std::false_type>::value)) {
// node map, or not trivially de... | pushq %rbp
movq %rsp, %rbp
subq $0x30, %rsp
movq %rdi, -0x8(%rbp)
movq -0x8(%rbp), %rax
movq %rax, -0x20(%rbp)
cmpq $0x0, 0x18(%rax)
jne 0x62910
jmp 0x629a1
movq -0x20(%rbp), %rax
movq 0x18(%rax), %rdi
callq 0x629d0
movq %rax, %rcx
movq -0x20(%rbp), %rax
movq %rcx, -0x18(%rbp)
movq %rdx, -0x10(%rbp)
movq 0x8(%rax), %rd... | /greg7mdp[P]parallel-hashmap/parallel_hashmap/phmap.h |
phmap::priv::gtest_suite_ConstructorTest_::NoArgs<phmap::flat_hash_map<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char>>, int, phmap::priv::StatefulTestingHash, phmap::priv::StatefulTestingEqual, phmap::priv::Alloc<std::pair<std::__cxx11::basic_string<char, std::char_traits<char>, std::allo... | TYPED_TEST_P(ConstructorTest, NoArgs) {
TypeParam m;
EXPECT_TRUE(m.empty());
EXPECT_THAT(m, ::testing::UnorderedElementsAre());
} | pushq %rbp
movq %rsp, %rbp
subq $0xf0, %rsp
movq %rdi, -0x8(%rbp)
leaq -0x50(%rbp), %rdi
movq %rdi, -0xe0(%rbp)
callq 0x639b0
movq -0xe0(%rbp), %rdi
callq 0x639d0
movb %al, -0xd1(%rbp)
jmp 0x636f3
movb -0xd1(%rbp), %al
andb $0x1, %al
movb %al, -0x61(%rbp)
xorl %eax, %eax
movl %eax, %edx
leaq -0x60(%rbp), %rdi
leaq -0x6... | /greg7mdp[P]parallel-hashmap/tests/unordered_map_constructor_test.h |
testing::internal::UnorderedElementsAreMatcherImpl<phmap::flat_hash_map<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char>>, int, phmap::priv::StatefulTestingHash, phmap::priv::StatefulTestingEqual, phmap::priv::Alloc<std::pair<std::__cxx11::basic_string<char, std::char_traits<char>, std::all... | bool MatchAndExplain(Container container,
MatchResultListener* listener) const override {
StlContainerReference stl_container = View::ConstReference(container);
::std::vector<std::string> element_printouts;
MatchMatrix matrix =
AnalyzeElements(stl_container.begin(), stl_contai... | pushq %rbp
movq %rsp, %rbp
subq $0xd0, %rsp
movq %rdi, -0x8(%rbp)
movq %rsi, -0x10(%rbp)
movq %rdx, -0x18(%rbp)
movq -0x8(%rbp), %rax
movq %rax, -0xa8(%rbp)
movq -0x10(%rbp), %rdi
callq 0x66030
movq %rax, -0x20(%rbp)
leaq -0x38(%rbp), %rdi
callq 0x50430
movq -0x20(%rbp), %rdi
callq 0x66420
movq %rdx, -0xa0(%rbp)
movq %... | /greg7mdp[P]parallel-hashmap/build_O0/googletest-src/googlemock/include/gmock/gmock-matchers.h |
void testing::internal::PrintTo<phmap::priv::hash_internal::Enum const, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char>>>(std::pair<phmap::priv::hash_internal::Enum const, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char>>> const&, std::ostream*) | void PrintTo(const ::std::pair<T1, T2>& value, ::std::ostream* os) {
*os << '(';
// We cannot use UniversalPrint(value.first, os) here, as T1 may be
// a reference type. The same for printing value.second.
UniversalPrinter<T1>::Print(value.first, os);
*os << ", ";
UniversalPrinter<T2>::Print(value.second, ... | pushq %rbp
movq %rsp, %rbp
subq $0x10, %rsp
movq %rdi, -0x8(%rbp)
movq %rsi, -0x10(%rbp)
movq -0x10(%rbp), %rdi
movl $0x28, %esi
callq 0x2f8f0
movq -0x8(%rbp), %rdi
movq -0x10(%rbp), %rsi
callq 0x6bc90
movq -0x10(%rbp), %rdi
leaq 0x21382b(%rip), %rsi # 0x27f491
callq 0x2f6f0
movq -0x8(%rbp), %rdi
addq $0x8, %rdi
mov... | /greg7mdp[P]parallel-hashmap/build_O0/googletest-src/googletest/include/gtest/gtest-printers.h |
testing::internal::UnorderedElementsAreMatcherImpl<phmap::flat_hash_map<phmap::priv::hash_internal::EnumClass, int, phmap::priv::StatefulTestingHash, phmap::priv::StatefulTestingEqual, phmap::priv::Alloc<std::pair<phmap::priv::hash_internal::EnumClass const, int>>> const&>::MatchAndExplain(phmap::flat_hash_map<phmap::p... | bool MatchAndExplain(Container container,
MatchResultListener* listener) const override {
StlContainerReference stl_container = View::ConstReference(container);
::std::vector<std::string> element_printouts;
MatchMatrix matrix =
AnalyzeElements(stl_container.begin(), stl_contai... | pushq %rbp
movq %rsp, %rbp
subq $0xd0, %rsp
movq %rdi, -0x8(%rbp)
movq %rsi, -0x10(%rbp)
movq %rdx, -0x18(%rbp)
movq -0x8(%rbp), %rax
movq %rax, -0xa8(%rbp)
movq -0x10(%rbp), %rdi
callq 0x70950
movq %rax, -0x20(%rbp)
leaq -0x38(%rbp), %rdi
callq 0x50430
movq -0x20(%rbp), %rdi
callq 0x70d40
movq %rdx, -0xa0(%rbp)
movq %... | /greg7mdp[P]parallel-hashmap/build_O0/googletest-src/googlemock/include/gmock/gmock-matchers.h |
testing::MatcherDescriberInterface const* testing::internal::MatcherBase<phmap::flat_hash_map<phmap::priv::hash_internal::EnumClass, int, phmap::priv::StatefulTestingHash, phmap::priv::StatefulTestingEqual, phmap::priv::Alloc<std::pair<phmap::priv::hash_internal::EnumClass const, int>>> const&>::GetDescriberImpl<testin... | static const MatcherDescriberInterface* GetDescriberImpl(
const MatcherBase& m) {
// If the impl is a MatcherDescriberInterface, then return it.
// Otherwise use MatcherBase itself.
// This allows us to implement the GetDescriber() function without support
// from the impl, but some users really w... | pushq %rbp
movq %rsp, %rbp
subq $0x30, %rsp
movq %rdi, -0x8(%rbp)
movq -0x8(%rbp), %rax
movq %rax, -0x20(%rbp)
movq -0x8(%rbp), %rdi
callq 0x71890
movq %rax, -0x28(%rbp)
leaq -0x18(%rbp), %rdi
leaq -0x20(%rbp), %rsi
leaq -0x28(%rbp), %rdx
callq 0x719d0
leaq -0x18(%rbp), %rdi
callq 0x719b0
movq (%rax), %rax
addq $0x30, ... | /greg7mdp[P]parallel-hashmap/build_O0/googletest-src/googletest/include/gtest/gtest-matchers.h |
void testing::internal::PrintWithFallback<phmap::flat_hash_map<phmap::priv::hash_internal::EnumClass, int, phmap::priv::StatefulTestingHash, phmap::priv::StatefulTestingEqual, phmap::priv::Alloc<std::pair<phmap::priv::hash_internal::EnumClass const, int>>>>(phmap::flat_hash_map<phmap::priv::hash_internal::EnumClass, in... | void PrintWithFallback(const T& value, ::std::ostream* os) {
using Printer = typename FindFirstPrinter<
T, void, ContainerPrinter, FunctionPointerPrinter, PointerPrinter,
ProtobufPrinter,
#ifdef GTEST_HAS_ABSL
ConvertibleToAbslStringifyPrinter,
#endif // GTEST_HAS_ABSL
internal_stream_operato... | pushq %rbp
movq %rsp, %rbp
subq $0x10, %rsp
movq %rdi, -0x8(%rbp)
movq %rsi, -0x10(%rbp)
movq -0x8(%rbp), %rdi
movq -0x10(%rbp), %rsi
callq 0x722f0
addq $0x10, %rsp
popq %rbp
retq
nopw %cs:(%rax,%rax)
nopl (%rax)
| /greg7mdp[P]parallel-hashmap/build_O0/googletest-src/googletest/include/gtest/gtest-printers.h |
testing::internal::TypeParameterizedTest<phmap::priv::ConstructorTest, testing::internal::TemplateSel<phmap::priv::gtest_suite_ConstructorTest_::NoArgs>, testing::internal::Types<phmap::flat_hash_map<phmap::priv::NonStandardLayout, int, phmap::priv::StatefulTestingHash, phmap::priv::StatefulTestingEqual, phmap::priv::A... | static bool Register(const char* prefix, CodeLocation code_location,
const char* case_name, const char* test_names, int index,
const std::vector<std::string>& type_names =
GenerateNames<DefaultNameGenerator, Types>()) {
typedef typename Types:... | pushq %rbp
movq %rsp, %rbp
subq $0x210, %rsp # imm = 0x210
movq %rsi, -0x1b0(%rbp)
movq %rdi, -0x8(%rbp)
movq %rsi, -0x10(%rbp)
movq %rdx, -0x18(%rbp)
movq %rcx, -0x20(%rbp)
movl %r8d, -0x24(%rbp)
movq %r9, -0x30(%rbp)
movq -0x8(%rbp), %rax
movq %rax, -0x1a8(%rbp)
leaq -0xd1(%rbp), %rdi
movq %rdi, -0x1a0(%rb... | /greg7mdp[P]parallel-hashmap/build_O0/googletest-src/googletest/include/gtest/internal/gtest-internal.h |
testing::AssertionResult testing::internal::PredicateFormatterFromMatcher<testing::internal::UnorderedElementsAreMatcher<std::tuple<>>>::operator()<phmap::flat_hash_map<int, phmap::priv::NonStandardLayout, phmap::priv::StatefulTestingHash, phmap::priv::StatefulTestingEqual, phmap::priv::Alloc<std::pair<int const, phmap... | AssertionResult operator()(const char* value_text, const T& x) const {
// We convert matcher_ to a Matcher<const T&> *now* instead of
// when the PredicateFormatterFromMatcher object was constructed,
// as matcher_ may be polymorphic (e.g. NotNull()) and we won't
// know which type to instantiate it to ... | pushq %rbp
movq %rsp, %rbp
subq $0x410, %rsp # imm = 0x410
movq %rdi, -0x3d8(%rbp)
movq %rdi, %rax
movq %rax, -0x3d0(%rbp)
movq %rdi, -0x8(%rbp)
movq %rsi, -0x10(%rbp)
movq %rdx, -0x18(%rbp)
movq %rcx, -0x20(%rbp)
movq -0x10(%rbp), %rsi
leaq -0x38(%rbp), %rdi
movq %rdi, -0x3c8(%rbp)
callq 0x73d40
movq -0x3c8... | /greg7mdp[P]parallel-hashmap/build_O0/googletest-src/googlemock/include/gmock/gmock-matchers.h |
phmap::priv::raw_hash_set<phmap::priv::FlatHashMapPolicy<int, phmap::priv::NonStandardLayout>, phmap::priv::StatefulTestingHash, phmap::priv::StatefulTestingEqual, phmap::priv::Alloc<std::pair<int const, phmap::priv::NonStandardLayout>>>::raw_hash_set() | raw_hash_set() noexcept(
std::is_nothrow_default_constructible<hasher>::value&&
std::is_nothrow_default_constructible<key_equal>::value&&
std::is_nothrow_default_constructible<allocator_type>::value) {} | pushq %rbp
movq %rsp, %rbp
subq $0x60, %rsp
movq %rdi, -0x8(%rbp)
movq -0x8(%rbp), %rax
movq %rax, -0x60(%rbp)
callq 0x73a30
movq %rax, %rcx
movq -0x60(%rbp), %rax
movq %rcx, (%rax)
movq $0x0, 0x8(%rax)
movq $0x0, 0x10(%rax)
movq $0x0, 0x18(%rax)
addq $0x28, %rax
movq %rax, -0x58(%rbp)
movl $0x0, -0xc(%rbp)
leaq -0x18(... | /greg7mdp[P]parallel-hashmap/parallel_hashmap/phmap.h |
bool testing::internal::MatchPrintAndExplain<phmap::flat_hash_map<int, phmap::priv::NonStandardLayout, phmap::priv::StatefulTestingHash, phmap::priv::StatefulTestingEqual, phmap::priv::Alloc<std::pair<int const, phmap::priv::NonStandardLayout>>> const, phmap::flat_hash_map<int, phmap::priv::NonStandardLayout, phmap::pr... | bool MatchPrintAndExplain(Value& value, const Matcher<T>& matcher,
MatchResultListener* listener) {
if (!listener->IsInterested()) {
// If the listener is not interested, we do not need to construct the
// inner explanation.
return matcher.Matches(value);
}
StringMatchResult... | pushq %rbp
movq %rsp, %rbp
subq $0x240, %rsp # imm = 0x240
movq %rdi, -0x10(%rbp)
movq %rsi, -0x18(%rbp)
movq %rdx, -0x20(%rbp)
movq -0x20(%rbp), %rdi
callq 0x46e40
testb $0x1, %al
jne 0x73ecb
movq -0x18(%rbp), %rdi
movq -0x10(%rbp), %rsi
callq 0x73d70
andb $0x1, %al
movb %al, -0x1(%rbp)
jmp 0x74072
leaq -0x... | /greg7mdp[P]parallel-hashmap/build_O0/googletest-src/googlemock/include/gmock/gmock-matchers.h |
Subsets and Splits
SQL Console for LLM4Binary/decompile-bench
Filters out entries with file names ending in .cpp, providing a basic subset of the dataset that excludes C++ files.