Lines Matching full:sync

37 /* A test fixture for sync tests. */
78 const uint8_t *sync; in sync_fwd_null() local
84 errcode = pt_sync_forward(&sync, NULL, &sfix->config); in sync_fwd_null()
87 errcode = pt_sync_forward(&sync, sfix->config.begin, NULL); in sync_fwd_null()
95 const uint8_t *sync; in sync_bwd_null() local
101 errcode = pt_sync_backward(&sync, NULL, &sfix->config); in sync_bwd_null()
104 errcode = pt_sync_backward(&sync, sfix->config.begin, NULL); in sync_bwd_null()
112 const uint8_t *sync; in sync_fwd_empty() local
117 errcode = pt_sync_forward(&sync, sfix->config.begin, &sfix->config); in sync_fwd_empty()
125 const uint8_t *sync; in sync_bwd_empty() local
130 errcode = pt_sync_backward(&sync, sfix->config.end, &sfix->config); in sync_bwd_empty()
138 const uint8_t *sync; in sync_fwd_none() local
141 errcode = pt_sync_forward(&sync, sfix->config.begin, &sfix->config); in sync_fwd_none()
149 const uint8_t *sync; in sync_bwd_none() local
152 errcode = pt_sync_backward(&sync, sfix->config.end, &sfix->config); in sync_bwd_none()
160 const uint8_t *sync; in sync_fwd_here() local
165 errcode = pt_sync_forward(&sync, sfix->config.begin, &sfix->config); in sync_fwd_here()
167 ptu_ptr_eq(sync, sfix->config.begin); in sync_fwd_here()
174 const uint8_t *sync; in sync_bwd_here() local
179 errcode = pt_sync_backward(&sync, sfix->config.end, &sfix->config); in sync_bwd_here()
181 ptu_ptr_eq(sync, sfix->config.end - ptps_psb); in sync_bwd_here()
188 const uint8_t *sync; in sync_fwd() local
193 errcode = pt_sync_forward(&sync, sfix->config.begin, &sfix->config); in sync_fwd()
195 ptu_ptr_eq(sync, sfix->config.begin + 0x23); in sync_fwd()
202 const uint8_t *sync; in sync_bwd() local
207 errcode = pt_sync_backward(&sync, sfix->config.end, &sfix->config); in sync_bwd()
209 ptu_ptr_eq(sync, sfix->config.begin + 0x23); in sync_bwd()
216 const uint8_t *sync; in sync_fwd_past() local
221 errcode = pt_sync_forward(&sync, sfix->config.begin + ptps_psb, in sync_fwd_past()
230 const uint8_t *sync; in sync_bwd_past() local
235 errcode = pt_sync_backward(&sync, sfix->config.end - ptps_psb, in sync_bwd_past()
244 const uint8_t *sync; in sync_fwd_cutoff() local
252 errcode = pt_sync_forward(&sync, sfix->config.begin, &sfix->config); in sync_fwd_cutoff()
260 const uint8_t *sync; in sync_bwd_cutoff() local
268 errcode = pt_sync_backward(&sync, sfix->config.end, &sfix->config); in sync_bwd_cutoff()