/device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/RuntimeDxe/EfiRuntimeLib/Ipf/ |
RuntimeLib.c | 1070 UINT8 Segment,
1081 Segment - PCI Segment ACPI _SEG
1095 Address = EFI_PCI_ADDRESS_IPF (Segment, Bus, DevFunc, Register);
1104 UINT8 Segment,
1115 Segment - PCI Segment ACPI _SEG
1129 Address = EFI_PCI_ADDRESS_IPF (Segment, Bus, DevFunc, Register);
1137 UINT8 Segment,
1148 Segment - PCI Segment ACPI _SEG [all...] |
/external/swiftshader/third_party/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...] |
/device/linaro/bootloader/edk2/Vlv2TbltDevicePkg/BootScriptSaveDxe/ |
ScriptSave.c | 221 UINT16 Segment;
227 Segment = VA_ARG (Marker, UINT16);
229 return S3BootScriptSavePciCfg2Write (Width, Segment, Address, Count, Buffer);
248 UINT16 Segment;
255 Segment = VA_ARG (Marker, UINT16);
259 return S3BootScriptSavePciCfg2ReadWrite (Width, Segment, Address, Data, DataMask);
|
/external/skia/src/core/ |
SkPathMeasure.cpp | 23 SkScalar SkPathMeasure::Segment::getScalarT() const { 27 const SkPathMeasure::Segment* SkPathMeasure::NextSegment(const Segment* seg) { 43 /* if the dash as a zero-length on segment, add a corresponding zero-length line. 244 Segment* seg = fSegments.append(); 267 Segment* seg = fSegments.append(); 291 Segment* seg = fSegments.append(); 307 Segment* seg; 352 Segment* seg = fSegments.append(); 407 const Segment* seg = fSegments.begin() [all...] |
/external/skqp/src/core/ |
SkPathMeasure.cpp | 23 SkScalar SkPathMeasure::Segment::getScalarT() const { 27 const SkPathMeasure::Segment* SkPathMeasure::NextSegment(const Segment* seg) { 43 /* if the dash as a zero-length on segment, add a corresponding zero-length line. 244 Segment* seg = fSegments.append(); 267 Segment* seg = fSegments.append(); 291 Segment* seg = fSegments.append(); 307 Segment* seg; 352 Segment* seg = fSegments.append(); 407 const Segment* seg = fSegments.begin() [all...] |
/device/linaro/bootloader/OpenPlatformPkg/Platforms/Hisilicon/D03/Drivers/PciPlatform/ |
PciPlatform.h | 36 UINTN Segment;
|
/device/linaro/bootloader/edk2/MdePkg/Include/Ppi/ |
PciCfg2.h | 5 the PCI configuration space for a specific PCI segment.
176 /// The PCI bus segment which the specified functions will access.
178 UINT16 Segment;
|
/device/linaro/bootloader/edk2/Vlv2TbltDevicePkg/PciPlatform/ |
PciPlatform.h | 49 UINTN Segment;
|
/external/llvm/test/MC/MachO/ARM/ |
darwin-ARM-reloc.s | 2 @ RUN: llvm-readobj -file-headers -s -sd -r -t -macho-segment -macho-dysymtab -macho-indirect-symbols < %t.obj > %t.dump 43 @ CHECK: Segment: __TEXT (5F 5F 54 45 58 54 00 00 00 00 00 00 00 00 00 00) 64 @ CHECK: Segment: __DATA (5F 5F 44 41 54 41 00 00 00 00 00 00 00 00 00 00) 83 @ CHECK: Segment: __TEXT (5F 5F 54 45 58 54 00 00 00 00 00 00 00 00 00 00) 154 @ CHECK: Segment {
|
thumb-bl-jbits.s | 23 # CHECK: Segment: __TEXT (5F 5F 54 45 58 54 00 00 00 00 00 00 00 00 00 00)
|
/external/okhttp/okio/okio/src/main/java/okio/ |
SegmentedByteString.java | 30 * <p>The first half of the directory is the cumulative byte count covered by each segment. The 37 * Bytes preceding this offset are unused, as are bytes beyond the segment's effective size. 47 * <p>This structure is chosen so that the segment holding a particular offset can be found by 61 for (Segment s = buffer.head; offset < byteCount; s = s.next) { 63 throw new AssertionError("s.limit == s.pos"); // Empty segment. This should not happen! 74 for (Segment s = buffer.head; offset < byteCount; s = s.next) { 126 int segment = segment(pos); local 127 int segmentOffset = segment == 0 ? 0 : directory[segment - 1] 133 private int segment(int pos) { method in class:SegmentedByteString 172 Segment segment = new Segment(segments[s], segmentPos, local [all...] |
/external/okhttp/okio/okio/src/test/java/okio/ |
DeflaterSinkTest.java | 84 int byteCount = Segment.SIZE * 4; 93 // Exercise all possible offsets for the outgoing segment. 94 for (int i = 0; i < Segment.SIZE; i++) { 109 * This test deflates a single segment of without compression because that's 120 deflaterSink.write(new Buffer().writeUtf8(repeat('a', Segment.SIZE)), Segment.SIZE);
|
Utf8Test.java | 73 String a = TestUtil.repeat('a', Segment.SIZE + Segment.SIZE + 1); 81 String a = TestUtil.repeat('a', Segment.SIZE - 1); 83 String c = TestUtil.repeat('c', Segment.SIZE - 1);
|
/external/sfntly/cpp/src/sample/subtly/ |
font_assembler.cc | 94 Ptr<CMapTable::CMapFormat4::Builder::Segment> current_segment; 96 // For simplicity, we will have one segment per contiguous range. 105 if (character != last_chararacter + 1) { // new segment 116 Segment(character, -1, 0, last_offset); 122 // The last segment is still open. 125 // Updating the id_range_offset for every segment. 127 Ptr<CMapTable::CMapFormat4::Builder::Segment> segment = segment_list->at(i); local 128 segment->set_id_range_offset(segment->id_range_offset( [all...] |
/frameworks/av/media/extractors/mkv/ |
MatroskaExtractor.h | 81 mkvparser::Segment *mSegment;
|
/frameworks/native/services/surfaceflinger/tests/unittests/mock/gui/ |
MockGraphicBufferConsumer.h | 50 MOCK_METHOD2(getOccupancyHistory, status_t(bool, std::vector<OccupancyTracker::Segment>*));
|
/toolchain/binutils/binutils-2.27/ld/testsuite/ld-sh/ |
tlsbin-2.d | 46 Section to Segment mapping: 47 +Segment Sections\.\.\.
|
tlspic-2.d | 42 Section to Segment mapping: 43 +Segment Sections\.\.\.
|
/external/google-breakpad/src/common/mac/ |
macho_reader.cc | 196 fprintf(stderr, "%s: the load command for segment '%s'" 202 fprintf(stderr, "%s: the segment '%s' claims its contents lie beyond" 207 const string &segment) { 208 fprintf(stderr, "%s: the section '%s' in segment '%s'" 209 " claims its contents lie outside the segment's contents\n", 210 filename_.c_str(), section.c_str(), segment.c_str()); 337 Segment segment; local 338 segment.bits_64 = (type == LC_SEGMENT_64); 339 size_t word_size = segment.bits_64 ? 8 : 4 [all...] |
/prebuilts/go/darwin-x86/src/cmd/vendor/golang.org/x/arch/x86/x86asm/ |
intel.go | 403 if a.Segment == ES { 404 a.Segment = 0 407 if a.Segment == DS { 408 a.Segment = 0 412 a.Segment = 0 416 if a.Segment == SS { 417 a.Segment = 0 420 if a.Segment == DS { 421 a.Segment = 0 426 if inst.Mode == 64 && a.Segment != FS && a.Segment != GS [all...] |
/prebuilts/go/linux-x86/src/cmd/vendor/golang.org/x/arch/x86/x86asm/ |
intel.go | 403 if a.Segment == ES { 404 a.Segment = 0 407 if a.Segment == DS { 408 a.Segment = 0 412 a.Segment = 0 416 if a.Segment == SS { 417 a.Segment = 0 420 if a.Segment == DS { 421 a.Segment = 0 426 if inst.Mode == 64 && a.Segment != FS && a.Segment != GS [all...] |
/external/deqp/external/vulkancts/modules/vulkan/tessellation/ |
vktTessellationFractionalSpacingTests.cpp | 78 struct Segment 83 Segment (void) : index(-1), length(-1.0f) {} 84 Segment (int index_, float length_) : index(index_), length(length_) {} 87 inline std::vector<float> lengths (const std::vector<Segment>& segments) { return members(segments, &Segment::length); } 114 * (specifically, that the additional segment decreases monotonically 121 * no additional segments are present, i.e. there's just one segment. 158 std::vector<Segment> segments(finalLevel); 160 segments[i] = Segment(i, sortedCoords[i+1] - sortedCoords[i]); 162 failNote += "\nNote: segment lengths are, from left to right:\n " + containerStr(lengths(segments)) [all...] |
/external/clang/lib/Driver/ |
Multilib.cpp | 34 /// normalize Segment to "/foo/bar" or "". 35 static void normalizePathSegment(std::string &Segment) { 36 StringRef seg = Segment; 47 Segment = ""; 53 Segment = "/" + seg.str(); 55 Segment = seg;
|
/external/sfntly/cpp/src/sfntly/table/core/ |
cmap_table.cc | 607 int32_t segment = data_->SearchUShort(StartCodeOffset(seg_count_), local 613 if (segment == -1) { 616 int32_t start_code = StartCode(segment); 617 return RetrieveGlyphId(segment, start_code, character); 620 int32_t CMapTable::CMapFormat4::RetrieveGlyphId(int32_t segment, 626 int32_t id_range_offset = IdRangeOffset(segment); 628 return (character + IdDelta(segment)) % 65536; 631 IdRangeOffsetLocation(segment) + 643 int32_t CMapTable::CMapFormat4::StartCode(int32_t segment) { 644 if (!IsValidIndex(segment)) { 982 Ptr<Segment> segment = new Segment; local [all...] |
/external/valgrind/drd/ |
drd_thread.h | 69 struct segment* sg_first;/**< Segment list. */ 70 struct segment* sg_last; 187 void DRD_(thread_get_latest_segment)(Segment** sg, const DrdThreadId tid); 191 const Segment* sg); 201 const Segment* const p); 355 /** Return a pointer to the latest segment for the specified thread. */ 357 Segment* DRD_(thread_get_segment)(const DrdThreadId tid) 367 /** Return a pointer to the latest segment for the running thread. */ 369 Segment* DRD_(running_thread_get_segment)(void [all...] |