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

/frameworks/compile/mclinker/lib/LD/
H A DELFSegmentFactory.cpp21 iterator segment, segEnd = end(); local
22 for (segment = begin(); segment != segEnd; ++segment) {
23 if ((*segment)->type() == pType &&
24 ((*segment)->flag() & pFlagSet) == pFlagSet &&
25 ((*segment)->flag() & pFlagClear) == 0x0) {
26 return segment;
36 const_iterator segment, segEnd = end(); local
37 for (segment
49 iterator segment, segEnd = end(); local
65 const_iterator segment, segEnd = end(); local
[all...]
/frameworks/av/services/audiopolicy/common/managerdefinitions/src/
H A DGains.cpp207 int segment = 0; local
211 segment = 0;
213 segment = 1;
215 segment = 2;
221 float decibels = curve[segment].mDBAttenuation +
222 ((float)(volIdx - curve[segment].mIndex)) *
223 ( (curve[segment+1].mDBAttenuation -
224 curve[segment].mDBAttenuation) /
225 ((float)(curve[segment+1].mIndex -
226 curve[segment]
[all...]
/frameworks/rs/api/
H A DScanner.cpp45 void Scanner::readUpTo(char delimiter, string* segment) { argument
51 segment->push_back((char)c);
58 void Scanner::readRestOfLine(string* segment) { argument
64 segment->push_back((char)c);
/frameworks/av/media/libstagefright/codecs/g711/dec/
H A DSoftG711.cpp319 int32_t segment = exponent + 1; local
322 int32_t step = 4 << segment;
/frameworks/av/services/camera/libcameraservice/api1/client2/
H A DJpegProcessor.cpp315 * Following it, "segment" sections begin with other markers, followed by a
316 * 2-byte length (in network byte order), then the segment data.
319 * the next segment. This is necessary because the data inside segments are
326 * image data to be interpreted as a segment. The only exception to this is at
338 typedef struct segment { struct in namespace:android::camera2
393 // Read JFIF segment markers, skip over segment data
396 segment_t *segment = (segment_t*)(jpegBuffer + size); local
397 uint8_t type = checkJpegMarker(segment->marker);
406 size_t length = ntohs(segment
[all...]
/frameworks/base/libs/hwui/
H A DPatch.cpp111 const float segment = stepY - previousStepY; local
114 y2 = y1 + floorf(segment * stretchY + 0.5f);
116 y2 = y1 + segment * rescaleY;
119 float vOffset = y1 == y2 ? 0.0f : 0.5 - (0.5 * segment / (y2 - y1));
159 const float segment = stepX - previousStepX; local
162 x2 = x1 + floorf(segment * stretchX + 0.5f);
164 x2 = x1 + segment * rescaleX;
167 float uOffset = x1 == x2 ? 0.0f : 0.5 - (0.5 * segment / (x2 - x1));
/frameworks/av/media/libstagefright/webm/
H A DWebmWriter.cpp471 sp<WebmElement> ebml, segment, info, seekHead, tracks, cues; local
473 segment = new WebmMaster(kMkvSegment);
495 sp<WebmElement> elems[] = { ebml, segment, seekHead, info, tracks, cues };
/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
245 * Starts playing the JET segment queue.
254 * Pauses the playback of the JET segment queue.
263 * Queues the specified segment i
508 onJetEvent(JetPlayer player, short segment, byte track, byte channel, byte controller, byte value) argument
[all...]
/frameworks/base/core/java/android/net/
H A DUri.java316 * Gets the decoded last segment in the path.
318 * @return the decoded last segment or null if the path is empty
972 * Wrapper for path segment array.
1008 void add(String segment) { argument
1017 segments[size++] = segment;
1423 * Encodes the given segment and appends it to the path.
1430 * Appends the given segment to the path.
2150 // This check keeps us from adding a segment if the path starts
2151 // '/' and an empty segment for "//".
2160 // Add in the final path segment
[all...]
/frameworks/data-binding/prebuilds/1.0-rc0/
H A Ddatabinding-studio-bundle.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/databinding/ android/databinding/Bindable.class Bindable. ...

Completed in 335 milliseconds