Searched refs:position (Results 26 - 50 of 369) sorted by relevance

1234567891011>>

/haiku-fatelf/headers/private/storage/
H A DFileIO.h23 virtual ssize_t ReadAt(off_t position, void *buffer,
25 virtual ssize_t WriteAt(off_t position, const void *buffer,
28 virtual off_t Seek(off_t position, uint32 seekMode);
38 off_t _Seek(off_t position, uint32 seekMode) const;
/haiku-fatelf/src/add-ons/media/plugins/avi_reader/libOpenDML/
H A DStandardIndex.h39 bool IsValidChunk(off_t position, uint32 size);
H A DFallbackIndex.cpp65 off_t position; local
80 position = fParser->MovieListStart();
84 if ((int32)8 != fSource->ReadAt(position, &aChunk, 8)) {
89 position += 8;
146 AddIndex(stream_index, position, size, frame_no, pts, keyframe);
148 position += aChunk.size;
150 end_of_movi = position >= fParser->MovieListSize();
H A DIndex.h52 IndexEntry() {frame_no = 0;position=0;size=0;pts=0;keyframe=false;};
55 off_t position; // The offset in the stream where the frame is member in class:IndexEntry
83 void AddIndex(int stream_index, off_t position, uint32 size, uint64 frame, bigtime_t pts, bool keyframe);
/haiku-fatelf/src/add-ons/screen_savers/flurry/
H A DSpark.h39 float position[3]; member in struct:Spark
H A DSpark.cpp47 s->position[i] = RandFlt(-100.0, 100.0);
63 z = s->position[2];
64 sx = s->position[0] * info->sys_glWidth / z + info->sys_glWidth * 0.5f;
65 sy = s->position[1] * info->sys_glWidth / z + info->sys_glHeight * 0.5f;
245 old[i] = s->position[i];
262 s->position[0] = fieldRange * cf *
264 s->position[1] = fieldRange * cf *
266 s->position[2] = fieldRange *
272 tmpX1 = s->position[0] * cr - s->position[
[all...]
/haiku-fatelf/src/apps/mediaplayer/interface/
H A DPositionToolTip.h19 void Update(bigtime_t position, bigtime_t duration);
/haiku-fatelf/src/preferences/screen/
H A DRefreshWindow.h21 RefreshWindow(BPoint position, float current, float min, float max);
/haiku-fatelf/src/kits/storage/
H A DOffsetFile.cpp96 OffsetFile::Seek(off_t position, uint32 seekMode) argument
103 if (position >= 0)
104 result = fCurrentPosition = position;
111 if (size + position >= 0)
112 result = fCurrentPosition = size + position;
117 if (fCurrentPosition + position >= 0)
118 result = fCurrentPosition += position;
/haiku-fatelf/src/kits/interface/layouter/
H A DCollapsingLayouter.cpp40 SetElementPosition(int32 element, int32 position) argument
42 fElements[element] = position;
86 int32 position; member in struct:CollapsingLayouter::ElementInfo
93 position(-1),
106 position = other.position;
181 if (fLayouter && elementInfo.position >= 0)
182 fLayouter->SetWeight(elementInfo.position, weight);
226 info->SetElementPosition(i, fElements[i].position);
290 element.position
314 _AddConstraints(int32 position, const Constraint* c) argument
[all...]
/haiku-fatelf/headers/os/support/
H A DDataIO.h52 virtual ssize_t ReadAt(off_t position, void* buffer,
54 virtual ssize_t WriteAt(off_t position, const void* buffer,
57 virtual off_t Seek(off_t position, uint32 seekMode) = 0;
87 virtual ssize_t ReadAt(off_t position, void* buffer,
89 virtual ssize_t WriteAt(off_t position, const void* buffer,
92 virtual off_t Seek(off_t position, uint32 seekMode);
120 virtual ssize_t ReadAt(off_t position, void* buffer,
122 virtual ssize_t WriteAt(off_t position, const void* buffer,
125 virtual off_t Seek(off_t position, uint32 seekMode);
/haiku-fatelf/src/system/kernel/debug/
H A Ddebug.cpp246 insert_chars_into_line(char* buffer, int32& position, int32& length, argument
250 if (position < length) {
251 memmove(buffer + position + charCount, buffer + position,
252 length - position);
256 memcpy(buffer + position, chars, charCount);
257 int32 oldPosition = position;
258 position += charCount;
266 if (position < length)
267 kprintf("\x1b[%" B_PRId32 "D", length - position);
272 insert_char_into_line(char* buffer, int32& position, int32& length, char c) argument
279 remove_char_from_line(char* buffer, int32& position, int32& length) argument
320 TabCompletion(char* buffer, int32 capacity, int32& position, int32& length) argument
453 int32 position = 0; local
[all...]
H A Ddebug_parser.cpp104 int32 position; member in struct:Token
106 void SetTo(const char* string, int32 length, int32 position, int32 type) argument
112 this->position = position;
120 position = 0;
129 parse_exception(const char* message, int32 position) argument
133 kprintf_unfiltered("exception: \"%s\", position: %" B_PRId32 "\n",
134 message, position);
139 sExceptionPosition = position;
176 void SetPosition(int32 position) argument
600 int32 position = token.position; local
1048 int32 position = fTokenizer.CurrentToken().position; local
[all...]
/haiku-fatelf/src/add-ons/kernel/drivers/network/ipro1000/
H A Ddevice.h28 status_t ipro1000_read(void* cookie, off_t position, void *buf, size_t* num_bytes);
29 status_t ipro1000_write(void* cookie, off_t position, const void* buffer, size_t* num_bytes);
/haiku-fatelf/src/apps/cortex/NodeManager/
H A DNodeSyncThread.h68 // 'position' (int64) corresponding (caller-provided) position
74 // 'position' (int64) corresponding (caller-provided) position
88 // position value will be sent, unless the sync operation
92 bigtime_t position,
119 bigtime_t position; member in struct:NodeSyncThread::_sync_op
/haiku-fatelf/src/bin/less/
H A Dforwback.c18 #include "position.h"
70 pos = position(BOTTOM_PLUS_ONE);
92 * starting at position pos in the input file.
143 if (pos != position(BOTTOM_PLUS_ONE) || empty_screen())
148 * (position table) and start a new screen.
194 if (!force && position(TOP) != NULL_POSITION)
203 * Add the position of the next line to the position table.
299 * Add the position of the previous line to the position tabl
[all...]
/haiku-fatelf/src/kits/interface/
H A DWindowStack.cpp55 BWindowStack::AddWindowAt(const BWindow* window, int32 position) argument
58 return AddWindowAt(messenger, position);
63 BWindowStack::AddWindowAt(const BMessenger& window, int32 position) argument
68 fLink->Attach<int32>(position);
100 BWindowStack::RemoveWindowAt(int32 position, BMessenger* window) argument
103 fLink->Attach<int32>(position);
135 BWindowStack::WindowAt(int32 position, BMessenger& messenger) argument
138 fLink->Attach<int32>(position);
/haiku-fatelf/src/apps/haiku3d/
H A DMeshInstance.h21 const Vector3& position, const Quaternion& orientation,
/haiku-fatelf/src/apps/debuganalyzer/gui/chart/
H A DLegendChartAxis.cpp54 float position = (value - fRange.min) * scale - legendSize / 2; local
55 if (position + legendSize > totalSize)
56 position = totalSize - legendSize;
57 if (position < 0)
58 position = 0;
59 return position;
95 // get the first legend position/end
97 float position = _LegendPosition(info->value, info->size.*sizeField, local
100 int32 previousEnd = (int32)ceilf(position + info->size.*sizeField);
104 float position local
307 float position = (info->value - fRange.min) * scale; local
323 float position = _LegendPosition(info->value, info->size.*sizeField, local
[all...]
/haiku-fatelf/src/kits/shared/
H A DShakeTrackingFilter.cpp65 BPoint position; local
66 message->FindPoint("be:view_where", &position);
69 if (!fTargetView->Bounds().Contains(position))
72 fLowPass.Input(position - fLastPosition);
109 fLastPosition = position;
/haiku-fatelf/src/apps/expander/
H A DExpanderSettings.cpp53 // 4 bytes : window position topleft x (default : 0x4842)
54 // 4 bytes : window position topleft y (default : 0x4842)
94 BPoint position; local
108 && read_data(file, position)) {
114 // check if the window position is on screen at all
116 if (screen.Frame().Contains(position))
117 fMessage.ReplacePoint("window_position", position);
151 BPoint position; local
154 if (fMessage.FindPoint("window_position", &position) == B_OK
179 file.Write(&position, sizeo
206 BPoint position; local
[all...]
/haiku-fatelf/src/servers/app/stackandtile/
H A DStacking.cpp54 int32 position; local
55 if (link.Read<int32>(&position) != B_OK)
61 if (position < 0)
62 position = area->WindowList().CountItems() - 1;
64 SATWindow* parent = area->WindowList().ItemAt(position);
111 int32 position; local
112 if (link.Read<int32>(&position) != B_OK)
118 SATWindow* removeWindow = area->WindowList().ItemAt(position);
148 int32 position; local
149 if (link.Read<int32>(&position) !
[all...]
/haiku-fatelf/src/add-ons/kernel/drivers/disk/norflash/
H A Dnorflash.cpp137 nor_read(void *_cookie, off_t position, void *data, size_t *numbytes) argument
140 TRACE("read(%Ld,%lu)\n", position, *numbytes);
142 if (position + *numbytes > info->totalsize)
143 *numbytes = info->totalsize - (position + *numbytes);
145 memcpy(data, info->mapped + position, *numbytes);
152 nor_write(void *_cookie, off_t position, const void *data, size_t *numbytes) argument
154 TRACE("write(%Ld,%lu)\n", position, *numbytes);
/haiku-fatelf/src/tests/servers/app/event_mask/
H A DEventMask.cpp94 BString position; local
96 position << (int32)fPosition.x;
98 position << "-";
100 position << " : ";
103 position << (int32)fPosition.y;
105 position << "-";
107 DrawString(position.String(), BPoint(6, 28));
/haiku-fatelf/src/add-ons/kernel/network/ppp/pppoe/
H A Dpppoe.cpp45 uint32 position = sizeof(uint32); local
52 memcpy(data + position, acName->data, acName->length);
53 position += acName->length;
56 data[position++] = 0;
62 if(position + tag->length >= PPPoE_QUERY_REPORT_SIZE)
65 memcpy(data + position, tag->data, tag->length);
66 position += tag->length;
67 data[position++] = 0;
71 memcpy(data, &position, sizeof(uint32));
231 int32 position local
[all...]

Completed in 279 milliseconds

1234567891011>>