HomeSort by relevance Sort by last modified time
    Searched refs:aw (Results 1 - 25 of 129) sorted by null

1 2 3 4 5 6

  /external/clang/test/CodeGen/
builtins-ppc-crypto-disabled.c 27 vector unsigned int aw = W_INIT1 local
37 vector unsigned int r6 = __builtin_crypto_vshasigmaw(aw, 1, 15);
  /external/proguard/src/proguard/gui/splash/
RectangleSprite.java 102 int aw = arcWidth.getInt(time); local
107 graphics.fillRoundRect(xt, yt, w, h, aw, ah);
111 graphics.drawRoundRect(xt, yt, w, h, aw, ah);
  /cts/apps/CameraITS/tests/scene2/
test_num_faces.py 37 aw, ah = a['right'] - a['left'], a['bottom'] - a['top']
67 top_left = (int(round(rect['left']*W/aw)),
69 bot_rght = (int(round(rect['right']*W/aw)),
93 assert 0 <= rect['left'] <= aw
94 assert 0 <= rect['right'] <= aw
test_faces.py 35 aw, ah = a['right'] - a['left'], a['bottom'] - a['top']
86 assert(0 <= rect['left'] <= aw)
87 assert(0 <= rect['right'] <= aw)
  /external/javassist/src/main/javassist/bytecode/
ClassFileWriter.java 123 * @param aw attributes of the class file. May be null.
128 int[] interfaces, AttributeWriter aw) {
152 writeAttribute(output, aw, 0);
166 * @param aw attributes of the class file. May be null.
172 int[] interfaces, AttributeWriter aw)
194 if (aw == null)
197 out.writeShort(aw.size());
198 aw.write(out);
210 * AttributeWriter aw = new AttributeWriter() {
235 static void writeAttribute(ByteStream bs, AttributeWriter aw, int attrCount)
    [all...]
  /cts/apps/CameraITS/tests/scene1/
test_crop_region_raw.py 40 aw, ah = a["right"] - a["left"], a["bottom"] - a["top"]
41 print "Active sensor region: (%d,%d %dx%d)" % (ax, ay, aw, ah)
46 "right": aw,
53 cropw = aw / zoom
57 "left": aw / 2 - cropw / 2,
59 "right": aw / 2 + cropw / 2,
101 ex = aw * err_delta
test_crop_regions.py 44 aw, ah = a["right"] - a["left"], a["bottom"] - a["top"]
46 print "Active sensor region (%d,%d %dx%d)" % (ax, ay, aw, ah)
67 "left": int(aw * x),
68 "right": int(aw * (x + w)),
76 aw, ah = a["right"] - a["left"], a["bottom"] - a["top"]
88 wtest = min(tile_full.shape[1], aw)
100 i, ax, ay, aw, ah, min_diff_region)
  /external/freetype/src/truetype/
ttgload.h 41 FT_UShort* aw );
ttdriver.c 264 FT_UShort aw; local
267 TT_Get_HMetrics( face, start + nn, &lsb, &aw );
268 advances[nn] = aw;
  /external/pdfium/third_party/freetype/src/truetype/
ttgload.h 41 FT_UShort* aw );
ttdriver.c 220 FT_UShort aw; local
223 TT_Get_HMetrics( face, start + nn, &lsb, &aw );
224 advances[nn] = aw;
  /prebuilts/go/darwin-x86/src/crypto/cipher/
xor.go 26 aw := *(*[]uintptr)(unsafe.Pointer(&a))
29 dw[i] = aw[i] ^ bw[i]
70 aw := *(*[]uintptr)(unsafe.Pointer(&a))
74 dw[i] = aw[i] ^ bw[i]
  /prebuilts/go/linux-x86/src/crypto/cipher/
