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

  /external/opencore/pvmi/pvmf/include/
pvmf_timestamp.h 62 uint32 time_val; member in struct:PVMFTimeValue
  /external/opencore/protocols/systems/tools/general/common/include/
media_packet.h 48 time_val = val;
52 return &time_val;
63 TimeValue time_val; member in class:MediaPacket
  /cts/tools/dasm/src/java_cup/
Main.java 737 * @param time_val the value being formatted (in ms).
740 protected static String timestr(long time_val, long total_time)
749 neg = time_val < 0;
750 if (neg) time_val = -time_val;
753 ms = time_val % 1000;
754 sec = time_val / 1000;
767 percent10 = (time_val*1000)/total_time;

Completed in 639 milliseconds