Searched defs:segment (Results 1 - 7 of 7) sorted by relevance

/frameworks/compile/mclinker/lib/LD/
H A DELFSegmentFactory.cpp25 /// produce - produce an empty ELF segment information.
26 /// this function will create an ELF segment
30 ELFSegment* segment = allocate(); local
31 new (segment) ELFSegment(pType, pFlag);
32 return segment;
38 iterator segment, segEnd = end(); local
39 for (segment = begin(); segment != segEnd; ++segment) {
40 if ((*segment)
54 const_iterator segment, segEnd = end(); local
[all...]
/frameworks/av/media/libstagefright/codecs/g711/dec/
H A DSoftG711.cpp286 int32_t segment = exponent + 1; local
289 int32_t step = 4 << segment;
/frameworks/av/services/camera/libcameraservice/camera2/
H A DJpegProcessor.cpp260 * Following it, "segment" sections begin with other markers, followed by a
261 * 2-byte length (in network byte order), then the segment data.
264 * the next segment. This is necessary because the data inside segments are
271 * image data to be interpreted as a segment. The only exception to this is at
283 typedef struct segment { struct in namespace:android::camera2
338 // Read JFIF segment markers, skip over segment data
341 segment_t *segment = (segment_t*)(jpegBuffer + size); local
342 uint8_t type = checkJpegMarker(segment->marker);
351 size_t length = ntohs(segment
[all...]
/frameworks/base/libs/hwui/
H A DPatch.cpp163 const float segment = stepY - previousStepY; local
166 y2 = y1 + floorf(segment * stretchY + 0.5f);
168 y2 = y1 + segment * rescaleY;
171 float vOffset = y1 == y2 ? 0.0f : 0.5 - (0.5 * segment / (y2 - y1));
231 const float segment = stepX - previousStepX; local
234 x2 = x1 + floorf(segment * stretchX + 0.5f);
236 x2 = x1 + segment * rescaleX;
239 float uOffset = x1 == x2 ? 0.0f : 0.5 - (0.5 * segment / (x2 - x1));
/frameworks/base/media/java/android/media/
H A DJetPlayer.java39 * segment can be dynamically affected by two mechanisms:
41 * <li>tracks in a segment can be muted or unmuted at any moment, individually or through
43 * <li>parts of tracks in a segment can be played at predefined points in the segment, in order
44 * to maintain synchronization with the other tracks in the segment. This is achieved through
87 private static final int JET_EVENT_SEG_MASK = 0xff000000; // mask for segment ID
91 private static final int JET_EVENT_SEG_SHIFT = 24; // shift to get segment ID to bit 0
243 * Starts playing the JET segment queue.
252 * Pauses the playback of the JET segment queue.
261 * Queues the specified segment i
506 onJetEvent(JetPlayer player, short segment, byte track, byte channel, byte controller, byte value) argument
[all...]
/frameworks/base/core/java/android/net/
H A DUri.java313 * Gets the decoded last segment in the path.
315 * @return the decoded last segment or null if the path is empty
964 * Wrapper for path segment array.
1000 void add(String segment) { argument
1009 segments[size++] = segment;
1415 * Encodes the given segment and appends it to the path.
1422 * Appends the given segment to the path.
2142 // This check keeps us from adding a segment if the path starts
2143 // '/' and an empty segment for "//".
2152 // Add in the final path segment
[all...]
/frameworks/compile/mclinker/lib/Target/
H A DGNULDBackend.cpp290 // ----- segment symbols ----- //
471 // ----- segment symbols ----- //
1430 // create new PT_LOAD segment
1434 // check if this segment needs padding
1485 // update segment info
1488 ELFSegment& segment = *seg; local
1491 if (llvm::ELF::PT_PHDR == segment.type()) {
1501 segment.setOffset(offset);
1502 segment.setVaddr(segmentStartAddr(pOutput, pInfo) + offset);
1503 segment
[all...]

Completed in 1397 milliseconds