Searched refs:vec_pos (Results 1 – 2 of 2) sorted by relevance
/third_party/mesa3d/src/gallium/frontends/clover/core/ |
D | printf.cpp | 72 size_t vec_pos = format.find_first_of("v", cur_tok + 1); in print_formatted() local 91 bool is_vector = vec_pos != std::string::npos && in print_formatted() 92 vec_pos + 1 < spec_pos; in print_formatted() 109 size_t l = std::min(mod_pos, spec_pos) - vec_pos - 1; in print_formatted() 110 std::string s = format.substr(vec_pos + 1, l); in print_formatted() 119 print_str.erase(vec_pos - cur_tok, std::min(mod_pos, spec_pos) - vec_pos); in print_formatted()
|
/third_party/ffmpeg/libavcodec/ |
D | mss4.c | 267 static void read_vec_pos(GetBitContext *gb, int *vec_pos, int *sel_flag, in read_vec_pos() argument 274 vec_pos[i] = 0; in read_vec_pos() 280 vec_pos[i] = get_bits(gb, sel_len[i]); in read_vec_pos() 281 if (vec_pos[i] >= pval) in read_vec_pos() 282 vec_pos[i]++; in read_vec_pos() 284 vec_pos[i] = !prev[i]; in read_vec_pos() 288 vec_pos[i] = prev[i]; in read_vec_pos() 293 static int get_value_cached(GetBitContext *gb, int vec_pos, uint8_t *vec, in get_value_cached() argument 296 if (vec_pos < vec_size) in get_value_cached() 297 return vec[vec_pos]; in get_value_cached()
|