将当前读/写位置前移 - 2022.1 简体中文

Versal ACAP AI 引擎编程环境 用户指南 (UG1076)

Document ID
UG1076
Release Date
2022-05-25
Version
2022.1 简体中文

在如下描述中,<input_window_type> 表示任意允许的输入窗口数据类型。同样,<output_window_type> 表示任意允许的输出窗口数据类型。

用途 输入窗口类型 输出窗口类型
用于增加当前读/写位置,增加的值为底层窗口类型的计数次数。 void window_incr(<input_window_type> *w, int count); void window_incr(<output_window_type> *w, int count);
用于增加当前读/写位置,增加的值为底层窗口类型的计数次数的 4 倍。 void window_incr_v4(<input_window_type> *w, int count); void window_incr_v4(<output_window_type> *w, int count);
用于增加当前读/写位置,增加的值为底层窗口类型的计数次数的 8 倍。 void window_incr_v8(<input_window_type> *w, int count); void window_incr_v8(<output_window_type> *w, int count);
用于增加当前读/写位置,增加的值为底层窗口类型的计数次数的 16 倍。 void window_incr_v16(<input_window_type> *w, int count); void window_incr_v16(<output_window_type> *w, int count);
用于增加当前读/写位置,增加的值为底层窗口类型的计数次数的 32 倍。 void window_incr_v32(<input_window_type> *w, int count); void window_incr_v32(<output_window_type> *w, int count);
用于增加当前读/写位置,增加的值为底层窗口类型的计数次数的 64 倍。 void window_incr_v64(<input_window_type> *w, int count); void window_incr_v64(<output_window_type> *w, int count);