HomeSort by relevance Sort by last modified time
    Searched refs:mask_str (Results 1 - 2 of 2) sorted by null

  /hardware/ti/omap3/omx/system/src/openmax_il/common/inc/
OMX_TI_Debug.h 159 #define OMX_DBG_SET_MASK(dbg, mask_str) \
161 if (mask_str) { \
162 sscanf((mask_str), "%lx", &(dbg).mask); \
163 if (strlen(mask_str) < 8) { \
164 (dbg).mask &= ~0ul >> (32 - 4 * strlen(mask_str)); \
165 (dbg).mask |= OMX_DBG_BASEMASK << (4 * strlen(mask_str)); \
  /external/mesa3d/src/glsl/
ir_reader.cpp 631 const char *mask_str = mask_symbol->value(); local
632 unsigned mask_length = strlen(mask_str);
634 ir_read_error(st, list, "invalid write mask: %s", mask_str);
641 if (mask_str[i] < 'w' || mask_str[i] > 'z') {
643 mask_str[i]);
646 mask |= 1 << idx_map[mask_str[i] - 'w'];
    [all...]

Completed in 2617 milliseconds