Here you can find the source of getUSeconds(int time)
public static int getUSeconds(int time)
//package com.java2s; //License from project: Apache License public class Main { public static int getUSeconds(int time) { int useconds = (time & (0xFFFFFFFF >>> 11)); return useconds; }//from w w w .ja v a 2s . c om }