Searched defs:hh (Results 1 - 20 of 20) sorted by relevance

/external/skia/samplecode/
H A DSampleXfermodesBlur.cpp54 SkScalar hh = SkIntToScalar(H); local
60 r.set(0, 0, ww*3/4, hh*3/4);
69 r.set(ww/3, hh/3, ww*19/20, hh*19/20);
/external/freetype/src/smooth/
H A Dftsmooth.c316 FT_UInt hh; local
319 for ( hh = height_org; hh > 0; hh--, line += pitch )
343 FT_UInt hh; local
346 for ( hh = height_org; hh > 0; hh-- )
/external/libvpx/libvpx/vpx_mem/memory_manager/include/
H A Dcavl_impl.h334 AVL_HANDLE hh = l_tree->root; variable
339 if (AVL_GET_BALANCE_FACTOR(hh) != 0) {
340 unbal = hh;
345 cmp = AVL_COMPARE_NODE_NODE(h, hh);
349 return(hh);
351 parent = hh;
354 hh = AVL_GET_GREATER(hh, 1);
357 hh = AVL_GET_LESS(hh,
[all...]
/external/pdfium/third_party/freetype/src/smooth/
H A Dftsmooth.c316 FT_UInt hh; local
319 for ( hh = height_org; hh > 0; hh--, line += pitch )
343 FT_UInt hh; local
346 for ( hh = height_org; hh > 0; hh-- )
/external/ppp/pppd/
H A Dmd4.c80 #define hh(A,B,C,D,i,s) A = rot((A + h(B,C,D) + X[i] + C3),s) macro
173 hh(A , B , C , D , 0 , hs1); /* Round 3 */
174 hh(D , A , B , C , 8 , hs2);
175 hh(C , D , A , B , 4 , hs3);
176 hh(B , C , D , A , 12 , hs4);
177 hh(A , B , C , D , 2 , hs1);
178 hh(D , A , B , C , 10 , hs2);
179 hh(C , D , A , B , 6 , hs3);
180 hh(B , C , D , A , 14 , hs4);
181 hh(
[all...]
/external/skia/gm/
H A Dxfermodes.cpp25 SkScalar hh = SkIntToScalar(h); local
30 r.set(0, 0, ww*3/4, hh*3/4);
40 r.set(ww/3, hh/3, ww*19/20, hh*19/20);
/external/v8/test/webkit/fast/js/kde/
H A Dmd5-2.js69 function hh(a, b, c, d, x, s, t)
130 a = hh(a, b, c, d, x[i+ 5], 4 , -378558)
131 d = hh(d, a, b, c, x[i+ 8], 11, -2022574463)
132 c = hh(c, d, a, b, x[i+11], 16, 1839030562)
133 b = hh(b, c, d, a, x[i+14], 23, -35309556)
134 a = hh(a, b, c, d, x[i+ 1], 4 , -1530992060)
135 d = hh(d, a, b, c, x[i+ 4], 11, 1272893353)
136 c = hh(c, d, a, b, x[i+ 7], 16, -155497632)
137 b = hh(b, c, d, a, x[i+10], 23, -1094730640)
138 a = hh(
[all...]
/external/webrtc/src/modules/audio_coding/codecs/isac/fix/source/
H A Dfft.c73 WebRtc_Word16 dd, ee, ff, gg, hh, ii; local
171 for (hh=0; hh<4; hh++) {
213 for (hh=0; hh<2; hh++) {
214 ee = ff + (WebRtc_Word16)WEBRTC_SPL_MUL_16_16(hh, ff);
247 for (hh=0; hh<
[all...]
/external/iputils/Modules/
H A Dpg3.c134 static __u8 hh[14] = { variable
142 unsigned char *pg_dstmac = hh;
170 hh[p1]=odev->dev_addr[p2++];
261 memcpy(eth, hh, 14);
/external/toybox/toys/other/
H A Dbzcat.c147 int hh, ii, jj, kk, symCount, *base, *limit; local
170 hh = get_bits(bd, 16);
173 if (hh & (1 << (15 - ii))) {
215 hh = get_bits(bd, 5);
218 // !hh || hh > MAX_HUFCODE_BITS in one test.
219 if (MAX_HUFCODE_BITS-1 < (unsigned)hh-1) return RETVAL_DATA_ERROR;
224 if (kk & 2) hh += 1 - ((kk&1)<<1);
230 length[ii] = hh;
269 for (hh
305 int hh, ii, jj, kk, runPos, dbufCount, symCount, selector, nextSym, local
[all...]
/external/icu/icu4c/source/test/intltest/
H A Dtzregts.cpp500 int32_t hh = (h<0) ? -h : h; local
502 ((hh/2 < 10) ? "0" : "") +
503 (hh/2) + ':' +
504 ((hh%2==0) ? "00" : "30");
1046 SimpleDateFormat fmt("MMM d yyyy hh:mm a zzz", loc, status);
/external/libpng/contrib/gregbook/
H A Drpng2-win.c967 int ii, x, y, hw, hh, grayspot; local
976 hh = rpng2_info.height / 2;
987 grayspot = CLIP(bg[pat].bg_gray, 1, (hh + hw));
993 maxDist = (double)((hw*hw) + (hh*hh));
996 y = row - hh;
1008 s = gray * ((double)(ABS(x)+ABS(y)) / (double)(hw + hh));
H A Drpng2-x.c1194 int ii, x, y, hw, hh, grayspot; local
1203 hh = (int)(rpng2_info.height / 2);
1214 grayspot = CLIP(bg[pat].bg_gray, 1, (hh + hw));
1220 maxDist = (double)((hw*hw) + (hh*hh));
1223 y = (int)(row - hh);
1235 s = gray * ((double)(ABS(x)+ABS(y)) / (double)(hw + hh));
1963 int ii, x, y, hw, hh, grayspot; local
1968 hh = (int)(rpng2_info.height / 2);
1979 grayspot = CLIP(bg[pat].bg_gray, 1, (hh
[all...]
/external/javasqlite/src/main/native/
H A Dsqlite_jni.c108 handle hh; /* fake SQLite database handle */ member in struct:hvm
2635 if (ret == SQLITE_DONE && v->hh.row1) {
2722 if (ret == SQLITE_DONE && v->hh.row1) {
2797 v->hh.cb = cb;
2798 v->hh.env = env;
2801 v->hh.stmt = (sqlite3_stmt *) v->vm;
2805 v->hh.stmt = (sqlite3_stmt *) v->vm;
2808 callback((void *) &v->hh, ncol, (char **) data, (char **) cols);
2822 if (v->hh.row1 && cols) {
2823 v->hh
[all...]
/external/icu/icu4c/source/tools/tzcode/
H A Dzic.c1069 ** h -h hh:mm -hh:mm hh:mm:ss -hh:mm:ss
1078 zic_t hh; local
1089 if (sscanf(string, scheck(string, "%"SCNdZIC), &hh) == 1)
1091 else if (sscanf(string, scheck(string, "%"SCNdZIC":%d"), &hh, &mm) == 2)
1094 &hh, &mm, &ss) != 3) {
1098 if (hh < 0 ||
1104 if (ZIC_MAX / SECSPERHOUR < hh) {
[all...]
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.jface.text_3.6.1.r361_v20100825-0800.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.swt.gtk.linux.x86_3.6.1.v3657a.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.swt.win32.win32.x86_3.6.1.v3657a.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.ui.workbench_3.6.1.M20101117-0800.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.apache.ant_1.7.1.v20090120-1145/lib/
H A Dant.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/tools/ org/apache/tools/ant/ ...

Completed in 688 milliseconds