Home
last modified time | relevance | path

Searched full:gp (Results 1 – 25 of 3313) sorted by relevance

12345678910>>...133

/aosp_15_r20/tools/security/fuzzing/llm/tinyxml2_fuzzer/xml_corpus/
H A Dlarge.xml1GP="HG" P="M1O" Z="PMp9wk">6cIKlaju<i SF="GMSO7IR">Bwr7va9KyxeOxGFYy4<yGeu pHv="cBtvti3e">Z5uMTtc<…
/aosp_15_r20/external/icu/icu4j/main/collate/src/test/java/com/ibm/icu/dev/test/format/
H A DGlobalizationPreferencesTest.java41 GlobalizationPreferences gp = new GlobalizationPreferences(); in TestDefault() local
54 ULocale gpLocale0 = gp.getLocale(0); in TestDefault()
61 ULocale gpLocale1 = gp.getLocale(1); in TestDefault()
68 ULocale gpLocale2 = gp.getLocale(2); in TestDefault()
74 Calendar cal = gp.getCalendar(); in TestDefault()
82 Collator coll = gp.getCollator(); in TestDefault()
90 BreakIterator brk = gp.getBreakIterator(GlobalizationPreferences.BI_CHARACTER); in TestDefault()
99 …DateFormat df = gp.getDateFormat(GlobalizationPreferences.DF_FULL, GlobalizationPreferences.DF_NON… in TestDefault()
108 NumberFormat nf = gp.getNumberFormat(GlobalizationPreferences.NF_NUMBER); in TestDefault()
119 GlobalizationPreferences gp = new GlobalizationPreferences(); in TestFreezable() local
[all …]
/aosp_15_r20/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/format/
H A DGlobalizationPreferencesTest.java44 GlobalizationPreferences gp = new GlobalizationPreferences(); in TestDefault() local
57 ULocale gpLocale0 = gp.getLocale(0); in TestDefault()
64 ULocale gpLocale1 = gp.getLocale(1); in TestDefault()
71 ULocale gpLocale2 = gp.getLocale(2); in TestDefault()
77 Calendar cal = gp.getCalendar(); in TestDefault()
85 Collator coll = gp.getCollator(); in TestDefault()
93 BreakIterator brk = gp.getBreakIterator(GlobalizationPreferences.BI_CHARACTER); in TestDefault()
102 …DateFormat df = gp.getDateFormat(GlobalizationPreferences.DF_FULL, GlobalizationPreferences.DF_NON… in TestDefault()
111 NumberFormat nf = gp.getNumberFormat(GlobalizationPreferences.NF_NUMBER); in TestDefault()
122 GlobalizationPreferences gp = new GlobalizationPreferences(); in TestFreezable() local
[all …]
/aosp_15_r20/prebuilts/go/linux-x86/src/runtime/
Dproc.go370 gp := getg()
371 // Call gosched if gp.preempt is set; we may be in a tight loop that
373 if !gp.preempt && sched.npidle.Load() > 0 {
412 gp := mp.curg
413 status := readgstatus(gp)
419 gp.waitreason = reason
428 // The goroutine can be made runnable again by calling goready(gp).
443 func goready(gp *g, traceskip int) {
445 ready(gp, traceskip, true)
507 gp := getg()
[all …]
Dlockrank_on.go74 gp := getg()
77 i := gp.m.locksHeldLen
78 if i >= len(gp.m.locksHeld) {
81 gp.m.locksHeld[i].rank = rank
82 gp.m.locksHeld[i].lockAddr = uintptr(unsafe.Pointer(l))
83 gp.m.locksHeldLen++
87 checkRanks(gp, gp.m.locksHeld[i-1].rank, rank)
96 func printHeldLocks(gp *g) {
97 if gp.m.locksHeldLen == 0 {
102 for j, held := range gp.m.locksHeld[:gp.m.locksHeldLen] {
[all …]
Dstack.go447 gp := getg()
489 if stackNoCache != 0 || gp.m.p == 0 || gp.m.preemptoff != "" {
494 c := gp.m.p.ptr().mcache
745 func adjustctxt(gp *g, adjinfo *adjustinfo) {
746 adjustpointer(adjinfo, unsafe.Pointer(&gp.sched.ctxt))
751 bp := gp.sched.bp
758 oldfp := gp.sched.bp
759 adjustpointer(adjinfo, unsafe.Pointer(&gp.sched.bp))
764 if oldfp == gp.sched.sp-goarch.PtrSize {
765 memmove(unsafe.Pointer(gp.sched.bp), unsafe.Pointer(oldfp), goarch.PtrSize)
[all …]
Dtraceback.go81 // for u.init(gp, 0); u.valid(); u.next() {
118 // init initializes u to start unwinding gp's stack and positions the
119 // iterator on gp's innermost frame. gp must not be the current G.
122 func (u *unwinder) init(gp *g, flags unwindFlags) {
129 u.initAt(^uintptr(0), ^uintptr(0), ^uintptr(0), gp, flags)
132 func (u *unwinder) initAt(pc0, sp0, lr0 uintptr, gp *g, flags unwindFlags) {
133 // Don't call this "g"; it's too easy get "g" and "gp" confused.
134 if ourg := getg(); ourg == gp && ourg == ourg.m.curg {
151 if pc0 == ^uintptr(0) && sp0 == ^uintptr(0) { // Signal to fetch saved values from gp.
152 if gp.syscallsp != 0 {
[all …]
Dmgcmark.go131 forEachGRace(func(gp *g) {
136 if !gp.gcscandone {
137 println("gp", gp, "goid", gp.goid,
138 "status", readgstatus(gp),
139 "gcscandone", gp.gcscandone)
201 gp := work.stackRoots[i-work.baseStacks]
205 status := readgstatus(gp) // We are not in a scan state
206 if (status == _Gwaiting || status == _Gsyscall) && gp.waitsince == 0 {
207 gp.waitsince = work.tstart
218 selfScan := gp == userG && readgstatus(userG) == _Grunning
[all …]
Dpanic.go63 gp := getg()
64 if gp != nil && gp.m != nil && gp.m.mallocing != 0 {
77 gp := getg()
78 if gp != nil && gp.m != nil && gp.m.mallocing != 0 {
273 gp := getg()
274 if gp.m.curg != gp {
280 d.link = gp._defer
281 gp._defer = d
388 gp := getg()
389 if gp.m.curg != gp {
[all …]
Dlock_sema.go43 gp := getg()
44 if gp.m.locks < 0 {
47 gp.m.locks++
53 semacreate(gp.m)
84 gp.m.nextwaitm = muintptr(v &^ locked)
85 if atomic.Casuintptr(&l.key, v, uintptr(unsafe.Pointer(gp.m))|locked) {
110 gp := getg()
129 gp.m.mLockProfile.recordUnlock(l)
130 gp.m.locks--
131 if gp.m.locks < 0 {
[all …]
Dsignal_unix.go340 // doSigPreempt handles a preemption signal on gp.
341 func doSigPreempt(gp *g, ctxt *sigctxt) {
344 if wantAsyncPreempt(gp) {
345 if ok, newpc := isAsyncSafePoint(gp, ctxt.sigpc(), ctxt.sigsp(), ctxt.siglr()); ok {
352 gp.m.preemptGen.Add(1)
353 gp.m.signalPending.Store(0)
411 gp := *(**g)(unsafe.Pointer(s.base()))
412 return gp
436 gp := sigFetchG(c)
437 setg(gp)
[all …]
Dcoro.go25 gp guintptr member
43 gp := getg()
45 mp := gp.m
48 gp = newproc1(startfv, gp, pc, true, waitReasonCoroutine)
58 gp.coroarg = c
59 c.gp.set(gp)
67 gp := getg()
68 c := gp.coroarg
69 gp.coroarg = nil
78 gp := getg()
[all …]
Dsignal_windows.go140 gp := sigFetchG()
141 if gp == nil {
145 var fn func(info *exceptionrecord, r *context, gp *g) int32
172 if gp != gp.m.g0 {
174 ret = fn(ep.record, ep.context, gp)
177 ret = fn(ep.record, ep.context, gp)
199 ep.context.set_sp(gp.m.g0.sched.sp)
212 func exceptionhandler(info *exceptionrecord, r *context, gp *g) int32 {
217 if gp.throwsplit || isAbort(r) {
222 winthrow(info, r, gp)
[all …]
Dpreempt.go76 // suspendG suspends goroutine gp at a safe-point and returns the
105 func suspendG(gp *g) suspendGState {
123 switch s := readgstatus(gp); s {
134 dumpgstatus(gp)
153 if !casGFromPreempted(gp, _Gpreempted, _Gwaiting) {
165 // This may race with execution or readying of gp.
167 if !castogscanstatus(gp, s, s|_Gscan) {
174 gp.preemptStop = false
175 gp.preempt = false
176 gp.stackguard0 = gp.stack.lo + stackGuard
[all …]
/aosp_15_r20/external/igt-gpu-tools/overlay/
H A Dgpu-perf.c202 static int perf_tracepoint_open(struct gpu_perf *gp, int tp_id, in perf_tracepoint_open() argument
222 n = gp->nr_cpus * (gp->nr_events+1); in perf_tracepoint_open()
223 fd = realloc(gp->fd, n*sizeof(int)); in perf_tracepoint_open()
224 sample = realloc(gp->sample, n*sizeof(*gp->sample)); in perf_tracepoint_open()
227 gp->fd = fd; in perf_tracepoint_open()
228 gp->sample = sample; in perf_tracepoint_open()
230 fd += gp->nr_events * gp->nr_cpus; in perf_tracepoint_open()
231 sample += gp->nr_events * gp->nr_cpus; in perf_tracepoint_open()
232 for (n = 0; n < gp->nr_cpus; n++) { in perf_tracepoint_open()
246 gp->nr_events++; in perf_tracepoint_open()
[all …]
/aosp_15_r20/cts/tests/tests/mediastress/src/android/mediastress/cts/
H A DH263QcifShortPlayerTest.java25 "bbb_short.ffmpeg.176x144.3gp.h263_300kbps_12fps.libfaac_mono_24kbps_11025Hz.3gp",
26 "bbb_short.ffmpeg.176x144.3gp.h263_300kbps_12fps.libfaac_mono_24kbps_22050Hz.3gp",
27 "bbb_short.ffmpeg.176x144.3gp.h263_300kbps_12fps.libfaac_stereo_128kbps_11025Hz.3gp",
28 "bbb_short.ffmpeg.176x144.3gp.h263_300kbps_12fps.libfaac_stereo_128kbps_22050Hz.3gp",
29 "bbb_short.ffmpeg.176x144.3gp.h263_300kbps_12fps.libfaac_stereo_24kbps_11025Hz.3gp",
30 "bbb_short.ffmpeg.176x144.3gp.h263_300kbps_12fps.libfaac_stereo_24kbps_22050Hz.3gp",
31 "bbb_short.ffmpeg.176x144.3gp.h263_300kbps_25fps.libfaac_mono_24kbps_11025Hz.3gp",
32 "bbb_short.ffmpeg.176x144.3gp.h263_300kbps_25fps.libfaac_mono_24kbps_22050Hz.3gp",
33 "bbb_short.ffmpeg.176x144.3gp.h263_300kbps_25fps.libfaac_stereo_128kbps_11025Hz.3gp",
34 "bbb_short.ffmpeg.176x144.3gp.h263_300kbps_25fps.libfaac_stereo_128kbps_22050Hz.3gp",
[all …]
/aosp_15_r20/prebuilts/vndk/v31/x86/arch-x86/shared/vndk-core/
Dlibsqlite.so__cxa_finalize __errno __memcpy_chk __memset_chk __stack_chk_fail __strlen_chk access android_fdsan_close_with_tag android_fdsan_create_owner_tag android_fdsan_exchange_owner_tag close fchmod fchown fcntl fdatasync free fstat ftruncate64 getcwd ...
/aosp_15_r20/prebuilts/vndk/v32/x86/arch-x86/shared/vndk-core/
Dlibsqlite.so__cxa_finalize __errno __memcpy_chk __memset_chk __stack_chk_fail __strlen_chk access android_fdsan_close_with_tag android_fdsan_create_owner_tag android_fdsan_exchange_owner_tag close fchmod fchown fcntl fdatasync free fstat ftruncate64 getcwd ...
/aosp_15_r20/external/ms-tpm-20-ref/TPMCmd/tpm/src/subsystem/
H A DHierarchy.c56 gp.disableClear = FALSE; in HierarchyPreInstall_Init()
59 gp.EPSeed.t.size = sizeof(gp.EPSeed.t.buffer); in HierarchyPreInstall_Init()
60 gp.SPSeed.t.size = sizeof(gp.SPSeed.t.buffer); in HierarchyPreInstall_Init()
61 gp.PPSeed.t.size = sizeof(gp.PPSeed.t.buffer); in HierarchyPreInstall_Init()
63 _plat__GetEPS(gp.EPSeed.t.size, gp.EPSeed.t.buffer); in HierarchyPreInstall_Init()
65 CryptRandomGenerate(gp.EPSeed.t.size, gp.EPSeed.t.buffer); in HierarchyPreInstall_Init()
67 CryptRandomGenerate(gp.SPSeed.t.size, gp.SPSeed.t.buffer); in HierarchyPreInstall_Init()
68 CryptRandomGenerate(gp.PPSeed.t.size, gp.PPSeed.t.buffer); in HierarchyPreInstall_Init()
71 gp.ownerAuth.t.size = 0; in HierarchyPreInstall_Init()
72 gp.endorsementAuth.t.size = 0; in HierarchyPreInstall_Init()
[all …]
H A DDA.c58 gp.failedTries = 0; in DAPreInstall_Init()
59 gp.maxTries = 3; in DAPreInstall_Init()
60 gp.recoveryTime = 1000; // in seconds (~16.67 minutes) in DAPreInstall_Init()
61 gp.lockoutRecovery = 1000; // in seconds in DAPreInstall_Init()
62 gp.lockOutAuthEnabled = TRUE; // Use of lockoutAuth is enabled in DAPreInstall_Init()
115 if(gp.lockoutRecovery == 0) in DAStartup()
117 gp.lockOutAuthEnabled = TRUE; in DAStartup()
124 if(gp.recoveryTime != 0 in DAStartup()
125 && gp.failedTries < gp.maxTries in DAStartup()
129 gp.failedTries += g_daUsed; in DAStartup()
[all …]
/aosp_15_r20/external/llvm/test/MC/Mips/
H A Dcpsetup.s33 # NXX-NEXT: sd $gp, 8($sp)
34 # NXX-NEXT: lui $gp, 0
37 # NXX-NEXT: addiu $gp, $gp, 0
40 # N64-NEXT: daddu $gp, $gp, $25
47 # NXX-NEXT: ld $gp, 8($sp)
61 # NXX-NEXT: move $2, $gp
62 # NXX-NEXT: lui $gp, 0
65 # NXX-NEXT: addiu $gp, $gp, 0
68 # N64-NEXT: daddu $gp, $gp, $25
75 # NXX-NEXT: move $gp, $2
[all …]
/aosp_15_r20/prebuilts/go/linux-x86/src/cmd/compile/internal/ssa/_gen/
DPPC64Ops.go124gp = buildReg("R3 R4 R5 R6 R7 R8 R9 R10 R11 R12 R14 R15 R16 R17 R18 R19 R20 R21 R22 R23 R24 R25 R…
137 gp01 = regInfo{inputs: nil, outputs: []regMask{gp}}
138 gp11 = regInfo{inputs: []regMask{gp | sp | sb}, outputs: []regMask{gp}}
139 xergp = regInfo{inputs: []regMask{xer}, outputs: []regMask{gp}, clobbers: xer}
140 gp11cxer = regInfo{inputs: []regMask{gp | sp | sb}, outputs: []regMask{gp}, clobbers: xer}
141 gp11xer = regInfo{inputs: []regMask{gp | sp | sb}, outputs: []regMask{gp, xer}}
142 …gp1xer1xer = regInfo{inputs: []regMask{gp | sp | sb, xer}, outputs: []regMask{gp, xer}, clobbers:…
143 gp21 = regInfo{inputs: []regMask{gp | sp | sb, gp | sp | sb}, outputs: []regMask{gp}}
144 gp21a0 = regInfo{inputs: []regMask{gp, gp | sp | sb}, outputs: []regMask{gp}}
145 …gp21cxer = regInfo{inputs: []regMask{gp | sp | sb, gp | sp | sb}, outputs: []regMask{gp}, clobb…
[all …]
/aosp_15_r20/external/llvm/test/CodeGen/Mips/msa/
H A Dframeindex.ll39 ; MIPS32-AE: addiu [[BASE:\$([0-9]+|gp)]], $sp, 512
42 ; MIPS32-AE: addiu [[BASE:\$([0-9]+|gp)]], $sp, 512
56 ; MIPS32-AE: ori [[R2:\$([0-9]+|gp)]], $zero, 32768
57 ; MIPS32-AE: addu [[BASE:\$([0-9]+|gp)]], $sp, [[R2]]
60 ; MIPS32-AE: ori [[R2:\$([0-9]+|gp)]], $zero, 32768
61 ; MIPS32-AE: addu [[BASE:\$([0-9]+|gp)]], $sp, [[R2]]
75 ; MIPS32-AE: ori [[R2:\$([0-9]+|gp)]], $zero, 32768
76 ; MIPS32-AE: addu [[BASE:\$([0-9]+|gp)]], $sp, [[R2]]
79 ; MIPS32-AE: ori [[R2:\$([0-9]+|gp)]], $zero, 32768
80 ; MIPS32-AE: addu [[BASE:\$([0-9]+|gp)]], $sp, [[R2]]
[all …]
/aosp_15_r20/external/ms-tpm-20-ref/TPMCmd/tpm/src/command/Hierarchy/
H A DClear.c61 if(gp.disableClear) in TPM2_Clear()
67 CryptRandomGenerate(sizeof(gp.SPSeed.t.buffer), gp.SPSeed.t.buffer); in TPM2_Clear()
70 CryptRandomGenerate(sizeof(gp.shProof.t.buffer), gp.shProof.t.buffer); in TPM2_Clear()
71 CryptRandomGenerate(sizeof(gp.ehProof.t.buffer), gp.ehProof.t.buffer); in TPM2_Clear()
77 MemorySet(&gp.ownerAuth, 0, sizeof(gp.ownerAuth)); in TPM2_Clear()
78 MemorySet(&gp.endorsementAuth, 0, sizeof(gp.endorsementAuth)); in TPM2_Clear()
79 MemorySet(&gp.lockoutAuth, 0, sizeof(gp.lockoutAuth)); in TPM2_Clear()
82 gp.ownerAlg = gp.endorsementAlg = gp.lockoutAlg = TPM_ALG_NULL; in TPM2_Clear()
83 MemorySet(&gp.ownerPolicy, 0, sizeof(gp.ownerPolicy)); in TPM2_Clear()
84 MemorySet(&gp.endorsementPolicy, 0, sizeof(gp.endorsementPolicy)); in TPM2_Clear()
[all …]
/aosp_15_r20/frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/
H A DMediaNames.java56 public static final String VIDEO_SHORT_3GP = "/sdcard/media_api/video/short.3gp";
57 public static final String VIDEO_LARGE_SIZE_3GP = "/sdcard/media_api/video/border_large.3gp";
58 public static final String VIDEO_H263_AAC = "/sdcard/media_api/video/H263_56_AAC_24.3gp";
59 public static final String VIDEO_H263_AMR = "/sdcard/media_api/video/H263_56_AMRNB_6.3gp";
60 public static final String VIDEO_H264_AAC = "/sdcard/media_api/video/H264_320_AAC_64.3gp";
61 public static final String VIDEO_H264_AMR = "/sdcard/media_api/video/H264_320_AMRNB_6.3gp";
64 public static final String VIDEO_HIGHRES_H263 = "/sdcard/media_api/video/H263_500_AMRNB_12.3gp";
65 public static final String VIDEO_HIGHRES_MP4 = "/sdcard/media_api/video/H264_500_AAC_128.3gp";
79 "/sdcard/media_api/video/H263_500_AMRNB_12.3gp",
80 "/sdcard/media_api/video/H263_56_AAC_24.3gp",
[all …]

12345678910>>...133