Lines Matching refs:ext
2265 cea_for_each_detailed_block(u8 *ext, detailed_cb *cb, void *closure)
2268 u8 d = ext[0x02];
2269 u8 *det_base = ext + d;
2280 vtb_for_each_detailed_block(u8 *ext, detailed_cb *cb, void *closure)
2282 unsigned int i, n = min((int)ext[0x02], 6);
2283 u8 *det_base = ext + 5;
2285 if (ext[0x01] != 1)
2305 u8 *ext = raw_edid + (i * EDID_LENGTH);
2307 switch (*ext) {
2309 cea_for_each_detailed_block(ext, cb, closure);
2312 vtb_for_each_detailed_block(ext, cb, closure);
3308 /* FIXME: make callers iterate through multiple CEA ext blocks? */