| /src/sys/external/bsd/drm2/dist/drm/i915/selftests/ |
| igt_flush_test.c | 12 #include "gt/intel_gt.h" 13 #include "gt/intel_gt_requests.h" 22 struct intel_gt *gt = &i915->gt; local 23 int ret = intel_gt_is_wedged(gt) ? -EIO : 0; 27 if (intel_gt_wait_for_idle(gt, HZ / 5) == -ETIME) { 35 intel_gt_set_wedged(gt);
|
| igt_live_test.c | 13 #include "gt/intel_gt_requests.h" 24 struct intel_gt *gt = &i915->gt; local 33 err = intel_gt_wait_for_idle(gt, MAX_SCHEDULE_TIMEOUT); 42 for_each_engine(engine, gt, id) 65 for_each_engine(engine, &i915->gt, id) {
|
| igt_spinner.h | 13 #include "gt/intel_engine.h" 22 struct intel_gt *gt; member in struct:igt_spinner 29 int igt_spinner_init(struct igt_spinner *spin, struct intel_gt *gt);
|
| mock_gem_device.c | 33 #include "gt/intel_gt.h" 34 #include "gt/intel_gt_requests.h" 35 #include "gt/mock_engine.h" 49 struct intel_gt *gt = &i915->gt; local 54 for_each_engine(engine, gt, id) 56 } while (intel_gt_retire_requests_timeout(gt, MAX_SCHEDULE_TIMEOUT)); 64 intel_gt_driver_remove(&i915->gt); 74 intel_gt_driver_late_release(&i915->gt); 172 intel_gt_init_early(&i915->gt, i915) [all...] |
| i915_selftest.c | 31 #include "gt/intel_gt_pm.h" 306 if (intel_gt_pm_wait_for_idle(&i915->gt)) 309 return intel_gt_terminally_wedged(&i915->gt); 326 struct intel_gt *gt = data; local 329 if (intel_gt_pm_wait_for_idle(gt)) 332 return intel_gt_terminally_wedged(gt); 337 struct intel_gt *gt = data; local 339 if (igt_flush_test(gt->i915)) 342 i915_gem_drain_freed_objects(gt->i915);
|
| /src/sys/external/bsd/drm2/dist/drm/i915/gt/uc/ |
| intel_huc_fw.c | 11 #include "gt/intel_gt.h" 23 struct intel_gt *gt = huc_to_gt(huc); local 24 struct intel_uc *uc = >->uc; 25 struct drm_i915_private *i915 = gt->i915;
|
| intel_guc_fw.c | 17 #include "gt/intel_gt.h" 57 /* allows for 5us (in 10ns units) before GT can go to RC6 */ 140 struct intel_gt *gt = guc_to_gt(guc); local 141 struct intel_uncore *uncore = gt->uncore;
|
| intel_huc.c | 13 #include "gt/intel_gt.h" 64 struct intel_gt *gt = huc_to_gt(huc); local 65 struct intel_guc *guc = >->uc.guc; 71 err = i915_inject_probe_error(gt->i915, -ENXIO); 160 struct intel_gt *gt = huc_to_gt(huc); local 161 struct intel_guc *guc = >->uc.guc; 169 ret = i915_inject_probe_error(gt->i915, -ENXIO); 181 ret = __intel_wait_for_register(gt->uncore, 195 i915_probe_error(gt->i915, "HuC: Authentication failed %d\n", ret); 213 struct intel_gt *gt = huc_to_gt(huc) local [all...] |
| /src/sys/external/bsd/drm2/dist/drm/i915/gt/ |
| selftest_gt_pm.c | 18 struct intel_gt *gt = arg; local 24 intel_gt_suspend_prepare(gt); 25 intel_gt_suspend_late(gt); 27 if (gt->rc6.enabled) { 29 intel_gt_set_wedged_on_init(gt); 34 err = intel_gt_resume(gt); 38 if (gt->rc6.supported && !gt->rc6.enabled) { 40 intel_gt_set_wedged_on_init(gt); 45 err = st_llc_verify(>->llc) [all...] |
| debugfs_engines.c | 21 struct intel_gt *gt = m->private; local 27 for_each_engine(engine, gt, id) 34 void debugfs_engines_register(struct intel_gt *gt, struct dentry *root) 40 debugfs_gt_register_files(gt, root, files, ARRAY_SIZE(files));
|
| intel_reset.h | 24 void intel_gt_init_reset(struct intel_gt *gt); 25 void intel_gt_fini_reset(struct intel_gt *gt); 28 void intel_gt_handle_error(struct intel_gt *gt, 34 void intel_gt_reset(struct intel_gt *gt, 42 int __must_check intel_gt_reset_trylock(struct intel_gt *gt, int *srcu); 43 void intel_gt_reset_unlock(struct intel_gt *gt, int tag); 45 void intel_gt_set_wedged(struct intel_gt *gt); 46 bool intel_gt_unset_wedged(struct intel_gt *gt); 47 int intel_gt_terminally_wedged(struct intel_gt *gt); 53 void intel_gt_set_wedged_on_init(struct intel_gt *gt); 61 struct intel_gt *gt; member in struct:intel_wedge_me [all...] |
| selftest_reset.c | 17 struct intel_gt *gt = arg; local 24 igt_global_reset_lock(gt); 25 wakeref = intel_runtime_pm_get(gt->uncore->rpm); 27 reset_count = i915_reset_count(>->i915->gpu_error); 29 intel_gt_reset(gt, ALL_ENGINES, NULL); 31 if (i915_reset_count(>->i915->gpu_error) == reset_count) { 36 intel_runtime_pm_put(gt->uncore->rpm, wakeref); 37 igt_global_reset_unlock(gt); 39 if (intel_gt_is_wedged(gt)) 47 struct intel_gt *gt = arg local 68 struct intel_gt *gt = arg; local 112 struct intel_gt *gt = arg; local 176 struct intel_gt *gt = &i915->gt; local [all...] |
| intel_gt_pm.c | 28 static void user_forcewake(struct intel_gt *gt, bool suspend) 30 int count = atomic_read(>->user_wakeref); 36 intel_gt_pm_get(gt); 38 GEM_BUG_ON(count > atomic_read(>->wakeref.count)); 39 atomic_sub(count, >->wakeref.count); 41 atomic_add(count, >->wakeref.count); 43 intel_gt_pm_put(gt); 48 struct intel_gt *gt = container_of(wf, typeof(*gt), wakeref); local 49 struct drm_i915_private *i915 = gt->i915 80 struct intel_gt *gt = container_of(wf, typeof(*gt), wakeref); local [all...] |
| intel_timeline_types.h | 87 struct intel_gt *gt; member in struct:intel_timeline
|
| selftest_rc6.c | 22 struct intel_gt *gt = arg; local 23 struct intel_rc6 *rc6 = >->rc6; 37 if (IS_VALLEYVIEW(gt->i915) || IS_CHERRYVIEW(gt->i915)) 40 wakeref = intel_runtime_pm_get(gt->uncore->rpm); 65 intel_uncore_read_fw(gt->uncore, GEN6_RC_STATE), 66 intel_uncore_read_fw(gt->uncore, GEN6_RC_CONTROL)); 74 intel_runtime_pm_put(gt->uncore->rpm, wakeref); 112 randomised_engines(struct intel_gt *gt, 121 for_each_engine(engine, gt, id 142 struct intel_gt *gt = arg; local [all...] |
| intel_gt_requests.c | 37 static bool flush_submission(struct intel_gt *gt) 43 if (!intel_gt_pm_is_awake(gt)) 46 for_each_engine(engine, gt, id) { 133 long intel_gt_retire_requests_timeout(struct intel_gt *gt, long timeout) 135 struct intel_gt_timelines *timelines = >->timelines; 145 flush_submission(gt); /* kick the ksoftirqd tasklets */ 170 if (!retire_requests(tl) || flush_submission(gt)) 196 int intel_gt_wait_for_idle(struct intel_gt *gt, long timeout) 199 if (!intel_gt_pm_is_awake(gt)) 202 while ((timeout = intel_gt_retire_requests_timeout(gt, timeout)) > 0) 213 struct intel_gt *gt = local [all...] |
| selftest_engine_heartbeat.c | 152 struct intel_gt *gt = arg; local 159 for_each_engine(engine, gt, id) { 172 struct intel_gt *gt = arg; local 179 for_each_engine(engine, gt, id) { 275 struct intel_gt *gt = arg; local 284 for_each_engine(engine, gt, id) { 337 struct intel_gt *gt = arg; local 346 for_each_engine(engine, gt, id) { 369 if (intel_gt_is_wedged(&i915->gt)) 375 err = intel_gt_live_subtests(tests, &i915->gt); [all...] |
| /src/lib/libc/gen/ |
| getpass.c | 89 struct termios gt; local 120 if (tcgetattr(fd[0], >) == -1) { 124 memset(>, -1, sizeof(gt)); 129 struct termios st = gt; 182 #define C(a, b) ((gt.c_cc[(a)] == _POSIX_VDISABLE || gt.c_cc[(a)] == '\0') ? \ 183 (b) : gt.c_cc[(a)]) 294 (void)tcsetattr(fd[0], TCSAFLUSH|TCSASOFT, >);
|
| /src/external/gpl3/gcc/dist/gcc/ |
| genflags.cc | 148 const char *lt, *gt; local 159 gt = strchr (name, '>'); 160 if (lt || gt)
|
| /src/external/gpl3/gcc.old/dist/gcc/ |
| genflags.cc | 148 const char *lt, *gt; local 159 gt = strchr (name, '>'); 160 if (lt || gt)
|
| /src/sys/external/bsd/drm2/dist/drm/i915/ |
| intel_wopcm.c | 231 struct intel_gt *gt = &i915->gt; local 232 u32 guc_fw_size = intel_uc_fw_get_upload_size(>->uc.guc.fw); 233 u32 huc_fw_size = intel_uc_fw_get_upload_size(>->uc.huc.fw); 251 if (__wopcm_regs_locked(gt->uncore, &guc_wopcm_base, &guc_wopcm_size)) {
|
| /src/usr.sbin/mrouted/ |
| rsrr.c | 51 #define GET_SCOPE(gt) { \ 53 if (((gt)->gt_mcastgrp & 0xff000000) == 0xef000000) \ 55 if (scoped_addr(_i, (gt)->gt_mcastgrp)) \ 56 VIFM_SET(_i, (gt)->gt_scope); \ 82 static void rsrr_cache(struct gtable *gt, struct rsrr_rq *route_query); 265 struct gtable *gt,local_g; local 305 gt = gtp ? gtp->gt_gnext : kernel_table; 308 route_reply->in_vif = gt->gt_route->rt_parent; 309 route_reply->out_vif_bm = gt->gt_grpmems; 313 rsrr_cache(gt,route_query) [all...] |
| /src/external/bsd/nvi/dist/vi/ |
| v_ex.c | 150 static CHAR_T gt[] = {'>', 0}; local 153 argv_exp0(sp, &cmd, gt, 2);
|
| /src/external/gpl2/rcs/dist/src/ |
| maketime.c | 203 time_t d, gt; local 220 gt = t_cache[localzone]; 221 gtm = gt ? &tm_cache[localzone] : time2tm(gt,localzone); 227 gt += d; 228 gtm = time2tm(gt,localzone); 230 t_cache[localzone] = gt; 247 return gt;
|
| /src/sys/arch/prep/pci/ |
| gten.c | 122 struct gten_softc *gt = device_private(self); local 131 >->gt_memaddr, >->gt_memsize, NULL); 137 gt->gt_dev = self; 139 gt->gt_ri = >en_console_ri; 140 gt->gt_nscreens = 1; 142 gt->gt_ri = kmem_zalloc(sizeof(*gt->gt_ri), 148 (bus_space_handle_t *) >->gt_ri->ri_bits, 151 error = bus_space_map(pa->pa_memt, gt->gt_memaddr + GTEN_VRAM_OFFSET 244 struct gten_softc *gt = v; local 273 struct gten_softc *gt = v; local 287 struct gten_softc *gt = v; local 306 struct gten_softc *gt = v; local [all...] |