xor.go 26 aw := *(*[]uintptr)(unsafe.Pointer(&a))
29 dw[i] = aw[i] ^ bw[i]
70 aw := *(*[]uintptr)(unsafe.Pointer(&a))
74 dw[i] = aw[i] ^ bw[i]
  /libcore/ojluni/src/main/java/java/time/chrono/
AbstractChronology.java 590 int aw = range(ALIGNED_WEEK_OF_MONTH).checkValidIntValue(fieldValues.remove(ALIGNED_WEEK_OF_MONTH), ALIGNED_WEEK_OF_MONTH); local
592 ChronoLocalDate date = date(y, moy, 1).plus((aw - 1) * 7 + (ad - 1), DAYS);
608 int aw = range(ALIGNED_WEEK_OF_MONTH).checkValidIntValue(fieldValues.remove(ALIGNED_WEEK_OF_MONTH), ALIGNED_WEEK_OF_MONTH); local
610 ChronoLocalDate date = date(y, moy, 1).plus((aw - 1) * 7, DAYS).with(nextOrSame(DayOfWeek.of(dow)));
624 int aw = range(ALIGNED_WEEK_OF_YEAR).checkValidIntValue(fieldValues.remove(ALIGNED_WEEK_OF_YEAR), ALIGNED_WEEK_OF_YEAR); local
626 ChronoLocalDate date = dateYearDay(y, 1).plus((aw - 1) * 7 + (ad - 1), DAYS);
640 int aw = range(ALIGNED_WEEK_OF_YEAR).checkValidIntValue(fieldValues.remove(ALIGNED_WEEK_OF_YEAR), ALIGNED_WEEK_OF_YEAR); local
642 ChronoLocalDate date = dateYearDay(y, 1).plus((aw - 1) * 7, DAYS).with(nextOrSame(DayOfWeek.of(dow)));
    [all...]
  /frameworks/base/tools/layoutlib/create/src/com/android/tools/layoutlib/create/
DelegateMethodAdapter.java 177 AnnotationVisitor aw = mDelWriter.visitAnnotation( local
180 if (aw != null) {
181 aw.visitEnd();
  /external/apache-xml/src/main/java/org/apache/xalan/templates/
RedundentExprEliminator.java 756 AxesWalker aw = wi.getFirstWalker(); local
758 while(null != aw)
761 aw = aw.getNextWalker();
1086 AxesWalker aw = wi.getFirstWalker(); local
    [all...]
  /external/skia/tests/
SkNxTest.cpp 135 Sk16b aw(a), bw(b);
136 REPORTER_ASSERT(r, Sk16b::Min(aw, bw)[0] == SkTMin(a, b));
137 REPORTER_ASSERT(r, !(aw < bw)[0] == !(a < b));
  /external/v8/tools/profviz/
gnuplot-4.6.3-emscripten.js     [all...]
  /external/pdfium/third_party/freetype/src/cff/
cffdrivr.c 241 FT_UShort aw; local
248 &aw );
251 start + nn, aw ));
252 advances[nn] = aw;
  /frameworks/base/core/java/android/app/
Instrumentation.java 452 final ActivityWaiter aw = new ActivityWaiter(intent); local
457 mWaitingActivities.add(aw);
466 } while (mWaitingActivities.contains(aw));
468 return aw.activity;
1181 final ActivityWaiter aw = mWaitingActivities.get(i); local
    [all...]
  /external/freetype/src/cff/
cffdrivr.c 260 FT_UShort aw; local
267 &aw );
270 start + nn, aw ));
271 advances[nn] = aw;
    [all...]
  /prebuilts/tools/common/m2/repository/net/orfjackal/retrolambda/retrolambda/2.0.6/
retrolambda-2.0.6.jar 
  /prebuilts/misc/common/jacoco/lib/
jacocoagent.jar 
  /tools/tradefederation/core/res/jacoco/
jacocoagent.jar 
  /external/jacoco/
asm-debug-all-5.0.1.jar 

Completed in 682 milliseconds

1 2 3 4 5 6