HomeSort by relevance Sort by last modified time
    Searched refs:Segment (Results 51 - 75 of 106) sorted by null

1 23 4 5

  /external/chromium_org/third_party/WebKit/Source/core/platform/animation/
TimingFunctionTestHelper.cpp 46 ChainedTimingFunction::Segment segment = timingFunction.m_segments[i]; local
47 PrintTo(*(segment.m_timingFunction.get()), os);
48 *os << "[" << segment.m_min << " -> " << segment.m_max << "]";
75 static bool equals(const ChainedTimingFunction::Segment& lhs, const ChainedTimingFunction::Segment& rhs)
  /external/guava/guava/src/com/google/common/collect/
MapMakerInternalMap.java 80 * If a maximum size is specified, a best-effort bounding is performed per segment, using a
85 * ordering of writes to a segment is sequentially consistent. An update to the map and recording
91 * This implementation uses a per-segment queue to record a memento of the additions, removals,
97 * operates per-segment rather than globally for increased implementation simplicity. We expect
117 * Number of cache access operations that can be buffered per segment before the cache's recency
140 * the segment.
145 * Shift value for indexing within segments. Helps prevent entries that end up in the same segment
151 final transient Segment<K, V>[] segments;
248 // Ensure sum of segment max sizes = overall max size
299 Segment<K, V> segment, ReferenceEntry<K, V> entry, V value)
    [all...]
