/prebuilts/ndk/8/platforms/android-9/arch-x86/usr/include/linux/ |
fd.h | 22 track, member in struct:floppy_struct 58 unsigned int device,head,track; member in struct:format_descr 149 short track; member in struct:floppy_drive_struct 189 unsigned char track[4]; member in struct:floppy_fdc_state 245 int track; member in struct:floppy_raw_cmd
|
/frameworks/av/media/libstagefright/ |
MPEG4Writer.cpp | 51 class MPEG4Writer::Track { 53 Track(MPEG4Writer *owner, const sp<MediaSource> &source, size_t trackId); 55 ~Track(); 263 // Update the audio track's drift information. 278 // Track authoring progress status 284 // Determine the track time scale 285 // If it is an audio track, try to use the sampling rate as 330 Track(const Track &); 331 Track &operator=(const Track &) 468 Track *track = new Track(this, source, 1 + mTracks.size()); local 1594 Track *track = NULL; local 1797 Track *track = static_cast<Track *>(me); local [all...] |
/external/quake/quake/src/QW/client/ |
cd_audio.c | 154 char track; member in struct:audioTrackInfo_s 198 track_info track[MAXIMUM_TRACKS]; member in struct:__anon14101 291 static int CDAudio_GetAudioTrackInfo(byte track, int *start) 309 readInfo->audioTrackInfo.track = track; 372 cd.track[n].isData = CDAudio_GetAudioTrackInfo (n, &cd.track[n].start); 375 cd.track[n-1].length = RedBookToSector(cd.track[n].start) - RedBookToSector(cd.track[n-1].start) [all...] |
/external/quake/quake/src/WinQuake/ |
cd_audio.cpp | 176 char track;
member in struct:audioTrackInfo_s 220 track_info track[MAXIMUM_TRACKS];
member in struct:__anon14390 306 static int CDAudio_GetAudioTrackInfo(byte track, int *start)
323 readInfo->audioTrackInfo.track = track;
380 cd.track[n].isData = CDAudio_GetAudioTrackInfo (n, &cd.track[n].start);
383 cd.track[n-1].length = RedBookToSector(cd.track[n].start) - RedBookToSector(cd.track[n-1].start); [all...] |
/external/qemu/distrib/sdl-1.2.15/src/cdrom/macosx/ |
CDPlayer.c | 41 #define kTrackArrayString "Track Array" 42 #define kFirstTrackInSessionString "First Track" 43 #define kLastTrackInSessionString "Last Track" 242 /* Iterate over all sessions, collecting the track data */ 279 theCD->track[idx].id = value; 282 theCD->track[idx].offset = value; 284 theCD->track[idx].type = (isDataTrack == kCFBooleanTrue) ? SDL_DATA_TRACK : SDL_AUDIO_TRACK; 286 /* Since the track lengths are not stored in .TOC.plist we compute them. */ 288 theCD->track[idx-1].length = theCD->track[idx].offset - theCD->track[idx-1].offset [all...] |
/external/jmonkeyengine/engine/src/ogre/com/jme3/scene/plugins/ogre/ |
SkeletonLoader.java | 67 private BoneTrack track; field in class:SkeletonLoader 99 assert elementStack.peek().equals("track"); 100 } else if (qName.equals("track")) { 105 track = new BoneTrack(index); 170 } else if (qName.equals("track")) { 171 if (track != null) { // if track has keyframes 172 tracks.add(track); 173 track = null; 208 track.setKeyframes(timesArray, transArray, rotArray, scalesArray) [all...] |
/external/chromium-trace/trace-viewer/src/tracks/ |
slice_group_track.js | 14 * A track that displays a SliceGroup. 26 this.classList.add('slice-group-track'); 58 var track = new tracing.tracks.SliceTrack(); 59 track.slices = slices; 60 track.decorateHit = this.decorateHit_; 61 this.addTrack_(track); 62 return track;
|
/external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/constraints/ |
Constraint.java | 8 import com.jme3.animation.Track;
99 * @return the bone track for the bone that is being affected by the constraint
104 for (Track track : animation.getTracks()) {
105 if (((BoneTrack) track).getTargetBoneIndex() == boneIndex) {
106 return new BlenderTrack(((BoneTrack) track));
109 throw new IllegalStateException("Cannot find track for: " + owner);
|
/external/mp4parser/isoparser/src/main/java/com/coremedia/iso/boxes/ |
TrackHeaderBox.java | 27 * This box specifies the characteristics of a single track. Exactly one Track Header Box is contained in a track.<br> 28 * In the absence of an edit list, the presentation of a track starts at the beginning of the overall presentation. An 29 * empty edit is used to offset the start time of a track. <br> 30 * The default value of the track header flags for media tracks is 7 (track_enabled, track_in_movie, 32 * tracks shall be treated as if both flags were set on all tracks. Hint tracks should have the track header flags set
|
/external/qemu/distrib/sdl-1.2.15/docs/html/ |
guidecdromexamples.html | 152 printf("Currently playing track %d, %d:%2.2d\n", 153 cdrom->track[cdrom->cur_track].id, m, s); 175 FRAMES_TO_MSF(cdrom->track[i].length, &m, &s, &f); 179 cdrom->track[i].id, m, s); 200 // Play last track: 205 // Play first and second track and 10 seconds of third track:
|
/external/qemu/distrib/sdl-1.2.15/test/ |
testcdrom.c | 45 printf("Currently playing track %d, %d:%2.2d\n", 46 cdrom->track[cdrom->cur_track].id, m, s); 59 FRAMES_TO_MSF(cdrom->track[i].length, &m, &s, &f); 62 switch(cdrom->track[i].type) 74 printf("\tTrack (index %d) %d: %d:%2.2d / %d [%s track]\n", i, 75 cdrom->track[i].id, m, s, cdrom->track[i].length, trtype);
|
/frameworks/av/include/media/ |
AudioTrack.h | 127 * Once created, the track needs to be started before it can be used. 129 * With this constructor, the track is configured for streaming mode. 135 * streamType: Select the type of audio stream this track is attached to 137 * sampleRate: Track sampling rate in Hz. 141 * frameCount: Minimum size of track PCM buffer in frames. This defines the 143 * latency of the track. The actual size selected by the AudioTrack could be 151 * frames have been consumed from track input buffer. 168 /* Creates an audio track and registers it with AudioFlinger. 169 * With this constructor, the track is configured for static buffer mode. 225 /* Returns this track's estimated latency in milliseconds [all...] |
mediarecorder.h | 123 // Track related event types 132 * When the error or info type is track specific, the what has 135 * the right-most 4-bit is meant for track id. 138 * | track id | reserved | error or info type | 145 // Track related error type 162 // All track related informtional events start here 175 // track data is interleaved.
|
/frameworks/av/services/audioflinger/ |
TrackBase.h | 67 // ExtendedAudioBufferProvider interface is only needed for Track, 79 // Return a pointer to the start of a contiguous slice of the track buffer. 81 // monotonically increasing frame units relative to the track epoch. 111 // true for Track and TimedTrack, false for RecordTrack, 112 // this could be a track type if needed later 118 void* mBuffer; // start of track buffer, typically in shared memory 134 const size_t mFrameCount;// size of track buffer given at createTrack() or
|
Tracks.cpp | 99 // ALOGD("Creating track with %d buffers @ %d bytes", bufferCount, bufferSize); 193 // This implementation of releaseBuffer() is used by Track and RecordTrack, but not TimedTrack 238 // Check validity of returned pointer in case the track control block would have been corrupted. 259 AudioFlinger::TrackHandle::TrackHandle(const sp<AudioFlinger::PlaybackThread::Track>& track) 261 mTrack(track) 266 // just stop the track on deletion, associated resources 268 // been played. Unless it's not in the active track list, in which 338 // Track constructor must be called with AudioFlinger::mLock and ThreadBase::mLock held 339 AudioFlinger::PlaybackThread::Track::Track [all...] |
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/linux/ |
genhd.h | 109 __u32 d_nsectors; /* # of data sectors per track */ 114 __u16 d_sparespertrack; /* # of spare sectors per track */ 119 __u16 d_trackskew; /* sector 0 skew, per track */ 122 __u32 d_trkseek; /* track-to-track seek, usec */ 172 __le32 d_nsectors; /* # of data sectors per track */ 180 __le32 d_phys_sec; /* # of physical sectors per track */
|
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/linux/ |
genhd.h | 109 __u32 d_nsectors; /* # of data sectors per track */ 114 __u16 d_sparespertrack; /* # of spare sectors per track */ 119 __u16 d_trackskew; /* sector 0 skew, per track */ 122 __u32 d_trkseek; /* track-to-track seek, usec */ 172 __le32 d_nsectors; /* # of data sectors per track */ 180 __le32 d_phys_sec; /* # of physical sectors per track */
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/linux/ |
genhd.h | 109 __u32 d_nsectors; /* # of data sectors per track */ 114 __u16 d_sparespertrack; /* # of spare sectors per track */ 119 __u16 d_trackskew; /* sector 0 skew, per track */ 122 __u32 d_trkseek; /* track-to-track seek, usec */ 172 __le32 d_nsectors; /* # of data sectors per track */ 180 __le32 d_phys_sec; /* # of physical sectors per track */
|
/external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/animations/ |
Ipo.java | 5 import com.jme3.animation.Track;
36 /** Each ipo contains one bone track. */
37 private Track calculatedTrack;
106 * This method calculates the value of the curves as a bone track between
120 * this flag indicates if the track belongs to a spatial or to a
124 * @return bone track for the specified bone
126 public Track calculateTrack(int targetIndex, int startFrame, int stopFrame, int fps, boolean spatialTrack) {
128 // preparing data for track
143 // calculating track data
|
/external/sonivox/jet_tools/JetCreator/ |
JetCreatorhlp.dat | 8 track mutes = Displays the track mute assignments associated with the segment. This is pulled in from the segment attributes.
20 track = Selects the MIDI track (not the channel) for the event.
51 track mutes = Checking a mute box will mute the associated track. You should mute a track if you intent to add a trigger event for that track.
102 tracklist = The tracks in the segment currently playing segment display here. Tracks which are muted are checked. Click on a track to toggle its mute status.
|
/frameworks/av/media/libstagefright/include/ |
AVIExtractor.h | 52 struct Track { 82 Vector<Track> mTracks; 112 ssize_t trackIndex, Track::Kind kind, uint32_t chunkType);
|
/external/chromium/chrome/browser/prefs/ |
default_pref_store.h | 14 // This PrefStore keeps track of default preference values set when a
|
/external/chromium/chrome/common/extensions/docs/static/ |
tutorials.html | 20 Track the usage of your extension.
|
/external/compiler-rt/lib/msan/lit_tests/ |
heap-origin.cc | 10 // RUN: %clangxx_msan -fsanitize-memory-track-origins -m64 -O0 %s -o %t && not %t >%t.out 2>&1 12 // RUN: %clangxx_msan -fsanitize-memory-track-origins -m64 -O1 %s -o %t && not %t >%t.out 2>&1 14 // RUN: %clangxx_msan -fsanitize-memory-track-origins -m64 -O2 %s -o %t && not %t >%t.out 2>&1 16 // RUN: %clangxx_msan -fsanitize-memory-track-origins -m64 -O3 %s -o %t && not %t >%t.out 2>&1
|
stack-origin.cc | 10 // RUN: %clangxx_msan -fsanitize-memory-track-origins -m64 -O0 %s -o %t && not %t >%t.out 2>&1 12 // RUN: %clangxx_msan -fsanitize-memory-track-origins -m64 -O1 %s -o %t && not %t >%t.out 2>&1 14 // RUN: %clangxx_msan -fsanitize-memory-track-origins -m64 -O2 %s -o %t && not %t >%t.out 2>&1 16 // RUN: %clangxx_msan -fsanitize-memory-track-origins -m64 -O3 %s -o %t && not %t >%t.out 2>&1
|