HomeSort by relevance Sort by last modified time
    Searched refs:Segment (Results 26 - 50 of 55) sorted by null

12 3

  /external/llvm/lib/MC/MCParser/
DarwinAsmParser.cpp 34 bool ParseSectionSwitch(const char *Segment, const char *Section,
296 bool DarwinAsmParser::ParseSectionSwitch(const char *Segment,
305 bool isText = StringRef(Segment) == "__TEXT"; // FIXME: Hack.
307 Segment, Section, TAA, StubSize,
434 StringRef Segment, Section;
439 MCSectionMachO::ParseSectionSpecifier(SectionSpec, Segment, Section,
446 bool isText = Segment == "__TEXT"; // FIXME: Hack.
448 Segment, Section, TAA, StubSize,
579 StringRef Segment;
580 if (getParser().ParseIdentifier(Segment))
    [all...]
  /external/guava/src/com/google/common/collect/
CustomConcurrentHashMap.java 525 // Spread bits to regularize both segment and index locations,
576 * code are used to choose the segment.
582 * end up in the same segment from also ending up in the same bucket.
589 final Segment[] segments;
628 this.segments[i] = new Segment(segmentSize);
671 Segment[] newSegmentArray(int ssize) {
673 // a segment array (the compile has a tough time with arrays of
677 return (Segment[]) Array.newInstance(Segment.class, ssize);
683 * Returns the segment that should be used for key with given has
2013 Segment segment = segmentFor(hash); local
    [all...]
  /external/valgrind/tsan/
thread_sanitizer.cc 42 // Segment ID (SID) is in range [1, kMaxSID-1]
43 // Segment Set ID (SSID) is in range [-kMaxSID+1, -1]
221 // Segment ID.
257 // Singleton: id > 0 (id == Segment's id)
    [all...]
  /external/llvm/lib/Target/X86/
X86ISelDAGToDAG.cpp 66 SDValue Segment;
77 Segment(), GV(0), CP(0), BlockAddr(0), ES(0), JT(-1), Align(0),
204 SDValue &Segment);
207 SDValue &Segment);
210 SDValue &Segment);
214 SDValue &Segment,
220 SDValue &Segment);
232 SDValue &Disp, SDValue &Segment) {
257 if (AM.Segment.getNode())
258 Segment = AM.Segment
    [all...]
X86AsmPrinter.cpp 330 const MachineOperand &Segment = MI->getOperand(Op+4);
331 if (Segment.getReg()) {
  /libcore/luni/src/main/java/java/util/concurrent/
ConcurrentHashMap.java 128 * key's hash code are used to choose the segment.
140 final Segment<K,V>[] segments;
156 // Spread bits to regularize both segment and index locations,
167 * Returns the segment that should be used for key with given hash
169 * @return the segment
171 final Segment<K,V> segmentFor(int hash) {
185 * occur, the Segment.readValueUnderLock method is used as a
213 static final class Segment<K,V> extends ReentrantLock implements Serializable {
254 * The number of elements in this segment's region.
276 * The per-segment table
    [all...]
  /external/chromium/third_party/libjingle/source/talk/p2p/base/
pseudotcp.h 117 struct Segment {
153 bool process(Segment& seg);
179 // Maximum segment size, estimated protocol level, largest segment sent
pseudotcp.cc 295 // Check if it's time to retransmit a segment
466 // We can concatenate data if the last segment is the same type
534 Segment seg;
598 bool PseudoTcp::process(Segment& seg) {
618 // Check if this is a reset segment
791 // 1) Segment is too old (they missed an ACK) (immediately)
792 // 2) Segment is too new (we missed a segment) (immediately)
793 // 3) Segment has data (so we need to ACK!) (delayed)
794 // ... so the only time we don't need to ACK, is an empty segment that points to rcv_nxt
    [all...]
  /external/libvpx/libmkv/
EbmlIDs.h 35 //segment
36 Segment = 0x18538067,
42 //Segment Information
  /external/llvm/include/llvm/MC/
MCContext.h 171 const MCSectionMachO *getMachOSection(StringRef Segment,
176 const MCSectionMachO *getMachOSection(StringRef Segment,
180 return getMachOSection(Segment, Section, TypeAndAttributes, 0, K);
  /external/llvm/lib/MC/
MCContext.cpp 156 getMachOSection(StringRef Segment, StringRef Section,
160 // We unique sections by their segment/section pair. The returned section
171 Name += Segment;
180 return Entry = new (*this) MCSectionMachO(Segment, Section, TypeAndAttributes,
  /external/libvpx/mkvparser/
mkvparser.cpp 866 Segment::Segment(
887 Segment::~Segment()
911 long long Segment::CreateInstance(
914 Segment*& pSegment)
1002 if (id == 0x08538067) //Segment ID
1018 pSegment = new (std::nothrow) Segment(pReader, pos, size);
1035 return E_FILE_FORMAT_INVALID; //there is no segment
1040 long long Segment::ParseHeaders()
    [all...]
  /external/libvpx/vp8/common/
loopfilter.c 317 /* Note the baseline filter values for each segment */
355 int Segment = (alt_flt_enabled) ? mbd->mode_info_context->mbmi.segment_id : 0;
357 filter_level = baseline_filter_level[Segment];
423 /* Note the baseline filter values for each segment */
459 int Segment = (alt_flt_enabled) ? mbd->mode_info_context->mbmi.segment_id : 0;
460 filter_level = baseline_filter_level[Segment];
531 /* Note the baseline filter values for each segment */
567 int Segment = (alt_flt_enabled) ? mbd->mode_info_context->mbmi.segment_id : 0;
568 filter_level = baseline_filter_level[Segment];
  /sdk/traceview/src/com/android/traceview/
TimeLineView.java 58 private Segment[] mSegments;
411 ArrayList<Segment> segmentList = new ArrayList<Segment>();
446 // Create a Segment object for each visible part of a block.
456 // Add this segment if it has a non-zero elapsed time.
458 Segment segment = new Segment(rd, top, topStartTime, local
460 segmentList.add(segment);
508 mSegments = segmentList.toArray(new Segment[segmentList.size()])
543 Segment segment = new Segment(rd, top, lastEndTime, topEndTime); local
    [all...]
  /external/valgrind/main/drd/
drd_barrier.c 48 Segment* sg[2]; // Segments of the last two
51 Segment* post_wait_sg; // Segment created after *_barrier_wait() finished
149 Segment* latest_sg = 0;
386 * Store a pointer to the latest segment of the current thread in the
458 /* Create a new segment and store a pointer to that segment. */
drd_hb.c 44 Segment* sg; // Segment created before most recent
189 * Store a pointer to the latest segment of the current thread in the
drd_rwlock.c 46 // Segment of last unlock call by this thread that unlocked a writer lock.
47 Segment* latest_wrlocked_segment;
48 // Segment of last unlock call by this thread that unlocked a reader lock.
49 Segment* latest_rdlocked_segment;
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/common/layout/
BaseLayoutRule.java 75 import com.android.ide.common.api.Segment;
679 Segment s = resizeState.horizontalFillSegment;
684 Segment s = resizeState.verticalFillSegment;
    [all...]
  /external/llvm/lib/CodeGen/
TargetLoweringObjectFileImpl.cpp 353 StringRef Segment, Section;
357 MCSectionMachO::ParseSectionSpecifier(GV->getSection(), Segment, Section,
370 getContext().getMachOSection(Segment, Section, TAA, StubSize, Kind);
436 // linker needs to write to it, put it in the data segment.
457 // segment, not in the text segment.
  /external/libvpx/vp8/decoder/
threading.c 257 int Segment;
351 Segment = (alt_flt_enabled) ? xd->mode_info_context->mbmi.segment_id : 0;
352 filter_level = pbi->mt_baseline_filter_level[Segment];
651 /* Note the baseline filter values for each segment */
695 int Segment;
    [all...]
  /frameworks/base/media/libstagefright/matroska/
MatroskaExtractor.cpp 540 mkvparser::Segment::CreateInstance(mReader, pos, mSegment);
  /external/oprofile/events/x86-64/family11h/
events 29 event:0x20 counters:0,1,2,3 um:segregload minimum:500 name:SEGMENT_REGISTER_LOADS : Segment register loads
101 event:0xd4 counters:0,1,2,3 um:zero minimum:500 name:DISPATCH_STALL_FOR_SEGMENT_LOAD : Dispatch stall for segment load
  /external/oprofile/events/x86-64/hammer/
events 27 event:0x20 counters:0,1,2,3 um:segregload minimum:500 name:SEGMENT_REGISTER_LOADS : Segment register loads
96 event:0xd4 counters:0,1,2,3 um:zero minimum:500 name:DISPATCH_STALL_FOR_SEGMENT_LOAD : Dispatch stall for segment load
  /external/clang/lib/Basic/
Targets.cpp 208 StringRef Segment, Section;
211 return llvm::MCSectionMachO::ParseSectionSpecifier(SR, Segment, Section,
    [all...]
  /external/libvpx/
vpxenc.c 586 //segment info
624 Ebml_StartSubElement(glob, &glob->startSegment, Segment); //segment
660 // segment element is open
    [all...]

Completed in 1832 milliseconds

12 3