HomeSort by relevance Sort by last modified time
    Searched defs:wg (Results 1 - 25 of 40) sorted by null

1 2

  /prebuilts/go/darwin-x86/misc/linkcheck/
linkcheck.go 28 var wg sync.WaitGroup // outstanding fetches var
98 wg.Add(1)
121 defer wg.Done()
179 wg.Wait()
  /prebuilts/go/linux-x86/misc/linkcheck/
linkcheck.go 28 var wg sync.WaitGroup // outstanding fetches var
98 wg.Add(1)
121 defer wg.Done()
179 wg.Wait()
  /packages/apps/Gallery2/jni/filters/
wbalance.c 21 void estmateWhite(unsigned char *src, int len, int *wr, int *wb, int *wg){
97 *wg = sum15b/count15b;
99 *wg = *wb = *wr=255;
103 void estmateWhiteBox(unsigned char *src, int iw, int ih, int x,int y, int *wr, int *wb, int *wg){
129 *wg = g/sum;
141 int wg; local
145 estmateWhite(rgb,len,&wr,&wg,&wb);
147 estmateWhiteBox(rgb, width, height,locX,locY,&wr,&wg,&wb);
149 int min = MIN(wr, MIN(wg, wb));
150 int max = MAX(wr, MAX(wg, wb))
    [all...]