Searched defs:Segment (Results 1 - 20 of 20) sorted by relevance

/external/valgrind/main/drd/
H A Ddrd_segment.h60 } Segment; typedef in typeref:struct:segment
63 Segment* DRD_(sg_new)(const DrdThreadId creator, const DrdThreadId created);
64 static int DRD_(sg_get_refcnt)(const Segment* const sg);
65 Segment* DRD_(sg_get)(Segment* const sg);
66 void DRD_(sg_put)(Segment* const sg);
67 static struct bitmap* DRD_(sg_bm)(Segment* const sg);
68 void DRD_(sg_merge)(Segment* const sg1, Segment* const sg2);
69 void DRD_(sg_print)(Segment* cons
[all...]
/external/skia/include/core/
H A DSkPathMeasure.h93 struct Segment { struct in class:SkPathMeasure
101 SkTDArray<Segment> fSegments;
103 static const Segment* NextSegment(const Segment*);
110 const Segment* distanceToSegment(SkScalar distance, SkScalar* t);
/external/llvm/lib/MC/
H A DMCSectionMachO.cpp75 MCSectionMachO::MCSectionMachO(StringRef Segment, StringRef Section, argument
78 assert(Segment.size() <= 16 && Section.size() <= 16 &&
79 "Segment or section string too long");
81 if (i < Segment.size())
82 SegmentName[i] = Segment[i];
180 StringRef &Segment, // Out.
195 Segment = Comma.first;
196 StripSpaces(Segment);
199 if (Segment.empty() || Segment
179 ParseSectionSpecifier(StringRef Spec, StringRef &Segment, StringRef &Section, unsigned &TAA, bool &TAAParsed, unsigned &StubSize) argument
[all...]
H A DMCContext.cpp156 getMachOSection(StringRef Segment, StringRef Section, argument
171 Name += Segment;
180 return Entry = new (*this) MCSectionMachO(Segment, Section, TypeAndAttributes,
/external/v8/src/
H A Dzone.cc61 class Segment { class in namespace:v8::internal
63 Segment* next() const { return next_; }
67 int capacity() const { return size_ - sizeof(Segment); }
69 Address start() const { return address(sizeof(Segment)); }
78 Segment* next_;
87 Segment* Zone::NewSegment(int size) {
88 Segment* result = reinterpret_cast<Segment*>(Malloced::New(size));
100 void Zone::DeleteSegment(Segment* segment, int size) {
113 Segment* kee
[all...]
/external/libvpx/vp8/common/
H A Dloopfilter.c355 int Segment = (alt_flt_enabled) ? mbd->mode_info_context->mbmi.segment_id : 0; local
357 filter_level = baseline_filter_level[Segment];
459 int Segment = (alt_flt_enabled) ? mbd->mode_info_context->mbmi.segment_id : 0; local
460 filter_level = baseline_filter_level[Segment];
567 int Segment = (alt_flt_enabled) ? mbd->mode_info_context->mbmi.segment_id : 0; local
568 filter_level = baseline_filter_level[Segment];
/external/libvpx/vp8/decoder/
H A Dthreading.c257 int Segment; local
351 Segment = (alt_flt_enabled) ? xd->mode_info_context->mbmi.segment_id : 0;
352 filter_level = pbi->mt_baseline_filter_level[Segment];
695 int Segment; local
839 Segment = (alt_flt_enabled) ? xd->mode_info_context->mbmi.segment_id : 0;
840 filter_level = pbi->mt_baseline_filter_level[Segment];
/external/llvm/lib/CodeGen/
H A DTargetLoweringObjectFileImpl.cpp353 StringRef Segment, Section; local
357 MCSectionMachO::ParseSectionSpecifier(GV->getSection(), Segment, Section,
370 getContext().getMachOSection(Segment, Section, TAA, StubSize, Kind);
/external/llvm/lib/Target/X86/
H A DX86AsmPrinter.cpp330 const MachineOperand &Segment = MI->getOperand(Op+4); local
331 if (Segment.getReg()) {
H A DX86ISelDAGToDAG.cpp66 SDValue Segment; member in struct:__anon6965::X86ISelAddressMode
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
230 getAddressOperands(X86ISelAddressMode &AM, SDValue &Base, SDValue &Scale, SDValue &Index, SDValue &Disp, SDValue &Segment) argument
1134 SelectAddr(SDNode *Parent, SDValue N, SDValue &Base, SDValue &Scale, SDValue &Index, SDValue &Disp, SDValue &Segment) argument
1177 SelectScalarSSELoad(SDNode *Root, SDValue N, SDValue &Base, SDValue &Scale, SDValue &Index, SDValue &Disp, SDValue &Segment, SDValue &PatternNodeWithChain) argument
1218 SelectLEAAddr(SDValue N, SDValue &Base, SDValue &Scale, SDValue &Index, SDValue &Disp, SDValue &Segment) argument
1280 SelectTLSADDRAddr(SDValue N, SDValue &Base, SDValue &Scale, SDValue &Index, SDValue &Disp, SDValue &Segment) argument
1304 TryFoldLoad(SDNode *P, SDValue N, SDValue &Base, SDValue &Scale, SDValue &Index, SDValue &Disp, SDValue &Segment) argument
[all...]
H A DX86ISelLowering.cpp10171 DAG.getRegister(0, MVT::i32), // Segment.
10227 DAG.getRegister(0, MVT::i32), // Segment.
11374 MachineOperand &Segment = MI->getOperand(5); local
11481 .addOperand(Segment)
11506 .addOperand(Segment)
11533 .addOperand(Segment)
11553 .addOperand(Segment)
11589 .addOperand(Segment)
11671 .addReg(/*Segment=*/0)
/external/webkit/Source/JavaScriptCore/wtf/
H A DSegmentedVector.h148 m_segments.append(new Segment);
193 typedef Vector<T, SegmentSize> Segment; typedef in class:WTF::SegmentedVector
208 Segment* segmentFor(size_t index)
242 m_segments.append(new Segment);
247 Segment m_inlineSegment;
248 Vector<Segment*, 32> m_segments;
/external/libvpx/libmkv/
H A DEbmlIDs.h36 Segment = 0x18538067, enumerator in enum:mkv
42 //Segment Information
/external/llvm/include/llvm/MC/
H A DMCContext.h171 const MCSectionMachO *getMachOSection(StringRef Segment,
176 const MCSectionMachO *getMachOSection(StringRef Segment, argument
180 return getMachOSection(Segment, Section, TypeAndAttributes, 0, K);
/external/chromium/third_party/libjingle/source/talk/p2p/base/
H A Dpseudotcp.h117 struct Segment { struct in class:cricket::PseudoTcp
153 bool process(Segment& seg);
/external/libvpx/mkvparser/
H A Dmkvparser.hpp63 class Segment;
198 Segment* const m_pSegment;
244 Segment*,
274 Segment*,
300 Segment*,
323 Segment* const m_pSegment;
330 Segment*,
362 Segment* const m_pSegment;
369 Segment*,
398 Segment* cons
629 class Segment class in namespace:mkvparser
[all...]
H A Dmkvparser.cpp866 Segment::Segment( function in class:mkvparser::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);
1040 long long Segment::ParseHeaders()
1132 if (id == 0x0549A966) //Segment Inf
[all...]
/external/llvm/lib/MC/MCParser/
H A DDarwinAsmParser.cpp34 bool ParseSectionSwitch(const char *Segment, const char *Section,
296 bool DarwinAsmParser::ParseSectionSwitch(const char *Segment, argument
305 bool isText = StringRef(Segment) == "__TEXT"; // FIXME: Hack.
307 Segment, Section, TAA, StubSize,
434 StringRef Segment, Section; local
439 MCSectionMachO::ParseSectionSpecifier(SectionSpec, Segment, Section,
446 bool isText = Segment == "__TEXT"; // FIXME: Hack.
448 Segment, Section, TAA, StubSize,
579 StringRef Segment; local
580 if (getParser().ParseIdentifier(Segment))
[all...]
/external/guava/src/com/google/common/collect/
H A DCustomConcurrentHashMap.java589 final Segment[] segments;
628 this.segments[i] = new Segment(segmentSize);
671 Segment[] newSegmentArray(int ssize) {
677 return (Segment[]) Array.newInstance(Segment.class, ssize);
688 Segment segmentFor(int hash) {
700 final class Segment extends ReentrantLock { class in class:CustomConcurrentHashMap.Impl
764 Segment(int initialCapacity) { method in class:CustomConcurrentHashMap.Impl.Segment
1228 final Segment[] segments = this.segments;
1269 final Segment[] segment
[all...]
/external/webkit/Source/WebCore/platform/graphics/gpu/
H A DLoopBlinnPathProcessor.cpp64 using LoopBlinnPathProcessorImplementation::Segment;
90 class Segment;
113 struct ValueToString<LoopBlinnPathProcessorImplementation::Segment*> {
114 static String string(LoopBlinnPathProcessorImplementation::Segment* const& value)
124 // Segment
131 class Segment { class in namespace:WebCore::LoopBlinnPathProcessorImplementation
132 WTF_MAKE_NONCOPYABLE(Segment);
140 Segment() function in class:WebCore::LoopBlinnPathProcessorImplementation::Segment
192 Segment* next() const { return m_next; }
193 Segment* pre
[all...]

Completed in 749 milliseconds