Lines Matching defs:n
61 #define clear_data_ldac(p, n) memset((p), 0, (n)) argument
62 #define clear_seq_s_ldac(p, n) memset((char *)(p), 0, (n)*sizeof(short)) argument
63 #define clear_seq_l_ldac(p, n) memset((char *)(p), 0, (n)*sizeof(int)) argument
64 #define clear_seq_f_ldac(p, n) memset((char *)(p), 0, (n)*sizeof(SCALAR)) argument
68 #define copy_data_ldac(p1, p2, n) memcpy_s((p2), (n), (p1), (n)) argument
69 #define copy_seq_s_ldac(p1, p2, n) memcpy_s((p2), (n)*sizeof(short), (p1), (n)*sizeof(short)) argument
70 #define copy_seq_l_ldac(p1, p2, n) memcpy_s((p2), (n)*sizeof(int), (p1), (n)*sizeof(int)) argument
71 #define copy_seq_f_ldac(p1, p2, n) memcpy_s((p2), (n)*sizeof(SCALAR), (p1), (n)*sizeof(SCALAR)) argument
72 #define move_seq_f_ldac(p1, p2, n) memmove_s((p2), (n)*sizeof(SCALAR), (p1), (n)*sizeof(SCALAR)) argument
74 #define copy_data_ldac(p1, p2, n) memcpy((p2), (p1), (n)) argument
75 #define copy_seq_s_ldac(p1, p2, n) memcpy((p2), (p1), (n)*sizeof(short)) argument
76 #define copy_seq_l_ldac(p1, p2, n) memcpy((p2), (p1), (n)*sizeof(int)) argument
77 #define copy_seq_f_ldac(p1, p2, n) memcpy((p2), (p1), (n)*sizeof(SCALAR)) argument
78 #define move_seq_f_ldac(p1, p2, n) memmove((p2), (p1), (n)*sizeof(SCALAR)) argument