ComputingConcurrentHashMap.java 58 Segment<K, V> createSegment(int initialCapacity, int maxSegmentSize) {
73 static final class ComputingSegment<K, V> extends Segment<K, V> {
181 // detected. This is not fool-proof since the entry may be copied when the segment
  /external/llvm/lib/Target/X86/
X86ISelDAGToDAG.cpp 62 SDValue Segment;
73 Segment(), GV(0), CP(0), BlockAddr(0), ES(0), JT(-1), Align(0),
197 SDValue &Segment);
201 SDValue &Segment);
204 SDValue &Segment);
207 SDValue &Segment);
211 SDValue &Segment,
217 SDValue &Segment);
229 SDValue &Disp, SDValue &Segment) {
257 if (AM.Segment.getNode()
    [all...]
X86AsmPrinter.cpp 320 const MachineOperand &Segment = MI->getOperand(Op+4);
321 if (Segment.getReg()) {
337 // If this has a segment register, print it.
  /external/guava/guava-tests/test/com/google/common/cache/
LocalCacheTest.java 42 import com.google.common.cache.LocalCache.Segment;
211 // share capacity over each segment, then round up to nearest power of two
419 Segment<Object, Object> segment = map.segments[0]; local
427 ReferenceEntry<Object, Object> entry = segment.getEntry(key, hash);
432 checkEvictionQueues(map, segment, readOrder, writeOrder);
434 assertTrue(segment.recencyQueue.isEmpty());
446 assertTrue(segment.recencyQueue.size() <= DRAIN_THRESHOLD);
449 int undrainedIndex = reads.size() - segment.recencyQueue.size();
450 checkAndDrainRecencyQueue(map, segment, reads.subList(undrainedIndex, reads.size()))
475 Segment<Object, Object> segment = map.segments[0]; local
504 Segment<Object, Object> segment = map.segments[0]; local
565 Segment<Object, Object> segment = map.segments[0]; local
704 Segment<Object, Object> segment = map.segments[0]; local
798 Segment<Object, Object> segment = map.segments[0]; local
965 Segment<Object, Object> segment = map.segments[0]; local
1040 Segment<Object, Object> segment = map.segments[0]; local
1084 Segment<Object, Object> segment = map.segments[0]; local
1123 Segment<Object, Object> segment = map.segments[0]; local
1155 Segment<Object, Object> segment = map.segments[0]; local
1187 Segment<Object, Object> segment = map.segments[0]; local
1227 Segment<Object, Object> segment = map.segments[0]; local
1302 Segment<Object, Object> segment = map.segments[0]; local
1341 Segment<Object, Object> segment = map.segments[0]; local
1388 Segment<Object, Object> segment = map.segments[0]; local
1428 Segment<Object, Object> segment = map.segments[0]; local
1474 Segment<Object, Object> segment = map.segments[0]; local
1519 Segment<Object, Object> segment = map.segments[0]; local
1581 Segment<Object, Object> segment = map.segments[0]; local
1616 Segment<Object, Object> segment = map.segments[0]; local
1651 Segment<Object, Object> segment = map.segments[0]; local
1685 Segment<Object, Object> segment = map.segments[0]; local
1732 Segment<Object, Object> segment = map.segments[0]; local
1786 Segment<Object, Object> segment = map.segments[0]; local
1811 Segment<Object, Object> segment = map.segments[0]; local
1855 Segment<Object, Object> segment = map.segments[0]; local
1896 Segment<Object, Object> segment = map.segments[0]; local
1939 Segment<Object, Object> segment = map.segments[0]; local
2043 Segment<Object, Object> segment = map.segments[0]; local
2082 Segment<Object, Object> segment = map.segments[0]; local
2134 Segment<Object, Object> segment = map.segments[0]; local
2176 Segment<Object, Object> segment = map.segments[0]; local
2206 Segment<Object, Object> segment = map.segments[0]; local
2237 Segment<Object, Object> segment = map.segments[0]; local
2268 Segment<Object, Object> segment = map.segments[0]; local
    [all...]
LocalLoadingCacheTest.java 25 import com.google.common.cache.LocalCache.Segment;
269 Segment<Object, Object> segment = cache.localCache.segments[0]; local
274 assertTrue(segment.recencyQueue.isEmpty());
276 assertSame(one, segment.recencyQueue.peek().getKey());
278 assertFalse(segment.recencyQueue.isEmpty());
  /external/libvpx/libwebm/
mkvparser.cpp 678 Segment::Segment(
703 Segment::~Segment()
727 long long Segment::CreateInstance(
730 Segment*& pSegment)
819 if (id == 0x08538067) //Segment ID
830 pSegment = new (std::nothrow) Segment(
852 return E_FILE_FORMAT_INVALID; //there is no segment
857 long long Segment::ParseHeaders()
    [all...]
  /external/llvm/include/llvm/MC/
MCContext.h 238 const MCSectionMachO *getMachOSection(StringRef Segment,
243 const MCSectionMachO *getMachOSection(StringRef Segment,
247 return getMachOSection(Segment, Section, TypeAndAttributes, 0, K);
  /external/llvm/lib/MC/
MCContext.cpp 210 getMachOSection(StringRef Segment, StringRef Section,
214 // We unique sections by their segment/section pair. The returned section
225 Name += Segment;
234 return Entry = new (*this) MCSectionMachO(Segment, Section, TypeAndAttributes,
  /external/guava/guava/src/com/google/common/cache/
LocalCache.java 99 * If a maximum size is specified, a best-effort bounding is performed per segment, using a
104 * ordering of writes to a segment is sequentially consistent. An update to the map and recording
110 * This implementation uses a per-segment queue to record a memento of the additions, removals,
116 * operates per-segment rather than globally for increased implementation simplicity. We expect
136 * Number of cache access operations that can be buffered per segment before the cache's recency
159 * the segment.
164 * Shift value for indexing within segments. Helps prevent entries that end up in the same segment
170 final Segment<K, V>[] segments;
289 // Ensure sum of segment max weights = overall max weights
376 Segment<K, V> segment, ReferenceEntry<K, V> entry, V value, int weight)
    [all...]
  /external/guava/guava-tests/test/com/google/common/collect/
ComputingConcurrentHashMapTest.java 31 import com.google.common.collect.MapMakerInternalMap.Segment;
114 Segment<Object, Object> segment = map.segments[0]; local
122 ReferenceEntry<Object, Object> entry = segment.getEntry(key, hash);
127 checkEvictionQueues(map, segment, readOrder, writeOrder);
129 assertTrue(segment.recencyQueue.isEmpty());
141 assertTrue(segment.recencyQueue.size() <= DRAIN_THRESHOLD);
144 int undrainedIndex = reads.size() - segment.recencyQueue.size();
145 checkAndDrainRecencyQueue(map, segment, reads.subList(undrainedIndex, reads.size()));
148 checkEvictionQueues(map, segment, readOrder, writeOrder)
171 Segment<Object, Object> segment = map.segments[0]; local
200 Segment<Object, Object> segment = map.segments[0]; local
    [all...]
  /external/libvpx/libvpx/third_party/libmkv/
EbmlIDs.h 34 /* segment */
35 Segment = 0x18538067,
41 /* Segment Information */
  /external/valgrind/main/drd/
drd_barrier.c 45 Segment* sg; // Segment of the last pthread_barrier() call
47 Segment* post_wait_sg; // Segment created after *_barrier_wait() finished
148 Segment* latest_sg = 0;
385 * Store a pointer to the latest segment of the current thread in the
463 /* Create a new segment and store a pointer to that segment. */
drd_hb.c 43 Segment* sg; // Segment created before most recent
184 * Store a pointer to the latest segment of the current thread in the
drd_rwlock.c 45 // Segment of last unlock call by this thread that unlocked a writer lock.
46 Segment* latest_wrlocked_segment;
47 // Segment of last unlock call by this thread that unlocked a reader lock.
48 Segment* latest_rdlocked_segment;
  /external/chromium_org/v8/test/intl/break-iterator/
en-break.js 28 // Segment plain English sentence and check results.
zh-break.js 28 // Segment plain Chinese sentence and check results.
  /external/llvm/lib/CodeGen/
TargetLoweringObjectFileImpl.cpp 461 StringRef Segment, Section;
465 MCSectionMachO::ParseSectionSpecifier(SectionVal, Segment, Section,
474 getContext().getMachOSection(Segment, Section, TAA, StubSize,
488 StringRef Segment, Section;
492 MCSectionMachO::ParseSectionSpecifier(GV->getSection(), Segment, Section,
503 getContext().getMachOSection(Segment, Section, TAA, StubSize, Kind);
564 // linker needs to write to it, put it in the data segment.
589 // segment, not in the text segment.
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/common/layout/
BaseLayoutRule.java 76 import com.android.ide.common.api.Segment;
669 Segment s = resizeState.horizontalFillSegment;
674 Segment s = resizeState.verticalFillSegment;
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/util/
dbghelp.h 172 WORD Segment;
182 WORD Segment;
188 a64->Segment = a32->Segment;
194 a32->Segment = a64->Segment;
    [all...]
  /external/mesa3d/src/gallium/auxiliary/util/
dbghelp.h 172 WORD Segment;
182 WORD Segment;
188 a64->Segment = a32->Segment;
194 a32->Segment = a64->Segment;
    [all...]
  /external/chromium_org/media/webm/chromeos/
webm_encoder.cc 177 // Single segment with a video track.
178 StartSubElement(Segment);
182 // All timecodes in the segment will be expressed in milliseconds.
215 } // Segment left open.
252 EndSubElement(); // Segment
  /external/chromium_org/third_party/harfbuzz-ng/src/
hb-graphite2.cc 35 #include <graphite2/Segment.h>
  /external/harfbuzz_ng/src/
hb-graphite2.cc 34 #include <graphite2/Segment.h>

Completed in 1280 milliseconds

1 23 4 5