Searched refs:ptr (Results 1 - 25 of 239) sorted by path

12345678910

/haiku/headers/cpp/
H A Deditbuf.h115 inline buf_char *ptr(struct edit_buffer *buf);
175 inline buf_char *edit_mark::ptr(struct edit_buffer *buf) function in class:edit_mark
H A Dfstream.h51 void setbuf(char *ptr, int len) { rdbuf()->setbuf(ptr, len); } argument
H A Dstrstream.h43 void init_static(char *ptr, int size, char *pstart);
44 void init_readonly(const char *ptr, int size);
55 strstreambuf(char *ptr, int size, char *pstart = NULL) argument
56 { init_static(ptr, size, pstart); }
57 strstreambuf(unsigned char *ptr, int size, unsigned char *pstart = NULL) argument
58 { init_static((char*)ptr, size, (char*)pstart); }
59 strstreambuf(const char *ptr, int size) argument
60 { init_readonly(ptr, size); }
61 strstreambuf(const unsigned char *ptr, int size) argument
62 { init_readonly((const char*)ptr, siz
63 strstreambuf(signed char *ptr, int size, signed char *pstart = NULL) argument
65 strstreambuf(const signed char *ptr, int size) argument
[all...]
/haiku/headers/cpp/std/
H A Dbastring.cc38 operator delete (void * ptr) argument
40 Allocator::deallocate(ptr, sizeof(Rep) +
41 reinterpret_cast<Rep *>(ptr)->res *
258 _find (const charT* ptr, charT c, size_type xpos, size_type len) argument
261 if (traits::eq (ptr [xpos], c))
/haiku/headers/libs/agg/
H A Dagg_array.h197 void serialize(int8u* ptr) const;
285 template<class T> void pod_vector<T>::serialize(int8u* ptr) const
287 if(m_size) memcpy(ptr, m_array, m_size * sizeof(T));
357 void add_array(const T* ptr, unsigned num_elem) argument
361 add(*ptr++);
447 void serialize(int8u* ptr) const;
460 int8u* ptr = (int8u*)data_ptr(); local
463 *ptr++ = *data;
481 int8u* ptr; local
484 ptr
736 T* ptr = data_ptr(); local
764 T* ptr = data_ptr(); local
831 int8u* ptr = m_buf_ptr; local
[all...]
H A Dagg_basics.h39 static void deallocate(T* ptr, unsigned) { delete [] ptr; } argument
53 static void deallocate(T* ptr) { delete ptr; } argument
134 __asm fld qword ptr [v]
135 __asm fistp dword ptr [t]
136 __asm mov eax, dword ptr [t]
141 __asm fld qword ptr [v]
142 __asm fistp dword ptr [t]
143 __asm mov eax, dword ptr [
536 T* ptr; member in struct:agg::row_info
545 const T* ptr; member in struct:agg::const_row_info
[all...]
H A Dagg_path_storage_integer.h120 void serialize(int8u* ptr) const
125 memcpy(ptr, &m_storage[i], sizeof(vertex_integer_type));
126 ptr += sizeof(vertex_integer_type);
H A Dagg_pattern_filters_rgba.h78 const color_type* ptr = buf[y_lr] + x_lr; local
82 r += weight * ptr->r;
83 g += weight * ptr->g;
84 b += weight * ptr->b;
85 a += weight * ptr->a;
87 ++ptr;
90 r += weight * ptr->r;
91 g += weight * ptr->g;
92 b += weight * ptr->b;
93 a += weight * ptr
[all...]
H A Dagg_pixfmt_gray.h557 if(r.ptr)
H A Dagg_pixfmt_rgb.h619 if(r.ptr)
H A Dagg_pixfmt_rgba.h2219 if(r.ptr)
2615 if(r.ptr)
H A Dagg_rasterizer_cells_aa.h132 cell_type** ptr = m_cells + m_num_blocks - 1; local
135 pod_allocator<cell_type>::deallocate(*ptr, cell_block_size);
136 ptr--;
H A Dagg_renderer_base.h568 if(rw.ptr)
H A Dagg_rendering_buffer.h36 const int8u* ptr; member in struct:agg::row_ptr_cache::row_data
39 x1(x1_), x2(x2_), ptr(ptr_) {}
H A Dagg_rendering_buffer_dynarow.h42 const int8u* ptr; member in struct:agg::rendering_buffer_dynarow::row_data
79 pod_allocator<int8u>::deallocate((int8u*)m_rows[i].ptr, m_byte_width);
103 if(r->ptr)
111 r->ptr = p;
116 return (int8u*)r->ptr;
120 const int8u* row_ptr(int y) const { return m_rows[y].ptr; }
H A Dagg_scanline_storage_aa.h42 T* ptr; member in struct:agg::scanline_cell_storage::extra_span
86 pod_allocator<T>::deallocate(m_extra_storage[i].ptr,
99 T* ptr = &m_cells[idx]; local
100 memcpy(ptr, cells, sizeof(T) * num_cells);
105 s.ptr = pod_allocator<T>::allocate(num_cells);
106 memcpy(s.ptr, cells, sizeof(T) * num_cells);
121 return m_extra_storage[i].ptr;
134 return m_extra_storage[i].ptr;
146 dst.ptr = pod_allocator<T>::allocate(dst.len);
147 memcpy(dst.ptr, sr
633 init(const int8u* ptr, int dx, int dy) argument
[all...]
H A Dagg_scanline_storage_bin.h425 void init(const int8u* ptr, int dx, int dy) argument
427 m_ptr = ptr;
H A Dagg_trans_viewport.h203 void serialize(int8u* ptr) const
205 memcpy(ptr, this, sizeof(*this));
208 void deserialize(const int8u* ptr) argument
210 memcpy(this, ptr, sizeof(*this));
/haiku/headers/libs/udis86/libudis86/
H A Dtypes.h145 } ptr; member in union:ud_lval
/haiku/headers/private/audio/
H A Dsoundcard.h1190 int ptr; /* Current DMA pointer value */ member in struct:count_info
/haiku/headers/private/firewire/
H A Dfirewire.h426 void *ptr; member in struct:fw_crom_buf
H A Dfwglue.h35 #define atomic_readandclear_int(ptr) atomic_get_and_set((int32*)(ptr), 0)
36 #define atomic_set_int(ptr, value) atomic_or((int32 *)(ptr), value)
/haiku/headers/private/interface/
H A Dutf8_functions.h22 const char *ptr = text; local
25 ptr++;
26 } while (IsInsideGlyph(*ptr));
28 return ptr - text;
92 const char *ptr = text; local
94 if (ptr == NULL || limit == NULL)
98 if (ptr == limit)
100 ptr--;
101 } while (IsInsideGlyph(*ptr));
103 return text - ptr;
[all...]
/haiku/src/add-ons/accelerants/radeon_hd/atombios/
H A Datom-bits.h28 static inline uint8 get_u8(void *bios, int ptr) argument
30 return ((unsigned char *)bios)[ptr];
32 #define U8(ptr) get_u8(ctx->ctx->bios,(ptr))
33 #define CU8(ptr) get_u8(ctx->bios,(ptr))
34 static inline uint16 get_u16(void *bios, int ptr) argument
36 return get_u8(bios,ptr)|(((uint16)get_u8(bios,ptr+1))<<8);
38 #define U16(ptr) get_u1
40 get_u32(void *bios, int ptr) argument
[all...]
H A Datom.cpp163 atom_get_src_int(atom_exec_context *ctx, uint8 attr, int *ptr, argument
172 idx = U16(*ptr);
173 (*ptr)+=2;
201 idx = U8(*ptr);
202 (*ptr)++;
207 idx = U8(*ptr);
208 (*ptr)++;
242 idx = U16(*ptr);
243 (*ptr) += 2;
247 idx = U8(*ptr);
299 atom_skip_src_int(atom_exec_context *ctx, uint8 attr, int *ptr) argument
337 atom_get_src(atom_exec_context *ctx, uint8 attr, int *ptr) argument
344 atom_get_src_direct(atom_exec_context *ctx, uint8_t align, int *ptr) argument
372 atom_get_dst(atom_exec_context *ctx, int arg, uint8 attr, int *ptr, uint32 *saved, int print) argument
381 atom_skip_dst(atom_exec_context *ctx, int arg, uint8 attr, int *ptr) argument
389 atom_put_dst(atom_exec_context *ctx, int arg, uint8 attr, int *ptr, uint32 val, uint32 saved) argument
496 atom_op_add(atom_exec_context *ctx, int *ptr, int arg) argument
513 atom_op_and(atom_exec_context *ctx, int *ptr, int arg) argument
530 atom_op_beep(atom_exec_context *ctx, int *ptr, int arg) argument
537 atom_op_calltable(atom_exec_context *ctx, int *ptr, int arg) argument
559 atom_op_clear(atom_exec_context *ctx, int *ptr, int arg) argument
573 atom_op_compare(atom_exec_context *ctx, int *ptr, int arg) argument
587 atom_op_delay(atom_exec_context *ctx, int *ptr, int arg) argument
603 atom_op_div(atom_exec_context *ctx, int *ptr, int arg) argument
625 atom_op_div32(atom_exec_context *ctx, int *ptr, int arg) argument
653 atom_op_eot(atom_exec_context *ctx, int *ptr, int arg) argument
660 atom_op_jump(atom_exec_context *ctx, int *ptr, int arg) argument
712 atom_op_mask(atom_exec_context *ctx, int *ptr, int arg) argument
729 atom_op_move(atom_exec_context *ctx, int *ptr, int arg) argument
748 atom_op_mul(atom_exec_context *ctx, int *ptr, int arg) argument
761 atom_op_mul32(atom_exec_context *ctx, int *ptr, int arg) argument
782 atom_op_nop(atom_exec_context *ctx, int *ptr, int arg) argument
789 atom_op_or(atom_exec_context *ctx, int *ptr, int arg) argument
806 atom_op_postcard(atom_exec_context *ctx, int *ptr, int arg) argument
815 atom_op_repeat(atom_exec_context *ctx, int *ptr, int arg) argument
822 atom_op_restorereg(atom_exec_context *ctx, int *ptr, int arg) argument
829 atom_op_savereg(atom_exec_context *ctx, int *ptr, int arg) argument
836 atom_op_setdatablock(atom_exec_context *ctx, int *ptr, int arg) argument
851 atom_op_setfbbase(atom_exec_context *ctx, int *ptr, int arg) argument
860 atom_op_setport(atom_exec_context *ctx, int *ptr, int arg) argument
890 atom_op_setregblock(atom_exec_context *ctx, int *ptr, int arg) argument
897 atom_op_shift_left(atom_exec_context *ctx, int *ptr, int arg) argument
915 atom_op_shift_right(atom_exec_context *ctx, int *ptr, int arg) argument
933 atom_op_shl(atom_exec_context *ctx, int *ptr, int arg) argument
954 atom_op_shr(atom_exec_context *ctx, int *ptr, int arg) argument
976 atom_op_sub(atom_exec_context *ctx, int *ptr, int arg) argument
993 atom_op_switch(atom_exec_context *ctx, int *ptr, int arg) argument
1019 atom_op_test(atom_exec_context *ctx, int *ptr, int arg) argument
1033 atom_op_xor(atom_exec_context *ctx, int *ptr, int arg) argument
1050 atom_op_debug(atom_exec_context *ctx, int *ptr, int arg) argument
1060 atom_op_processds(atom_exec_context *ctx, int *ptr, int arg) argument
1206 int len, ws, ps, ptr; local
[all...]

Completed in 206 milliseconds

12345678910