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

  /frameworks/base/cmds/incident_helper/src/parsers/
PsParser.cpp 41 const int sValues[] = {PsProto::Process::STATE_D, PsProto::Process::STATE_R, PsProto::Process::STATE_S, PsProto::Process::STATE_T, PsProto::Process::STATE_TRACING, PsProto::Process::STATE_X, PsProto::Process::STATE_Z};
42 table.addEnumTypeMap("s", sNames, sValues, 7);
  /external/mesa3d/src/mesa/state_tracker/
st_cb_drawpixels.c 773 GLubyte *sValues;
809 sValues = malloc(width * sizeof(GLubyte));
812 if (sValues && zValues) {
821 _mesa_unpack_stencil_span(ctx, width, destType, sValues,
856 memcpy(dest, sValues, width);
865 dest[k] = zValues[k] | (sValues[k] << 24);
873 dest[k] = (dest[k] & 0xffffff) | (sValues[k] << 24);
883 dest[k] = (zValues[k] << 8) | (sValues[k] & 0xff);
891 dest[k] = (dest[k] & 0xffffff00) | (sValues[k] & 0xff);
903 dest[k*2+1] = sValues[k] & 0xff
    [all...]

Completed in 226 milliseconds