Go to the source code of this file.
◆ WIDTH
◆ randomize_buffers
      
        
          | #define randomize_buffers | 
          ( | 
            | 
          buf0,  | 
        
        
           | 
           | 
            | 
          buf1,  | 
        
        
           | 
           | 
            | 
          mask,  | 
        
        
           | 
           | 
            | 
          count  | 
        
        
           | 
          ) | 
           |  | 
        
      
 
Value:    for (
size_t i = 0; 
i < count; 
i++) \
 
 
Definition at line 26 of file vf_bwdif.c.
 
 
◆ randomize_overflow_check
      
        
          | #define randomize_overflow_check | 
          ( | 
            | 
          buf0,  | 
        
        
           | 
           | 
            | 
          buf1,  | 
        
        
           | 
           | 
            | 
          mask,  | 
        
        
           | 
           | 
            | 
          count  | 
        
        
           | 
          ) | 
           |  | 
        
      
 
Value:    for (
size_t i = 0; 
i < count; 
i++) \
 
        buf0[
i] = buf1[
i] = (
rnd() & 1) != 0 ? 
mask : 0;
 
 
Definition at line 30 of file vf_bwdif.c.
 
 
◆ BODY
      
        
          | #define BODY | 
          ( | 
            | 
          type,  | 
        
        
           | 
           | 
            | 
          depth  | 
        
        
           | 
          ) | 
           |  | 
        
      
 
 
◆ checkasm_check_vf_bwdif()
      
        
          | void checkasm_check_vf_bwdif  | 
          ( | 
          void  | 
           | ) | 
           |