Searched refs:int32 (Results 1 - 25 of 5237) sorted by relevance

1234567891011>>

/haiku/src/add-ons/screen_savers/glife/
H A DGLifeGrid.h20 int32 m_iWidth;
21 int32 m_iHeight;
23 int32 Neighbors(int32, int32);
27 GLifeGrid(int32, int32);
32 bool Occupied(int32, int32);
/haiku/src/add-ons/kernel/file_systems/nfs/
H A Dpmap.h5 const int32 PMAP_PORT = 111; /* portmapper port number */
6 const int32 PMAP_VERSION = 2;
7 const int32 PMAP_PROGRAM = 100000;
9 const int32 PMAP_IPPROTO_TCP = 6; /* protocol number for TCP/IP */
10 const int32 PMAP_IPPROTO_UDP = 17; /* protocol number for UDP/IP */
/haiku/src/kits/interface/textview_support/
H A DInlineInput.h27 int32 Length() const;
28 void SetLength(int32 length);
30 int32 Offset() const;
31 void SetOffset(int32 offset);
33 int32 SelectionLength() const;
34 void SetSelectionLength(int32);
36 int32 SelectionOffset() const;
37 void SetSelectionOffset(int32 offset);
39 bool AddClause(int32, int32);
[all...]
H A DTextGapBuffer.h27 void InsertText(const char* inText, int32 inNumItems,
28 int32 inAtIndex);
29 bool InsertText(BFile* file, int32 fileOffset,
30 int32 amount, int32 atIndex);
31 void RemoveRange(int32 start, int32 end);
33 bool FindChar(char inChar, int32 fromIndex,
34 int32* ioDelta);
38 int32 Lengt
[all...]
H A DLineBuffer.h31 void InsertLine(STELine* inLine, int32 index);
32 void RemoveLines(int32 index, int32 count = 1);
33 void RemoveLineRange(int32 fromOffset,
34 int32 toOffset);
36 int32 OffsetToLine(int32 offset) const;
37 int32 PixelToLine(float pixel) const;
39 void BumpOrigin(float delta, int32 index);
40 void BumpOffset(int32 delt
[all...]
/haiku/headers/private/kernel/
H A DMessagingServiceDefs.h20 int32 lock_counter;
21 int32 size; // set to 0, when area is discarded
24 int32 command_count;
25 int32 first_command;
26 int32 last_command;
30 int32 next_command;
32 int32 size; // == sizeof(messaging_command) + dataSize
37 int32 message_size;
38 int32 target_count;
H A Dconsole.h21 status_t (*get_size)(int32 *_width, int32 *_height);
22 void (*move_cursor)(int32 x, int32 y);
23 void (*put_glyph)(int32 x, int32 y, uint8 glyph, uint8 attr);
24 void (*fill_glyph)(int32 x, int32 y, int32 width, int32 heigh
[all...]
/haiku/src/add-ons/kernel/file_systems/netfs/headers/shared/
H A DPortConnection.h17 status_t Init(Channel* channel, int32 upStreamChannels,
18 int32 downStreamChannels); // server side
29 int32 fUpStreamChannels;
30 int32 fDownStreamChannels;
38 int32 protocolVersion;
39 int32 upStreamChannels;
40 int32 downStreamChannels;
46 int32 error;
47 int32 upStreamChannels;
48 int32 downStreamChannel
[all...]
/haiku/headers/private/kernel/arch/x86/32/
H A Datomic.h39 atomic_set_inline(int32* value, int32 newValue)
42 *(volatile int32*)value = newValue;
46 static inline int32
47 atomic_get_and_set_inline(int32* value, int32 newValue)
57 static inline int32
58 atomic_test_and_set_inline(int32* value, int32 newValue, int32 testAgains
[all...]
/haiku/src/system/kernel/arch/arm/
H A Darch_atomic32.cpp28 atomic_set(int32 *value, int32 newValue)
34 int32
35 atomic_get_and_set(int32 *value, int32 newValue)
38 int32 oldValue = *value;
43 int32
44 atomic_test_and_set(int32 *value, int32 newValue, int32 testAgains
[all...]
/haiku/src/apps/debuganalyzer/gui/
H A DListSelectionModel.h25 int32 CountSelectedItems() const
27 int32 SelectedItemAt(int32 index) const;
28 bool IsItemSelected(int32 itemIndex) const;
31 bool SelectItem(int32 itemIndex,
33 bool SelectItems(int32 itemIndex, int32 count,
35 void DeselectItem(int32 itemIndex);
36 void DeselectItems(int32 itemIndex, int32 coun
[all...]
/haiku/src/preferences/screen/
H A DUtility.cpp4 float round(float n, int32 max)
6 max = (int32)pow(10, (float)max);
11 int32 tmp = (int32)floor(n);
/haiku/src/servers/app/
H A DServerTokenSpace.h17 const int32 kCursorToken = 3;
18 const int32 kBitmapToken = 4;
19 const int32 kPictureToken = 5;
20 const int32 kRemoteDrawingEngineToken = 6;
/haiku/headers/os/support/
H A DTLS.h23 extern int32 tls_allocate(void);
24 extern void *tls_get(int32 index);
25 extern void **tls_address(int32 index);
26 extern void tls_set(int32 index, void *value);
/haiku/src/build/libbe/app/
H A DLooper.cpp10 BLooper::BLooper(const char* name, int32 priority, int32 port_capacity)
/haiku/headers/private/storage/sniffer/
H A DRange.h23 Range(int32 start, int32 end);
28 int32 Start() const;
29 int32 End() const;
31 void SetTo(int32 start, int32 end);
33 int32 fStart;
34 int32 fEnd;
/haiku/src/tests/system/boot/loader/
H A Dplatform_console.cpp16 int32
23 int32
31 console_set_cursor(int32 x, int32 y)
49 console_set_color(int32 foreground, int32 background)
/haiku/src/system/libroot/os/arch/ppc/
H A Dtls.c14 static int32 gNextSlot = TLS_FIRST_FREE_SLOT;
18 int32
21 int32 next = atomic_add(&gNextSlot, 1);
30 tls_get(int32 index)
37 tls_address(int32 index)
44 tls_set(int32 index, void *value)
/haiku/src/system/libroot/os/arch/sparc/
H A Dtls.c14 static int32 gNextSlot = TLS_FIRST_FREE_SLOT;
18 int32
21 int32 next = atomic_add(&gNextSlot, 1);
30 tls_get(int32 index)
37 tls_address(int32 index)
44 tls_set(int32 index, void *value)
/haiku/src/apps/icon-o-matic/import_export/
H A DImporter.h44 int32 StyleIndexFor(int32 savedIndex) const;
45 int32 PathIndexFor(int32 savedIndex) const;
48 int32 fStyleIndexOffset;
49 int32 fPathIndexOffset;
/haiku/src/apps/mail/
H A DKUndoBuffer.h18 KUndoItem(const char* text, int32 length,
19 int32 offset, undo_type history,
20 int32 cursor_pos);
23 void Merge(const char* text, int32 length);
26 int32 Offset;
27 int32 Length;
30 int32 CursorPos;
43 bool AddItem(KUndoItem* item, int32 index);
46 KUndoItem* RemoveItem(int32 index);
47 KUndoItem* ItemAt(int32 inde
[all...]
/haiku/src/add-ons/media/plugins/raw_decoder/
H A DAudioConversion.h30 void uint8_to_uint8(void *dst, const void *src, int32 count);
31 void uint8_to_int8(void *dst, const void *src, int32 count);
32 void uint8_to_int16(void *dst, const void *src, int32 count);
33 void uint8_to_int32(void *dst, const void *src, int32 count);
34 void uint8_to_float32(void *dst, const void *src, int32 count);
36 void int8_to_uint8(void *dst, const void *src, int32 count);
37 void int8_to_int8(void *dst, const void *src, int32 count);
38 void int8_to_int16(void *dst, const void *src, int32 count);
39 void int8_to_int32(void *dst, const void *src, int32 count);
40 void int8_to_float32(void *dst, const void *src, int32 coun
[all...]
/haiku/headers/os/media/
H A DSoundFile.h34 int32 FileFormat() const;
35 int32 SamplingRate() const;
36 int32 CountChannels() const;
37 int32 SampleSize() const;
38 int32 ByteOrder() const;
39 int32 SampleFormat() const;
40 int32 FrameSize() const;
44 int32 CompressionType() const;
47 virtual int32 SetFileFormat(int32 forma
[all...]
/haiku/src/apps/deskbar/
H A DSwitcher.h62 int32 CurrentIndex();
63 int32 CurrentWindow();
64 int32 CurrentSlot();
71 void SwitchToApp(int32 prevIndex, int32 newIndex,
74 client_window_info* WindowInfo(int32 groupIndex, int32 windowIndex);
75 int32 CountWindows(int32 groupIndex,
77 TTeamGroup* FindTeam(team_id, int32* inde
[all...]
/haiku/src/apps/poorman/
H A Dconstants.h8 const int32 MSG_MENU_FILE_SAVE_AS = 'oMSA';
9 const int32 MSG_MENU_FILE_SAVE_SELECTION = 'oMSS';
10 const int32 MSG_MENU_EDIT_COPY = 'oMCP';
11 const int32 MSG_MENU_EDIT_SELECT_ALL = 'oMSE';
12 const int32 MSG_MENU_EDIT_PREF = 'oMPR';
13 const int32 MSG_MENU_CTRL_RUN = 'oMRN';
14 const int32 MSG_MENU_CTRL_CLEAR_HIT = 'oMCH';
15 const int32 MSG_MENU_CTRL_CLEAR_CONSOLE = 'oMCC';
16 const int32 MSG_MENU_CTRL_CLEAR_LOG = 'oMCL';
17 const int32 MSG_FILE_PANEL_SAVE_CONSOL
[all...]

Completed in 214 milliseconds

1234567891011>>