| /src/games/ching/printching/ |
| printching.c | 96 static int moving[6]; variable 119 moving[i] = 1; 121 moving[i] = 0; 187 * Compute the changes based on moving lines; return 1 if any lines moved, 221 int allmoving; /* 1 if all lines are moving */ 274 * If a line is moving, print its commentary. 293 if (moving[i]) 305 if (moving[i]) 311 * If all the lines are moving, print the commentary for that; it
|
| /src/sys/external/bsd/drm2/dist/drm/ttm/ |
| ttm_bo_vm.c | 56 if (likely(!bo->moving)) 62 if (dma_fence_is_signaled(bo->moving)) 76 (void) dma_fence_wait(bo->moving, true); 85 err = dma_fence_wait(bo->moving, true); 93 dma_fence_put(bo->moving); 94 bo->moving = NULL; 209 struct dma_fence *moving = dma_fence_get(bo->moving); local 222 if (bo->moving != moving) { [all...] |
| /src/sys/external/bsd/drm2/ttm/ |
| ttm_bo_vm.c | 103 if (__predict_true(!bo->moving)) 109 if (dma_fence_is_signaled(bo->moving)) 121 (void) dma_fence_wait(bo->moving, true); 130 err = dma_fence_wait(bo->moving, true); 138 dma_fence_put(bo->moving); 139 bo->moving = NULL; 198 struct dma_fence *moving = dma_fence_get(bo->moving); local 211 if (bo->moving != moving) { [all...] |
| /src/sys/external/bsd/drm2/dist/include/drm/ttm/ |
| ttm_bo_api.h | 168 * @moving: Fence set when BO is moving 230 struct dma_fence *moving; member in struct:ttm_buffer_object
|
| /src/external/gpl2/mkhybrid/dist/libhfs_iso/ |
| hfs.c | 1850 int found, isdir, moving, reclen; local 1888 moving = (srcid != dstid); 1903 if (! moving && strcmp(srcname, dstname) == 0) 1906 if (moving || d_relstring(srcname, dstname)) 1915 if (moving && dstid == HFS_CNID_ROOTPAR) 1921 if (moving && isdir) 2016 if (moving)
|
| /src/external/bsd/ntp/dist/ntpd/ |
| refclock_jupiter.c | 127 u_int moving; /* mobile platform? */ member in struct:instance 279 up->moving = !!(up->sloppyclockflag & CLK_FLAG2); 280 if (up->moving) 304 if (up->moving)
|
| refclock_mx4200.c | 141 u_int moving; /* mobile platform? */ member in struct:mx4200unit 302 up->moving = 1; /* Receiver on mobile platform */ 305 up->moving = 0; /* Static Installation */ 419 * (Set field 1 'D' == dynamic if we are on a moving platform). 420 * (Set field 1 'S' == static if we are not moving). 425 up->moving = 1; /* Receiver on mobile platform */ 427 up->moving = 0; /* Static Installation */ 430 if (up->moving) { 431 /* dynamic: solve for pos, alt, time, while moving */ 449 * location) only if we are not moving [all...] |
| /src/external/gpl3/gdb.old/dist/gdb/ |
| record-btrace.c | 2568 /* We keep threads moving at the end of their execution history. The wait 2580 (const std::vector<thread_info *> &moving, 2583 bool more_moving = !moving.empty (); 2604 std::vector<thread_info *> moving; local 2620 /* Keep a work list of moving threads. */ 2624 moving.push_back (tp); 2626 if (moving.empty ()) 2636 /* Step moving threads one by one, one step each, until either one thread 2654 while ((eventing == NULL) && !moving.empty ()) 2656 for (unsigned int ix = 0; eventing == NULL && ix < moving.size (); [all...] |
| /src/external/gpl3/gdb/dist/gdb/ |
| record-btrace.c | 2565 /* We keep threads moving at the end of their execution history. The wait 2577 (const std::vector<thread_info *> &moving, 2580 bool more_moving = !moving.empty (); 2601 std::vector<thread_info *> moving; local 2617 /* Keep a work list of moving threads. */ 2621 moving.push_back (tp); 2623 if (moving.empty ()) 2633 /* Step moving threads one by one, one step each, until either one thread 2651 while ((eventing == NULL) && !moving.empty ()) 2653 for (unsigned int ix = 0; eventing == NULL && ix < moving.size (); [all...] |