HomeSort by relevance Sort by last modified time
    Searched full:striped (Results 1 - 25 of 103) sorted by null

1 2 3 4 5

  /external/guava/guava-tests/test/com/google/common/util/concurrent/
StripedTest.java 44 * Tests for Striped.
49 private static List<Striped<?>> strongImplementations() {
51 Striped.readWriteLock(100),
52 Striped.readWriteLock(256),
53 Striped.lock(100),
54 Striped.lock(256),
55 Striped.semaphore(100, 1),
56 Striped.semaphore(256, 1));
78 private static List<Striped<?>> weakImplementations() {
79 return ImmutableList.<Striped<?>>builder(
    [all...]
  /external/guava/guava-tests/benchmark/com/google/common/util/concurrent/
StripedBenchmark.java 39 * A benchmark comparing the various striped implementations.
54 @Override Striped<Lock> get(int stripes) {
55 return Striped.lock(stripes);
59 @Override Striped<Lock> get(int stripes) {
60 return new Striped.SmallLazyStriped<Lock>(stripes, LOCK_SUPPLIER);
64 @Override Striped<Lock> get(int stripes) {
65 return new Striped.LargeLazyStriped<Lock>(stripes, LOCK_SUPPLIER);
69 abstract Striped<Lock> get(int stripes);
72 private Striped<Lock> striped; field in class:StripedBenchmark
98 Striped<Lock> striped = impl.get(numStripes); local
    [all...]
  /external/guava/guava/src/com/google/common/util/concurrent/
Striped.java 46 * A striped {@code Lock/Semaphore/ReadWriteLock}. This offers the underlying lock striping
54 * i.e. {@code if (key1.equals(key2))} then {@code striped.get(key1) == striped.get(key2)}
57 * guaranteed that {@code striped.get(key1) != striped.get(key2)}; the elements might nevertheless
61 * <p>There are three flavors of this class: {@code Striped<Lock>}, {@code Striped<Semaphore>},
62 * and {@code Striped<ReadWriteLock>}. For each type, two implementations are offered:
64 * {@code Striped<Lock>}, {@linkplain #semaphore(int, int) strong} and {@linkplain
65 * #lazyWeakSemaphore(int, int) weak} {@code Striped<Semaphore>}, and {@linkplai
    [all...]
  /external/skia/gm/
samplerstress.cpp 98 // draw a letter "M" with a green & red striped texture and a
  /external/ImageMagick/ImageMagick/script/
jp2.html 110 <table class="table table-condensed table-striped">
124 <table class="table table-condensed table-striped">
compose.html 91 <table class="table table-condensed table-striped">
196 <table class="table table-condensed table-striped">
305 <table class="table table-condensed table-striped">
409 <table class="table table-condensed table-striped">
474 <table class="table table-condensed table-striped">
gradient.html 96 <table class="table table-condensed table-striped">
139 <table class="table table-condensed table-striped">
binary-releases.html 64 <table class="table table-condensed table-striped">
171 <table class="table table-condensed table-striped">
294 <table class="table table-condensed table-striped">
314 <table class="table table-condensed table-striped">
contact.html 64 <table class="table table-condensed table-striped">
escape.html 58 <table class="table table-striped">
137 <table class="table table-condensed table-striped">
355 <table class="table table-condensed table-striped">
exception.html 58 <table class="table table-condensed table-striped">
webp.html 71 <table class="table table-condensed table-striped">
  /external/ImageMagick/www/
jp2.html 114 <table class="table table-condensed table-striped">
128 <table class="table table-condensed table-striped">
compose.html 95 <table class="table table-condensed table-striped">
200 <table class="table table-condensed table-striped">
309 <table class="table table-condensed table-striped">
413 <table class="table table-condensed table-striped">
478 <table class="table table-condensed table-striped">
gradient.html 100 <table class="table table-condensed table-striped">
143 <table class="table table-condensed table-striped">
binary-releases.html 68 <table class="table table-condensed table-striped">
168 <table class="table table-condensed table-striped">
291 <table class="table table-condensed table-striped">
311 <table class="table table-condensed table-striped">
contact.html 68 <table class="table table-condensed table-striped">
escape.html 62 <table class="table table-striped">
141 <table class="table table-condensed table-striped">
359 <table class="table table-condensed table-striped">
exception.html 62 <table class="table table-condensed table-striped">
webp.html 75 <table class="table table-condensed table-striped">
  /external/apache-commons-math/src/main/java/org/apache/commons/math/dfp/
Dfp.java 341 final int offset = 4; // Starting offset into Striped
342 final char[] striped = new char[getRadixDigits() * rsize + offset * 2]; local
428 striped[0] = '0';
429 striped[1] = '0';
430 striped[2] = '0';
431 striped[3] = '0';
455 striped[q] = fpdecimal.charAt(p);
469 if (striped[q] == '0') {
493 if (striped[p] != '0') {
508 striped[++p] = '0'
    [all...]
  /external/webrtc/talk/media/base/
yuvframegenerator.h 28 // Generates YUV420 frames with a "landscape with striped crosshair" in the
  /external/slf4j/slf4j-site/src/site/pages/css/
site.css 362 .striped tr:nth-child(odd) td {
365 .striped td {
  /device/generic/goldfish/camera/
EmulatedFakeCameraDevice.cpp 428 ALOGD("********** Rotated to the STRIPED frame **********");
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/src/org/eclipse/test/performance/ui/
BarGraph.java 144 // draw striped background

Completed in 914 milliseconds

1 2 3 4 5