CodeQL library for C/C++
codeql/cpp-all 0.12.9 (changelog, source)
Search

Class LP64

The LP64 architecture has longs and pointers of 64 bits.

Import path

import semmle.code.cpp.padding.Padding

Direct supertypes

Indirect supertypes

Predicates

doubleAlign

Gets the alignment boundary for doubles, in bits.

longDoubleAlign

Gets the alignment boundary for long doubles, in bits.

longDoubleSize

Gets the size of a long double, in bits.

longLongAlign

Gets the alignment boundary for long longs, in bits.

longSize

Gets the size of a long int, in bits.

pointerSize

Gets the size of a pointer, in bits.

Inherited predicates

alignment

Gets the desired alignment boundary of type t as a struct field on this architecture, in bits.

from Architecture
allowHeterogeneousBitfields

Holds if this architecture allow bitfields with declared types of different sizes to be packed together.

from UnixArchitecture
baseClassSize

Gets the bit size of class cd.getBaseClass() when used as a base class of class cd.getDerivedClass().

from UnixArchitecture
bitSize

Gets the bit size of type t; that is, the number of bits a value with type t takes up on this architecture, without any trailing padding on structs and unions.

from Architecture
charAt

Returns a one-character string containing the character in the receiver at the given index (which ranges from 0 through length minus one)

from string
codePointAt

Returns an integer for the Unicode code point value of the character starting at the given index, counted by UTF-16 code units.

from string
codePointCount

Returns the number of Unicode code points found in the receiver between the given start index (inclusive) and end index (exclusive).

from string
enumAlignment

Gets the alignment of enum type e.

from Architecture
enumBitSize

Gets the bit size of enum type e.

from Architecture
indexOf

Returns all the offsets (starting at 0) at which the given string occurs in the receiver. Has no result if the string does not occur in the receiver.

from string
indexOf

Returns the index of the n’th (starting at 0) occurrence of the given string within the receiver, starting at the given 0-based offset. Has no result if the string does not occur in the receiver.

from string
integralBitSize

Gets the bit size of type t. Only holds if t is an integral or enum type.

from Architecture
isLowercase

Holds when the receiver contains no upper-case letters. This includes the case where the receiver contains no letters at all, for example, if it’s an empty string or only consists of non-letter symbols.

from string
isUppercase

Holds when the receiver contains no lower-case letters. This includes the case where the receiver contains no letters at all, for example, if it’s an empty string or only consists of non-letter symbols.

from string
length

Returns the length of the receiver (in UTF-16 code units)

from string
longLongSize

Gets the size of a long long, in bits.

from UnixArchitecture
matches

Holds when the receiver matches the pattern. Patterns are matched by case sensitive string matching, and there are two wildcards: _ matches a single character, and % matches any sequence of characters. To match the actual characters _ or % in the pattern, they must be escaped using backslashes. For example, "anythingstring%".matches("%string\\%") holds. To match a literal backslash in front of _ or %, you must escape the backslash. Backslashes that are not part of an escape sequence are matched as literals.

from string
paddedSize

Gets the padded size of type t on this architecture; that is, the number of bits that ‘sizeof’ should return, taking into account any trailing padding on top of the bit size.

from Architecture
prefix

Returns the substring of the receiver ending at the given 0-based exclusive offset

from string
regexpCapture

When the given regular expression matches the entire receiver, returns the substring matched by the given capture group (starting at 1). The regex format used is Java’s Pattern.

from string
regexpFind

Returns a substring of the receiver which matches the given regular expression. Also returns the offset within the receiver (starting at 0) at which the match occurred (occurrenceOffset), and the number of matches which occur at smaller offsets (occurrenceIndex). The regex format used is Java’s Pattern.

from string
regexpMatch

Holds when the given regular expression matches the entire receiver. The regex format used is Java’s Pattern.

from string
regexpReplaceAll

Returns a copy of the receiver with every substring which matches the given regular expression is replaced by the replacement. The regex format used is Java’s Pattern. The replacement string can contain references to captured groups as described in Java’s appendReplacement docs.

from string
replaceAll

Returns a copy of the receiver with all occurrences of the target replaced by the replacement

from string
splitAt

Returns all the substrings obtained by splitting the receiver at every occurrence of the argument. Trailing empty substrings are omitted. Splitting at an empty string returns all the characters that the receiver consists of.

from string
splitAt

Returns the n’th (starting at 0) substring obtained by splitting the receiver at every occurrence of the argument. Trailing empty substrings are omitted. Splitting at an empty string returns all the characters that the receiver consists of.

from string
substring

Returns the substring of the receiver which starts and ends at the given indices. Both indices are 0-based. The start index is inclusive and the end index is exclusive.

from string
suffix

Returns the substring of the receiver starting at the given 0-based inclusive offset

from string
toDate

Returns the date, if any, obtained by parsing the receiver. The recognized formats are described in the documentation.

from string
toFloat

Returns the 64-bit floating point number, if any, obtained by parsing the receiver. The parsing rules are described in Java’s valueOf docs.

from string
toInt

Returns the 32-bit signed integer, if any, obtained by parsing the receiver. The number may consist of an optional leading + or -, followed by one or more digits. Has no result if the value exceeds the value range supported by the int type.

from string
toLowerCase

Returns a copy of the receiver with all uppercase characters replaced by lowercase ones according to Unicode case conversion rules.

from string
toString

Returns the receiver

from string
toUpperCase

Returns a copy of the receiver with all lowercase characters replaced by uppercase ones according to Unicode case conversion rules.

from string
trim

Returns a copy of the receiver with all whitespace removed from the beginning and end of the string (where whitespace is defined as Unicode code points ‘\u0000’ through ‘\u0020’ inclusive)

from string
wastedSpace

Gets the wasted space of type t; that is, the number of bits spent on padding. This is zero for primitive types, and depends on struct fields and their alignment otherwise. Trailing padding is counted.

from Architecture
wideCharSize

Gets the size of a wchar_t, in bits.

from UnixArchitecture

Charpred