/aosp_15_r20/prebuilts/go/linux-x86/src/runtime/ |
D | panic32.go | 13 func goPanicExtendIndex(hi int, lo uint, y int) { 17 func goPanicExtendIndexU(hi uint, lo uint, y int) { 23 func goPanicExtendSliceAlen(hi int, lo uint, y int) { 27 func goPanicExtendSliceAlenU(hi uint, lo uint, y int) { 31 func goPanicExtendSliceAcap(hi int, lo uint, y int) { 35 func goPanicExtendSliceAcapU(hi uint, lo uint, y int) { 41 func goPanicExtendSliceB(hi int, lo uint, y int) { 45 func goPanicExtendSliceBU(hi uint, lo uint, y int) { 51 func goPanicExtendSlice3Alen(hi int, lo uint, y int) { 55 func goPanicExtendSlice3AlenU(hi uint, lo uint, y int) { [all …]
|
D | mpallocbits.go | 15 func (b *pageBits) get(i uint) uint { 20 func (b *pageBits) block64(i uint) uint64 { 25 func (b *pageBits) set(i uint) { 30 func (b *pageBits) setRange(i, n uint) { 62 func (b *pageBits) setBlock64(i uint, v uint64) { 67 func (b *pageBits) clear(i uint) { 72 func (b *pageBits) clearRange(i, n uint) { 100 func (b *pageBits) clearBlock64(i uint, v uint64) { 106 func (b *pageBits) popcntRange(i, n uint) (s uint) { 232 func (b *pallocBits) find(npages uintptr, searchIdx uint) (uint, uint) { [all …]
|
D | panic.go | 119 func goPanicIndexU(x uint, y int) { 133 func goPanicSliceAlenU(x uint, y int) { 145 func goPanicSliceAcapU(x uint, y int) { 159 func goPanicSliceBU(x uint, y int) { 169 func goPanicSlice3AlenU(x uint, y int) { 177 func goPanicSlice3AcapU(x uint, y int) { 187 func goPanicSlice3BU(x uint, y int) { 197 func goPanicSlice3CU(x uint, y int) { 211 func panicIndexU(x uint, y int) 213 func panicSliceAlenU(x uint, y int) [all …]
|
D | libfuzzer.go | 23 func libfuzzerTraceCmp1(arg0, arg1 uint8, fakePC uint) { 29 func libfuzzerTraceCmp2(arg0, arg1 uint16, fakePC uint) { 35 func libfuzzerTraceCmp4(arg0, arg1 uint32, fakePC uint) { 41 func libfuzzerTraceCmp8(arg0, arg1 uint64, fakePC uint) { 47 func libfuzzerTraceConstCmp1(arg0, arg1 uint8, fakePC uint) { 53 func libfuzzerTraceConstCmp2(arg0, arg1 uint16, fakePC uint) { 59 func libfuzzerTraceConstCmp4(arg0, arg1 uint32, fakePC uint) { 65 func libfuzzerTraceConstCmp8(arg0, arg1 uint64, fakePC uint) {
|
D | export_test.go | 697 func PackPallocSum(start, max, end uint) PallocSum { return PallocSum(packPallocSum(start, max, end… 705 func (b *PallocBits) Find(npages uintptr, searchIdx uint) (uint, uint) { 708 func (b *PallocBits) AllocRange(i, n uint) { (*pallocBits)(b).allocRange(i, n) } 709 func (b *PallocBits) Free(i, n uint) { (*pallocBits)(b).free(i, n) } 711 func (b *PallocBits) PopcntRange(i, n uint) uint { return (*pageBits)(b).popcntRange(i, n) } 738 func FindBitRange64(c uint64, n uint) uint { return findBitRange64(c, n) } 785 func (d *PallocData) FindScavengeCandidate(searchIdx uint, min, max uintptr) (uint, uint) { 788 func (d *PallocData) AllocRange(i, n uint) { (*pallocData)(d).allocRange(i, n) } 789 func (d *PallocData) ScavengedSetRange(i, n uint) { 800 func FillAligned(x uint64, m uint) uint64 { return fillAligned(x, m) } [all …]
|
/aosp_15_r20/prebuilts/go/linux-x86/src/internal/fuzz/ |
D | trace.go | 24 func libfuzzerTraceCmp1(arg0, arg1 uint8, fakePC uint) {} 25 func libfuzzerTraceCmp2(arg0, arg1 uint16, fakePC uint) {} 26 func libfuzzerTraceCmp4(arg0, arg1 uint32, fakePC uint) {} 27 func libfuzzerTraceCmp8(arg0, arg1 uint64, fakePC uint) {} 29 func libfuzzerTraceConstCmp1(arg0, arg1 uint8, fakePC uint) {} 30 func libfuzzerTraceConstCmp2(arg0, arg1 uint16, fakePC uint) {} 31 func libfuzzerTraceConstCmp4(arg0, arg1 uint32, fakePC uint) {} 32 func libfuzzerTraceConstCmp8(arg0, arg1 uint64, fakePC uint) {} 34 func libfuzzerHookStrCmp(arg0, arg1 string, fakePC uint) {} 35 func libfuzzerHookEqualFold(arg0, arg1 string, fakePC uint) {}
|
/aosp_15_r20/prebuilts/go/linux-x86/test/codegen/ |
D | mathbits.go | 15 func LeadingZeros(n uint) int { 74 func Len(n uint) int { 139 func OnesCount(n uint) int { 190 func ReverseBytes(n uint) uint { 261 func RotateLeftVariable(n uint, m int) uint { 293 func TrailingZeros(n uint) int { 361 func IterateBits(n uint) int { 422 func Add(x, y, ci uint) (r, co uint) { 431 func AddC(x, ci uint) (r, co uint) { 442 func AddZ(x, y uint) (r, co uint) { [all …]
|
D | rotate.go | 135 func rot64nc(x uint64, z uint) uint64 { 157 func rot32nc(x uint32, z uint) uint32 { 179 func rot16nc(x uint16, z uint) uint16 { 195 func rot8nc(x uint8, z uint) uint8 {
|
/aosp_15_r20/prebuilts/go/linux-x86/src/math/bits/ |
D | bits.go | 25 func LeadingZeros(x uint) int { return UintSize - Len(x) } 59 func TrailingZeros(x uint) int { 117 func OnesCount(x uint) int { 176 func RotateLeft(x uint, k int) uint { 226 func Reverse(x uint) uint { 266 func ReverseBytes(x uint) uint { 302 func Len(x uint) int { 360 func Add(x, y, carry uint) (sum, carryOut uint) { 402 func Sub(x, y, borrow uint) (diff, borrowOut uint) { 445 func Mul(x, y uint) (hi, lo uint) { [all …]
|
/aosp_15_r20/prebuilts/go/linux-x86/src/cmd/vendor/golang.org/x/sys/unix/ |
D | ioctl_unsigned.go | 18 func IoctlSetInt(fd int, req uint, value int) error { 26 func IoctlSetPointerInt(fd int, req uint, value int) error { 34 func IoctlSetWinsize(fd int, req uint, value *Winsize) error { 43 func IoctlSetTermios(fd int, req uint, value *Termios) error { 53 func IoctlGetInt(fd int, req uint) (int, error) { 59 func IoctlGetWinsize(fd int, req uint) (*Winsize, error) { 65 func IoctlGetTermios(fd int, req uint) (*Termios, error) {
|
D | zsyscall_linux.go | 14 func FanotifyInit(flags uint, event_f_flags uint) (fd int, err error) { 55 func ioctl(fd int, req uint, arg uintptr) (err error) { 65 func ioctlPtr(fd int, req uint, arg unsafe.Pointer) (err error) { 406 func reboot(magic1 uint, magic2 uint, cmd int, arg string) (err error) { 446 func mountSetattr(dirfd int, pathname string, flags uint, attr *MountAttr, size uintptr) (err error… 615 func CloseRange(first uint, last uint, flags uint) (err error) { 693 func Eventfd(initval uint, flags int) (fd int, err error) { 909 func fsconfig(fd int, cmd uint, key *byte, value *byte, aux int) (err error) { 1326 func OpenTree(dfd int, fileName string, flags uint) (r int, err error) { 1431 func Renameat2(olddirfd int, oldpath string, newdirfd int, newpath string, flags uint) (err error) { [all …]
|
/aosp_15_r20/prebuilts/go/linux-x86/src/crypto/internal/bigmod/ |
D | nat_noasm.go | 11 func addMulVVW1024(z, x *uint, y uint) (c uint) { 15 func addMulVVW1536(z, x *uint, y uint) (c uint) { 19 func addMulVVW2048(z, x *uint, y uint) (c uint) {
|
D | nat_asm.go | 22 func addMulVVW1024(z, x *uint, y uint) (c uint) 25 func addMulVVW1536(z, x *uint, y uint) (c uint) 28 func addMulVVW2048(z, x *uint, y uint) (c uint)
|
D | nat.go | 36 func ctEq(x, y uint) choice { 358 func minusInverseModW(x uint) uint { 393 func bitLen(n uint) int { 694 func addMulVVW(z, x []uint, y uint) (carry uint) {
|
/aosp_15_r20/prebuilts/go/linux-x86/src/hash/crc32/ |
D | gen_const_ppc64le.go | 35 func reflect_bits(b uint64, nr uint) uint64 { 47 func get_remainder(poly uint64, deg uint, n uint) uint64 { 53 func get_quotient(poly uint64, bits, n uint) uint64 { 63 func xnmodp(n uint, poly uint64, deg uint) (uint64, uint64) {
|
/aosp_15_r20/hardware/google/gfxstream/third-party/glm/include/glm/detail/ |
D | func_integer.inl | 190 …GLM_FUNC_QUALIFIER vecType<uint, P> uaddCarry(vecType<uint, P> const & x, vecType<uint, P> const &… 211 …GLM_FUNC_QUALIFIER vecType<uint, P> usubBorrow(vecType<uint, P> const & x, vecType<uint, P> const … 230 …GLM_FUNC_QUALIFIER void umulExtended(vecType<uint, P> const & x, vecType<uint, P> const & y, vecTy…
|
/aosp_15_r20/external/oboe/samples/RhythmGame/third_party/glm/detail/ |
H A D | func_integer.inl | 190 …GLM_FUNC_QUALIFIER vecType<uint, P> uaddCarry(vecType<uint, P> const & x, vecType<uint, P> const &… 211 …GLM_FUNC_QUALIFIER vecType<uint, P> usubBorrow(vecType<uint, P> const & x, vecType<uint, P> const … 230 …GLM_FUNC_QUALIFIER void umulExtended(vecType<uint, P> const & x, vecType<uint, P> const & y, vecTy…
|
/aosp_15_r20/prebuilts/go/linux-x86/src/math/big/ |
D | nat.go | 701 func (z nat) shl(x nat, s uint) nat { 726 func (z nat) shr(x nat, s uint) nat { 749 func (z nat) setBit(x nat, i uint, b uint) nat { 779 func (x nat) bit(i uint) uint { 790 func (x nat) sticky(i uint) uint { 827 func (z nat) trunc(x nat, n uint) nat { 1100 func (z nat) expNNWindowed(x, y nat, logM uint) nat { 1386 func (z nat) subMod2N(x, y nat, n uint) nat {
|
/aosp_15_r20/prebuilts/go/linux-x86/src/cmd/compile/internal/ssa/ |
D | magic.go | 90 func umagicOK(n uint, c int64) bool { 115 func umagic(n uint, c int64) umagicData { 163 func smagicOK(n uint, c int64) bool { 189 func smagic(n uint, c int64) smagicData { 271 func udivisibleOK(n uint, c int64) bool { 291 func udivisible(n uint, c int64) udivisibleData { 373 func sdivisibleOK(n uint, c int64) bool { 395 func sdivisible(n uint, c int64) sdivisibleData {
|
D | magic_test.go | 32 func testMagicExhaustive(t *testing.T, n uint) { 53 func testMagicExhaustiveU(t *testing.T, n uint) { 207 func testDivisibleExhaustiveU(t *testing.T, n uint) { 307 func testDivisibleExhaustive(t *testing.T, n uint) {
|
/aosp_15_r20/prebuilts/go/linux-x86/test/ |
D | prove.go | 36 func f1b(a []int, i int, j uint) int { 73 func f3(a []uint) int { 172 func f5(a, b uint) int { 228 func f8(a, b uint) int { 435 func f13i(a uint) int { 480 func f18(b []int, x int, y uint) { 653 func natcmp(x, y []uint) (r int) { 1051 func sliceBCE1(p []string, h uint) string { 1076 func rshu(x, y uint) int { 1084 func divu(x, y uint) int { [all …]
|
/aosp_15_r20/prebuilts/go/linux-x86/src/cmd/compile/internal/types2/ |
D | check_test.go | 84 func absDiff(x, y uint) uint { 124 func testFiles(t *testing.T, filenames []string, srcs [][]byte, colDelta uint, manual bool, opts ..… 134 func testFilesImpl(t *testing.T, filenames []string, srcs [][]byte, colDelta uint, manual bool, opt… 411 func testDirFiles(t *testing.T, dir string, colDelta uint, manual bool) { 435 func testDir(t *testing.T, dir string, colDelta uint, manual bool) { 452 func testPkg(t *testing.T, filenames []string, colDelta uint, manual bool) {
|
/aosp_15_r20/external/intel-media-driver/media_driver/agnostic/gen11/codec/kernel_free/Source/ |
H A D | downscale_kernel_genx.cpp | 36 matrix_ref<uint, 1, 2> field_flatness, in check_flatness() 117 vector<uint, 2> reserved1, in hme_frame_downscale() 393 vector<uint, 7> reserved, in hme_frame_downscale2()
|
/aosp_15_r20/prebuilts/go/linux-x86/src/cmd/compile/internal/typecheck/_builtin/ |
D | runtime.go | 34 func goPanicIndexU(x uint, y int) 36 func goPanicSliceAlenU(x uint, y int) 38 func goPanicSliceAcapU(x uint, y int) 40 func goPanicSliceBU(x uint, y int) 42 func goPanicSlice3AlenU(x uint, y int) 44 func goPanicSlice3AcapU(x uint, y int) 46 func goPanicSlice3BU(x uint, y int) 48 func goPanicSlice3CU(x uint, y int) 269 func libfuzzerTraceCmp1(uint8, uint8, uint) argument 270 func libfuzzerTraceCmp2(uint16, uint16, uint) argument [all …]
|
/aosp_15_r20/prebuilts/go/linux-x86/src/cmd/internal/src/ |
D | pos.go | 38 func MakePos(base *PosBase, line, col uint) Pos { 169 func format(w io.Writer, filename string, line, col uint, showCol bool) { 181 func formatstr(filename string, line, col uint, showCol bool) string { 222 func NewLinePragmaBase(pos Pos, filename, absFilename string, line, col uint) *PosBase { 386 func makeLicoRaw(line, col uint) lico { 396 func makeLico(line, col uint) lico { 453 func (x lico) withStmt(stmt uint) lico {
|