Searched refs:st (Results 1 - 25 of 300) sorted by path

1234567891011>>

/haiku/headers/build/host/darwin/sys/
H A Dstat.h33 int fstatat(int fd, const char *path, struct stat *st, int flag);
/haiku/headers/build/os/storage/
H A DStatable.h22 virtual status_t GetStat(struct stat *st) const = 0;
61 virtual status_t set_stat(struct stat &st, uint32 what) = 0;
/haiku/headers/libs/agg/
H A Dagg_math.h230 template<class Storage> double calc_polygon_area(const Storage& st)
234 double x = st[0].x;
235 double y = st[0].y;
239 for(i = 1; i < st.size(); i++)
241 const typename Storage::value_type& v = st[i];
H A Dagg_rasterizer_compound_aa.h218 const style_info& st = m_styles[m_ast[style_idx]]; local
220 unsigned num_cells = st.num_cells;
221 cell_info* cell = &m_cells[st.start_cell];
522 style_info& st = m_styles[m_ast[i]]; local
523 unsigned v = st.start_cell;
524 st.start_cell = start_cell;
/haiku/headers/os/add-ons/graphics/
H A DAccelerant.h325 sync_token* st, engine_token** et);
326 typedef status_t (*release_engine)(engine_token* et, sync_token* st);
328 typedef status_t (*get_sync_token)(engine_token* et, sync_token* st);
329 typedef status_t (*sync_to_token)(sync_token* st);
/haiku/headers/os/storage/
H A DDirectory.h47 status_t GetStatFor(const char *path, struct stat *st) const;
69 status_t _GetStatFor(const char *path, struct stat *st) const;
70 status_t _GetStatFor(const char *path, struct stat_beos *st) const;
H A DNode.h45 virtual status_t GetStat(struct stat* st) const;
H A DStatable.h72 virtual status_t set_stat(struct stat &st, uint32 what) = 0;
/haiku/headers/posix/sys/
H A Dstat.h115 extern int stat(const char *path, struct stat *st);
116 extern int fstat(int fd, struct stat *st);
117 extern int lstat(const char *path, struct stat *st);
118 extern int fstatat(int fd, const char *path, struct stat *st, int flag);
/haiku/headers/private/fs_shell/
H A Dfssh_stat.h115 extern int fssh_stat(const char *path, struct fssh_stat *st);
116 extern int fssh_fstat(int fd, struct fssh_stat *st);
117 extern int fssh_lstat(const char *path, struct fssh_stat *st);
/haiku/src/add-ons/accelerants/3dfx/
H A Daccelerant.h95 status_t AcquireEngine(uint32 capabilities, uint32 max_wait, sync_token* st,
97 status_t ReleaseEngine(engine_token* et, sync_token* st);
99 status_t GetSyncToken(engine_token* et, sync_token* st);
100 status_t SyncToToken(sync_token* st);
H A Dengine.cpp24 sync_token* st, engine_token** et)
33 if (st)
34 SyncToToken(st);
43 ReleaseEngine(engine_token* et, sync_token* st) argument
46 if (st)
47 GetSyncToken(et, st);
62 GetSyncToken(engine_token* et, sync_token* st) argument
64 st->engine_id = et->engine_id;
65 st->counter = 0;
71 SyncToToken(sync_token* st) argument
23 AcquireEngine(uint32 capabilities, uint32 max_wait, sync_token* st, engine_token** et) argument
[all...]
/haiku/src/add-ons/accelerants/ati/
H A Daccelerant.h134 status_t AcquireEngine(uint32 capabilities, uint32 max_wait, sync_token* st,
136 status_t ReleaseEngine(engine_token* et, sync_token* st);
138 status_t GetSyncToken(engine_token* et, sync_token* st);
139 status_t SyncToToken(sync_token* st);
H A Dengine.cpp24 sync_token* st, engine_token** et)
33 if (st)
34 SyncToToken(st);
43 ReleaseEngine(engine_token* et, sync_token* st) argument
46 if (st)
47 GetSyncToken(et, st);
62 GetSyncToken(engine_token* et, sync_token* st) argument
64 st->engine_id = et->engine_id;
65 st->counter = 0;
71 SyncToToken(sync_token* st) argument
23 AcquireEngine(uint32 capabilities, uint32 max_wait, sync_token* st, engine_token** et) argument
[all...]
/haiku/src/add-ons/accelerants/et6x00/
H A DEngineManagment.c19 sync_token *st,
25 if (st) SYNC_TO_TOKEN(st);
32 status_t RELEASE_ENGINE(engine_token *et, sync_token *st) { argument
34 if (st) {
35 st->engine_id = et->engine_id;
36 st->counter = si->engine.count;
50 status_t GET_SYNC_TOKEN(engine_token *et, sync_token *st) { argument
51 st->engine_id = et->engine_id;
52 st
17 ACQUIRE_ENGINE(uint32 capabilities, uint32 max_wait, sync_token *st, engine_token **et) argument
56 SYNC_TO_TOKEN(sync_token *st) argument
[all...]
H A Dgeneric.h29 status_t ACQUIRE_ENGINE(uint32 capabilities, uint32 max_wait, sync_token *st, engine_token **et);
30 status_t RELEASE_ENGINE(engine_token *et, sync_token *st);
32 status_t GET_SYNC_TOKEN(engine_token *et, sync_token *st);
33 status_t SYNC_TO_TOKEN(sync_token *st);
/haiku/src/add-ons/accelerants/intel_810/
H A Daccelerant.h84 status_t AcquireEngine(uint32 capabilities, uint32 max_wait, sync_token* st,
86 status_t ReleaseEngine(engine_token* et, sync_token* st);
88 status_t GetSyncToken(engine_token* et, sync_token* st);
89 status_t SyncToToken(sync_token* st);
/haiku/src/add-ons/accelerants/matrox/
H A DEngineManagment.c23 status_t ACQUIRE_ENGINE(uint32 capabilities, uint32 max_wait, sync_token *st, engine_token **et) argument
28 if (st) SYNC_TO_TOKEN(st);
35 status_t RELEASE_ENGINE(engine_token *et, sync_token *st) argument
38 if (st) GET_SYNC_TOKEN(et,st);
51 status_t GET_SYNC_TOKEN(engine_token *et, sync_token *st) argument
54 st->engine_id = et->engine_id;
55 st->counter = si->engine.count;
59 status_t SYNC_TO_TOKEN(sync_token *st) argument
[all...]
H A Dbe_driver_proto.h40 status_t ACQUIRE_ENGINE(uint32 capabilities, uint32 max_wait, sync_token *st, engine_token **et);
41 status_t RELEASE_ENGINE(engine_token *et, sync_token *st);
43 status_t GET_SYNC_TOKEN(engine_token *et, sync_token *st);
44 status_t SYNC_TO_TOKEN(sync_token *st);
/haiku/src/add-ons/accelerants/neomagic/
H A DEngineManagment.c23 status_t ACQUIRE_ENGINE(uint32 capabilities, uint32 max_wait, sync_token *st, engine_token **et) argument
28 if (st) SYNC_TO_TOKEN(st);
35 status_t RELEASE_ENGINE(engine_token *et, sync_token *st) argument
38 if (st) GET_SYNC_TOKEN(et,st);
51 status_t GET_SYNC_TOKEN(engine_token *et, sync_token *st) argument
54 st->engine_id = et->engine_id;
55 st->counter = si->engine.count;
59 status_t SYNC_TO_TOKEN(sync_token *st) argument
[all...]
H A Dbe_driver_proto.h40 status_t ACQUIRE_ENGINE(uint32 capabilities, uint32 max_wait, sync_token *st, engine_token **et);
41 status_t RELEASE_ENGINE(engine_token *et, sync_token *st);
43 status_t GET_SYNC_TOKEN(engine_token *et, sync_token *st);
44 status_t SYNC_TO_TOKEN(sync_token *st);
/haiku/src/add-ons/accelerants/nvidia/
H A DEngineManagment.c30 status_t ACQUIRE_ENGINE_PIO(uint32 capabilities, uint32 max_wait, sync_token *st, engine_token **et) argument
35 if (st) SYNC_TO_TOKEN(st);
45 status_t ACQUIRE_ENGINE_DMA(uint32 capabilities, uint32 max_wait, sync_token *st, engine_token **et) argument
50 if (st) SYNC_TO_TOKEN(st);
60 status_t RELEASE_ENGINE(engine_token *et, sync_token *st) argument
63 if (st) GET_SYNC_TOKEN(et,st);
82 status_t GET_SYNC_TOKEN(engine_token *et, sync_token *st) argument
90 SYNC_TO_TOKEN(sync_token *st) argument
[all...]
H A Dbe_driver_proto.h46 status_t ACQUIRE_ENGINE_PIO(uint32 capabilities, uint32 max_wait, sync_token *st, engine_token **et);
47 status_t ACQUIRE_ENGINE_DMA(uint32 capabilities, uint32 max_wait, sync_token *st, engine_token **et);
48 status_t RELEASE_ENGINE(engine_token *et, sync_token *st);
50 status_t GET_SYNC_TOKEN(engine_token *et, sync_token *st);
51 status_t SYNC_TO_TOKEN(sync_token *st);
/haiku/src/add-ons/accelerants/radeon/
H A DEngineManagment.c97 // st - when engine has been acquired, wait for this sync token
100 sync_token *st, engine_token **et )
112 if (st)
113 SYNC_TO_TOKEN( st );
121 // st - (out) sync token to be filled out
122 status_t RELEASE_ENGINE( engine_token *et, sync_token *st )
129 if (st) {
132 st->engine_id = et->engine_id;
133 st->counter = si->engine.count;
153 // st
99 ACQUIRE_ENGINE( uint32 capabilities, uint32 max_wait, sync_token *st, engine_token **et ) argument
[all...]
H A Dgeneric.h42 status_t ACQUIRE_ENGINE(uint32 capabilities, uint32 max_wait, sync_token *st, engine_token **et);
43 status_t RELEASE_ENGINE(engine_token *et, sync_token *st);
45 status_t GET_SYNC_TOKEN(engine_token *et, sync_token *st);
46 status_t SYNC_TO_TOKEN(sync_token *st);

Completed in 133 milliseconds

1234567891011>>