| /external/v8/src/ |
| zone.cc | 47 // chained together forming a LIFO structure with the newest segment 51 class Segment { 53 void Initialize(Segment* next, size_t size) { 58 Segment* next() const { return next_; } 62 size_t capacity() const { return size_ - sizeof(Segment); } 64 Address start() const { return address(sizeof(Segment)); } 68 // Computes the address of the nth byte in this segment. 71 Segment* next_; 131 // Find a segment with a suitable size to keep around. 132 Segment* keep = nullptr 255 Segment* segment = NewSegment(new_size); local [all...] |
| /frameworks/opt/telephony/src/java/com/android/internal/telephony/cdma/ |
| CdmaInboundSmsHandler.java | 255 * @param pdu The WAP-WDP PDU segment 270 int segment = (0xFF & pdu[index++]); // >= 0 local 272 if (segment >= totalSegments) { 273 loge("WDP bad segment #" + segment + " expecting 0-" + (totalSegments - 1)); 277 // Only the first segment contains sourcePort and destination Port 280 if (segment == 0) { 281 //process WDP segment 298 + ", ID = " + referenceNumber + ", segment# = " + segment + '/' + totalSegments) [all...] |
| /external/skia/src/pathops/ |
| SkOpSegment.cpp | 100 SkOpSegment* other = oPtT->segment(); 178 SkOpSegment* segment = current->first(); local 180 if (!SkPathOpsBounds::Intersects(segment->bounds(), lineBounds)) { 183 if (newPt == segment->fPts[0]) { 186 if (newPt == segment->fPts[SkPathOpsVerbToPoints(segment->fVerb)]) { 189 if (oldPt == segment->fPts[0]) { 192 if (oldPt == segment->fPts[SkPathOpsVerbToPoints(segment->fVerb)]) { 195 if (endPtT.contains(segment)) { 1244 SkOpSegment* segment = priorPtT->span()->segment(); local [all...] |
| SkPathOpsWinding.cpp | 88 SkOpSegment* segment = span->segment(); local 89 fSlope = segment->dSlopeAtT(fT); 90 fPt = segment->ptAtT(fT); 134 if (base.fSpan->segment() == this && approximately_equal(base.fT, t)) { 149 if (base.fSpan->segment() == this) { 158 if (fVerb == SkPath::kCubic_Verb && base.fSpan->segment() == this 264 gDebugRayDirName[static_cast<int>(dir)], hitBase.fSpan->segment()->debugID(), 269 SkOpSegment* hitSegment = span ? span->segment() : nullptr; 292 SkOpSegment* hitSegment = span->segment(); [all...] |
| SkIntersectionHelper.h | 59 SkOpSegment* segment() const { function in class:SkIntersectionHelper
|
| /cts/tests/tests/content/src/android/content/cts/ |
| MockContentProvider.java | 134 String segment; local 146 segment = uri.getPathSegments().get(1); 147 count = db.delete("TestTable1", "_id=" + segment + 155 segment = uri.getPathSegments().get(1); 156 count = db.delete("TestTable2", "_id=" + segment + 302 String segment; local 311 segment = uri.getPathSegments().get(1); 312 count = db.update("TestTable1", values, "_id=" + segment + 322 segment = uri.getPathSegments().get(1); 323 count = db.update("TestTable2", values, "_id=" + segment [all...] |
| /external/elfutils/libdwfl/ |
| dwfl_segment_report_module.c | 45 This more than covers the phdrs and note segment in the average 64-bit 61 /* Return user segment index closest to ADDR but not above it. 64 addr_segndx (Dwfl *dwfl, size_t segment, GElf_Addr addr, bool next) 69 if (dwfl->lookup_segndx[segment] >= 0) 70 ndx = dwfl->lookup_segndx[segment]; 71 if (++segment >= dwfl->lookup_elts - 1) 74 while (dwfl->lookup_addr[segment] < addr); 78 while (dwfl->lookup_segndx[segment] < 0) 79 if (++segment >= dwfl->lookup_elts - 1) 81 ndx = dwfl->lookup_segndx[segment]; 247 size_t segment = ndx; local [all...] |
| /external/eigen/test/ |
| ref.cpp | 116 RefDynMat rv2 = v1.segment(i,bsize); 117 VERIFY_IS_EQUAL(rv2, v1.segment(i,bsize)); 119 v2.segment(i,bsize).setOnes(); 122 v2.segment(i,bsize).setRandom(); 123 rv2 = v2.segment(i,bsize); 126 ConstRefDynMat rm3 = v1.segment(i,bsize); 127 v1.segment(i,bsize) *= 2; 128 v2.segment(i,bsize) *= 2; 129 VERIFY_IS_EQUAL(rm3, v2.segment(i,bsize));
|
| /external/boringssl/src/crypto/perlasm/ |
| x86masm.pl | 11 $segment=""; 89 .text\$ SEGMENT PAGE 'CODE' 91 .text\$ SEGMENT ALIGN(64) 'CODE' 95 $segment = ".text\$"; 133 push(@out,"$segment ENDS\n"); 137 .bss SEGMENT 'BSS' 183 .CRT\$XCU SEGMENT DWORD PUBLIC 'DATA' 191 { push(@out,"$segment\tENDS\n_DATA\tSEGMENT\n"); $segment="_DATA"; }
|
| /external/sonivox/jet_tools/JetCreator/ |
| JetAudition.py | 212 for segment in self.jet_file.GetSegments():
213 info = MidiSegInfo(segment)
214 index = self.segList.InsertStringItem(sys.maxint, StrNoneChk(segment.segname))
228 """ Sets current segment name based on what's clicked """
234 """ Sets command to cancel the currently playing segment and queues another """
252 """ Sets a command to cancel the currently playing segment """
258 """ Queues a segment via the button """
263 segment = self.jet_file.GetSegment(self.currentSegmentName)
264 self.QueueOneSegment(segment, segNum)
267 """ Queues a segment """
[all...] |
| /external/mesa3d/src/gallium/state_trackers/vega/ |
| path.c | 394 VGubyte segment = ((VGubyte*)(p->segments->data))[i]; local 395 VGint command = SEGMENT_COMMAND(segment); 396 VGboolean relative = SEGMENT_ABS_REL(segment); 606 assert(!"Unknown segment!"); 689 p.segment = ((VGubyte*)(path->segments->data))[i]; 690 command = SEGMENT_COMMAND(p.segment); 691 relative = SEGMENT_ABS_REL(p.segment); 720 p.segment = VG_LINE_TO; 731 p.segment = VG_LINE_TO; 803 assert(!"Unknown segment!"); 822 VGubyte segment = SEGMENT_COMMAND(pd->segment);\/* abs bit is 0 *\/ local 950 VGubyte segment; member in struct:path_iter_data 1171 VGubyte segment; local 1274 VGubyte segment = ((VGubyte*)(p->segments->data))[i]; local 1632 VGubyte segment = VG_MOVE_TO_ABS; local 1642 VGubyte segment = VG_LINE_TO_ABS; local 1655 VGubyte segment = VG_CUBIC_TO_ABS; local 1735 VGubyte segment; local 1811 VGubyte segment; local [all...] |
| /external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/ |
| util.rb | 18 version_string.split( '.' ).map! do | segment | 19 segment.to_i
|
| /external/chromium-trace/catapult/third_party/graphy/graphy/ |
| pie_chart_test.py | 34 self.assertRaises(DeprecationWarning, pie_chart.Segment, 1, 38 s = pie_chart.Segment(1, 'label', '0000FF') 52 self.assertRaises(AssertionError, pie_chart.Segment, -5, 'Dummy', '0000ff') 53 segment = chart.AddSegment(10, label='Dummy', color='0000ff') 54 self.assertRaises(AssertionError, segment._SetSize, -5)
|
| /toolchain/binutils/binutils-2.25/gas/config/ |
| tc-mips.h | 51 #define md_relax_frag(segment, fragp, stretch) \ 52 mips_relax_frag(segment, fragp, stretch)
|
| /toolchain/binutils/binutils-2.25/gas/testsuite/gas/sh/sh64/ |
| pt32-1.d | 4 #name: Inter-segment PT, 32-bit.
|
| pt32-noexp-2.d | 4 #name: Inter-segment PT, 32-bit with -no-expand.
|
| pt64-32-2.d | 4 #name: Inter-segment PT, 64-bit with -expand-pt32.
|
| pt64-noexp-2.d | 4 #name: Inter-segment PT, 64-bit with -no-expand.
|
| /toolchain/binutils/binutils-2.25/ld/testsuite/ld-elf/ |
| flags1.d | 10 # because the two sections are not merged into one segment. 21 Segment Sections...
|
| /development/ndk/platforms/android-9/arch-x86/include/asm/ |
| desc_defs.h | 44 u16 segment; member in struct:gate_struct
|
| /external/llvm/test/MC/PowerPC/ |
| ppc64-relocs-01.s | 33 # 1. A R_PPC64_ADDR64 against the .text segment plus addend (the function
|
| /frameworks/support/v4/java/android/support/v4/content/ |
| ContextCompat.java | 328 for (String segment : segments) { 330 cur = new File(segment); 331 } else if (segment != null) { 332 cur = new File(cur, segment);
|
| /packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/ |
| ContactLookupKeyTest.java | 231 LookupKeySegment segment = list.get(i); local 232 assertEquals(accountHashCodes[i], segment.accountHashCode); 233 assertEquals(types[i], segment.lookupType); 234 assertEquals(keys[i], segment.key);
|
| /prebuilts/ndk/current/platforms/android-12/arch-x86/usr/include/asm/ |
| desc_defs.h | 44 u16 segment; member in struct:gate_struct
|
| /prebuilts/ndk/current/platforms/android-13/arch-x86/usr/include/asm/ |
| desc_defs.h | 44 u16 segment; member in struct:gate_struct
|