/external/mesa3d/src/mesa/swrast/ |
s_stencil.c | 64 const GLubyte one = 1; local 71 _mesa_pack_ubyte_stencil_row(format, 1, &one, pixel); 345 * /return GL_TRUE = one or more fragments passed, 439 return GL_TRUE; /* one or more fragments passed both tests */
|
/external/openfst/src/include/fst/ |
string-weight.h | 91 static const StringWeight<L, S> &One() { 92 static const StringWeight<L, S> one; local 93 return one; 349 w = StringWeight<L, S>::One();
|
/external/smali/dexlib2/src/test/java/org/jf/dexlib2/analysis/ |
CommonSuperclassTest.java | 44 // one 58 TestUtils.makeClassDef("Ltest/one;", "Ljava/lang/Object;"), 60 TestUtils.makeClassDef("Ltest/onetwo;", "Ltest/one;"), 62 TestUtils.makeClassDef("Ltest/onethree;", "Ltest/one;"), 105 String one = "Ltest/one;"; local 118 superclassTest(one, one, one); 133 superclassTest(object, object, one); 257 String one = "Ltest\/one;"; local [all...] |
/external/v8/src/ |
fast-dtoa.cc | 93 // and v (the input number). They are guaranteed to be precise up to one unit. 94 // In fact the error is guaranteed to be strictly less than one unit. 106 // representations, and one is closer to both w_low and w_high, then we know 134 // representations close to w, but we cannot decide which one is closer. 340 // * if more than one decimal representation gives the minimal number of 341 // decimal digits then the one closest to W (where W is the correct value 371 // low, w and high are imprecise, but by less than one ulp (unit in the last 395 DiyFp one = DiyFp(static_cast<uint64_t>(1) << -w.e(), w.e()); local 396 // Division by one is a shift. 397 uint32_t integrals = static_cast<uint32_t>(too_high.f() >> -one.e()) 503 DiyFp one = DiyFp(static_cast<uint64_t>(1) << -w.e(), w.e()); local [all...] |
/external/v8/test/cctest/compiler/ |
test-machine-operator-reducer.cc | 429 Node* one = R.Constant<int32_t>(1); local 434 R.CheckBinop(x, x, one); // x * 1 => x 435 R.CheckBinop(x, one, x); // 1 * x => x 468 Node* one = R.Constant<int32_t>(1); local 471 R.CheckBinop(x, x, one); // x / 1 => x 495 Node* one = R.Constant<int32_t>(1); local 497 R.CheckBinop(x, x, one); // x / 1 => x 525 Node* one = R.Constant<int32_t>(1); local 527 R.CheckFoldBinop<int32_t>(0, x, one); // x % 1 => 0 548 Node* one = R.Constant<int32_t>(1) local 746 Node* one = R.Constant<double>(1.0); local 767 Node* one = R.Constant<double>(1.0); local [all...] |
/external/valgrind/exp-bbv/tests/amd64-linux/ |
ll.S | 50 # but, that only gains us one byte of space in the lzss image. 107 inc %ecx # we set ecx to one so byte 233 lea one-6(%rbx,%rbx,2), %esi 235 # [one]+(num_cpus*6) 267 # gas won't let us force the one-byte constant 439 dec %edi # point to one less than null 464 push $81 # one added to cheat, we don't 561 one: .ascii "One\0\0\0" label
|
/external/valgrind/exp-bbv/tests/arm-linux/ |
ll.S | 109 mov r6,#1 @ we set r6 to one so byte 172 add r1,r11,#(one-data_begin) 269 cmpeq r5,r1 @ if first byte matched, comp this one 271 cmpeq r5,r2 @ if first two matched, comp this one 310 sub r10,r10,#1 @ point to one less than null 448 one: .ascii "One \0" label
|
/external/valgrind/exp-bbv/tests/x86-linux/ |
ll.S | 44 # but, that only gains us one byte of space in the lzss image. 99 inc %ecx # we set ecx to one so byte 228 lea one-6(%ebx,%ebx,2), %esi 230 # [one]+(num_cpus*6) 261 # gas won't let us force the one-byte constant 439 dec %edi # point to one less than null 464 push $81 # one added to cheat, we don't 561 one: .ascii "One\0\0\0" label
|
/frameworks/data-binding/compiler/src/test/java/android/databinding/ |
BindingExpressionParserTest.java | 226 DotOpContext expression = parseExpression("one.two.three"); 233 assertEquals("one", ((PrimaryContext) left.expression()).identifier().getText()); 238 QuestionQuestionOpContext expression = parseExpression("one ?? two"); 240 assertEquals("one", ((PrimaryContext) expression.left).identifier().getText()); 288 String one = ((PrimaryContext) expression.left).literal().javaLiteral().getText(); local 289 assertEquals("1", one); 300 String one = ((PrimaryContext) expression.left).literal().javaLiteral().getText(); local 301 assertEquals("1", one); 312 String one = ((PrimaryContext) expression.left).literal().javaLiteral().getText(); local 313 assertEquals("1", one); 324 String one = ((PrimaryContext) expression.left).literal().javaLiteral().getText(); local 336 String one = ((PrimaryContext) expression.left).literal().javaLiteral().getText(); local [all...] |
/libcore/benchmarks/src/benchmarks/regression/ |
ReflectionBenchmark.java | 123 Integer one = Integer.valueOf(1); local 125 m.invoke(instance, one); 140 Integer one = Integer.valueOf(1); local 142 m.invoke(null, one);
|
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/ |
ConcurrentModTest.java | 2 * Licensed to the Apache Software Foundation (ASF) under one or more 36 Double one = new Double(1.0); local 40 al.add(one); 80 Double one = new Double(1.0); local 84 al.add(one); 110 Double one = new Double(1.0); local 114 al.add(one); 140 Double one = new Double(1.0); local 144 al.add(one); 206 Double one = new Double(1.0) local [all...] |
/packages/apps/Camera2/src/com/android/camera/one/v1/ |
LegacyOneCameraManagerImpl.java | 17 package com.android.camera.one.v1; 24 import com.android.camera.one.OneCamera.Facing; 25 import com.android.camera.one.OneCameraAccessException; 26 import com.android.camera.one.OneCameraCharacteristics; 27 import com.android.camera.one.OneCameraManager; 33 * The {@link com.android.camera.one.OneCameraManager} implementation on top of the Camera API 1. 92 * Instantiates a new {@link com.android.camera.one.OneCameraManager} for Camera1 API. 132 // Returns the cached object if there exists one.
|
/packages/apps/Camera2/src/com/android/camera/one/v2/ |
Camera2OneCameraOpenerImpl.java | 17 package com.android.camera.one.v2; 37 import com.android.camera.one.OneCamera; 38 import com.android.camera.one.OneCamera.OpenCallback; 39 import com.android.camera.one.OneCameraAccessException; 40 import com.android.camera.one.OneCameraCaptureSetting; 41 import com.android.camera.one.OneCameraOpener; 42 import com.android.camera.one.config.OneCameraFeatureConfig; 43 import com.android.camera.one.v2.photo.ImageRotationCalculator; 49 * The {@link com.android.camera.one.OneCameraOpener} implementation on top of Camera2 API. 86 * Instantiates a new {@link com.android.camera.one.OneCameraOpener} for Camera2 API [all...] |
ImageCaptureManager.java | 17 package com.android.camera.one.v2; 184 "Unable to add an Image when one already exists."); 206 "Unable to add a TotalCaptureResult when one already exists."); 324 * one used for camera operations, such as capture requests and 629 * Tries to capture an existing image from the ring-buffer, if one exists
|
OneCameraCharacteristicsImpl.java | 17 package com.android.camera.one.v2; 32 import com.android.camera.one.OneCamera; 33 import com.android.camera.one.OneCameraCharacteristics; 236 // Auto-Focus is supported if the device supports one or more AF regions 244 // Auto-Exposure is supported if the device supports one or more AE regions
|
/packages/apps/Camera2/src/com/android/camera/one/v2/camera2proxy/ |
AndroidCameraCaptureSessionProxy.java | 17 package com.android.camera.one.v2.camera2proxy;
|
AndroidImageProxy.java | 17 package com.android.camera.one.v2.camera2proxy;
|
/packages/apps/Camera2/src/com/android/camera/one/v2/core/ |
RequestBuilder.java | 17 package com.android.camera.one.v2.core; 34 import com.android.camera.one.v2.camera2proxy.CaptureRequestBuilderProxy; 35 import com.android.camera.one.v2.camera2proxy.CaptureResultProxy; 36 import com.android.camera.one.v2.camera2proxy.TotalCaptureResultProxy; 37 import com.android.camera.one.v2.common.TimestampResponseListener; 162 * one of of the surfaces added to the
|
/packages/apps/Camera2/src/com/android/camera/one/v2/initialization/ |
GenericOneCameraImpl.java | 17 package com.android.camera.one.v2.initialization; 26 import com.android.camera.one.OneCamera; 27 import com.android.camera.one.PreviewSizeSelector; 28 import com.android.camera.one.v2.AutoFocusHelper; 29 import com.android.camera.one.v2.autofocus.ManualAutoFocus; 30 import com.android.camera.one.v2.photo.PictureTaker;
|
/packages/apps/Camera2/src/com/android/camera/one/v2/sharedimagereader/ringbuffer/ |
DynamicRingBuffer.java | 17 package com.android.camera.one.v2.sharedimagereader.ringbuffer; 24 import com.android.camera.one.v2.camera2proxy.ImageProxy; 25 import com.android.camera.one.v2.sharedimagereader.ticketpool.Ticket; 26 import com.android.camera.one.v2.sharedimagereader.ticketpool.TicketPool; 27 import com.android.camera.one.v2.sharedimagereader.util.ImageCloser; 28 import com.android.camera.one.v2.sharedimagereader.util.TicketImageProxy;
|
/packages/apps/Camera2/src/com/android/camera/one/v2/sharedimagereader/ticketpool/ |
ReservableTicketPool.java | 17 package com.android.camera.one.v2.sharedimagereader.ticketpool;
|
/system/media/audio_utils/ |
tinysndfile.c | 50 static const short one = 1; local 51 return *((const char *) &one) == 1;
|
/art/test/003-omnibus-opcodes/src/ |
IntMath.java | 91 int one = thirtyTwo / 32; local 99 Main.assertTrue(1 << -one == -2147483648); 107 Main.assertTrue(1 >> -one == 0); 115 Main.assertTrue(1 >>> -one == 0);
|
/bionic/libm/upstream-freebsd/lib/msun/src/ |
s_erf.c | 44 * is close to one. The interval is chosen because the fix 47 * guarantee the error is less than one ulp for erf. 119 one = 1, variable 205 return (double)(1-i)+one/x; /* erf(+-inf)=+-1 */ 216 s = one+z*(qq1+z*(qq2+z*(qq3+z*(qq4+z*qq5)))); 221 s = fabs(x)-one; 223 Q = one+s*(qa1+s*(qa2+s*(qa3+s*(qa4+s*(qa5+s*qa6))))); 227 if(hx>=0) return one-tiny; else return tiny-one; 230 s = one/(x*x) [all...] |
/dalvik/dx/src/com/android/dx/command/dump/ |
BlockDumper.java | 257 ByteCatchList.Item one = catches.get(j); local 258 CstType exceptionClass = one.getExceptionClass(); 263 Hex.u2(one.getHandlerPc())); 320 Insn one = il.get(i); local
|