Searched refs:pv (Results 1 - 25 of 74) sorted by relevance

123

/external/icu4c/common/
H A Dpropsvec.c42 UPropsVectors *pv; local
55 pv=(UPropsVectors *)uprv_malloc(sizeof(UPropsVectors));
57 if(pv==NULL || v==NULL) {
58 uprv_free(pv);
63 uprv_memset(pv, 0, sizeof(UPropsVectors));
64 pv->v=v;
65 pv->columns=columns;
66 pv->maxRows=UPVEC_INITIAL_ROWS;
67 pv->rows=2+(UPVEC_MAX_CP-UPVEC_FIRST_SPECIAL_CP);
70 row=pv
84 upvec_close(UPropsVectors *pv) argument
92 _findRow(UPropsVectors *pv, UChar32 rangeStart) argument
151 upvec_setValue(UPropsVectors *pv, UChar32 start, UChar32 end, int32_t column, uint32_t value, uint32_t mask, UErrorCode *pErrorCode) argument
277 upvec_getValue(const UPropsVectors *pv, UChar32 c, int32_t column) argument
290 upvec_getRow(const UPropsVectors *pv, int32_t rowIndex, UChar32 *pRangeStart, UChar32 *pRangeEnd) argument
313 const UPropsVectors *pv=(const UPropsVectors *)context; local
333 upvec_compact(UPropsVectors *pv, UPVecCompactHandler *handler, void *context, UErrorCode *pErrorCode) argument
434 upvec_getArray(const UPropsVectors *pv, int32_t *pRows, int32_t *pColumns) argument
448 upvec_cloneArray(const UPropsVectors *pv, int32_t *pRows, int32_t *pColumns, UErrorCode *pErrorCode) argument
477 upvec_compactToUTrie2WithRowIndexes(UPropsVectors *pv, UErrorCode *pErrorCode) argument
[all...]
H A Dpropsvec.h77 upvec_close(UPropsVectors *pv);
86 upvec_setValue(UPropsVectors *pv,
93 * Logically const but must not be used on the same pv concurrently!
97 upvec_getValue(const UPropsVectors *pv, UChar32 c, int32_t column);
105 upvec_getRow(const UPropsVectors *pv, int32_t rowIndex,
133 upvec_compact(UPropsVectors *pv, UPVecCompactHandler *handler, void *context, UErrorCode *pErrorCode);
141 upvec_getArray(const UPropsVectors *pv, int32_t *pRows, int32_t *pColumns);
149 upvec_cloneArray(const UPropsVectors *pv,
157 upvec_compactToUTrie2WithRowIndexes(UPropsVectors *pv, UErrorCode *pErrorCode);
H A Duarrsort.c58 UComparator *cmp, const void *context, void *pv) {
63 uprv_memcpy(pv, array+j*itemSize, itemSize);
66 if(/* v>=array[i-1] */ cmp(context, pv, array+(i-1)*itemSize)>=0) {
76 uprv_memcpy(array+i*itemSize, pv, itemSize);
85 void *pv; local
89 pv=v;
91 pv=uprv_malloc(itemSize);
92 if(pv==NULL) {
98 doInsertionSort(array, 0, length, itemSize, cmp, context, pv);
100 if(pv!
57 doInsertionSort(char *array, int32_t start, int32_t limit, int32_t itemSize, UComparator *cmp, const void *context, void *pv) argument
[all...]
/external/qemu/hw/
H A Dhw.h100 static inline void qemu_put_be64s(QEMUFile *f, const uint64_t *pv) argument
102 qemu_put_be64(f, *pv);
105 static inline void qemu_put_be32s(QEMUFile *f, const uint32_t *pv) argument
107 qemu_put_be32(f, *pv);
110 static inline void qemu_put_be16s(QEMUFile *f, const uint16_t *pv) argument
112 qemu_put_be16(f, *pv);
115 static inline void qemu_put_8s(QEMUFile *f, const uint8_t *pv) argument
117 qemu_put_byte(f, *pv);
120 static inline void qemu_get_be64s(QEMUFile *f, uint64_t *pv) argument
122 *pv
125 qemu_get_be32s(QEMUFile *f, uint32_t *pv) argument
130 qemu_get_be16s(QEMUFile *f, uint16_t *pv) argument
135 qemu_get_8s(QEMUFile *f, uint8_t *pv) argument
181 qemu_put_s8s(QEMUFile *f, const int8_t *pv) argument
186 qemu_put_sbe16s(QEMUFile *f, const int16_t *pv) argument
191 qemu_put_sbe32s(QEMUFile *f, const int32_t *pv) argument
196 qemu_put_sbe64s(QEMUFile *f, const int64_t *pv) argument
201 qemu_get_s8s(QEMUFile *f, int8_t *pv) argument
206 qemu_get_sbe16s(QEMUFile *f, int16_t *pv) argument
211 qemu_get_sbe32s(QEMUFile *f, int32_t *pv) argument
216 qemu_get_sbe64s(QEMUFile *f, int64_t *pv) argument
[all...]
/external/clang/test/CXX/expr/expr.mptr.oper/
H A Dp5.cpp16 volatile X0 *pv,
32 (pv->*pm)(); // expected-error{{call to pointer to member function of type 'void ()' drops 'volatile' qualifier}}
33 (pv->*pmc)(); // expected-error{{call to pointer to member function of type 'void () const' drops 'volatile' qualifier}}
34 (pv->*pmv)();
35 (pv->*pmcv)();
10 test_object_cvquals(void (X0::*pm)(), void (X0::*pmc)() const, void (X0::*pmv)() volatile, void (X0::*pmcv)() const volatile, X0 *p, const X0 *pc, volatile X0 *pv, const volatile X0 *pcv, X0 &o, const X0 &oc, volatile X0 &ov, const volatile X0 &ocv) argument
/external/chromium/third_party/libjingle/source/talk/base/
H A Dasyncsocket.h74 virtual int Send(const void* pv, size_t cb) { argument
75 return socket_->Send(pv, cb);
77 virtual int SendTo(const void* pv, size_t cb, const SocketAddress& addr) { argument
78 return socket_->SendTo(pv, cb, addr);
80 virtual int Recv(void* pv, size_t cb) { argument
81 return socket_->Recv(pv, cb);
83 virtual int RecvFrom(void* pv, size_t cb, SocketAddress* paddr) { argument
84 return socket_->RecvFrom(pv, cb, paddr);
H A Dasyncudpsocket.h50 virtual int Send(const void *pv, size_t cb);
51 virtual int SendTo(const void *pv, size_t cb, const SocketAddress& addr);
H A Dasyncudpsocket.cc75 int AsyncUDPSocket::Send(const void *pv, size_t cb) { argument
76 return socket_->Send(pv, cb);
80 const void *pv, size_t cb, const SocketAddress& addr) {
81 return socket_->SendTo(pv, cb, addr);
79 SendTo( const void *pv, size_t cb, const SocketAddress& addr) argument
H A Dasynctcpsocket.h48 virtual int Send(const void *pv, size_t cb);
49 virtual int SendTo(const void *pv, size_t cb, const SocketAddress& addr);
59 int SendRaw(const void* pv, size_t cb);
H A Dfirewallsocketserver.cc57 virtual int Send(const void* pv, size_t cb) { argument
58 return SendTo(pv, cb, GetRemoteAddress());
60 virtual int SendTo(const void* pv, size_t cb, const SocketAddress& addr) { argument
69 return AsyncSocketAdapter::SendTo(pv, cb, addr);
71 virtual int Recv(void* pv, size_t cb) { argument
73 return RecvFrom(pv, cb, &addr);
75 virtual int RecvFrom(void* pv, size_t cb, SocketAddress* paddr) { argument
78 int res = AsyncSocketAdapter::RecvFrom(pv, cb, paddr);
88 return AsyncSocketAdapter::RecvFrom(pv, cb, paddr);
H A Dasyncpacketsocket.h52 virtual int Send(const void *pv, size_t cb) = 0;
53 virtual int SendTo(const void *pv, size_t cb, const SocketAddress& addr) = 0;
H A Dopenssladapter.h52 virtual int Send(const void* pv, size_t cb);
53 virtual int Recv(void* pv, size_t cb);
H A Dschanneladapter.h46 virtual int Send(const void* pv, size_t cb);
47 virtual int Recv(void* pv, size_t cb);
H A Dsocketadapters.h53 virtual int Send(const void* pv, size_t cb);
54 virtual int Recv(void* pv, size_t cb);
57 int DirectSend(const void* pv, size_t cb) { argument
58 return AsyncSocketAdapter::Send(pv, cb);
239 virtual int Send(const void *pv, size_t cb);
240 virtual int SendTo(const void *pv, size_t cb, const SocketAddress& addr);
241 virtual int Recv(void *pv, size_t cb);
242 virtual int RecvFrom(void *pv, size_t cb, SocketAddress *paddr);
H A Dsocket.h159 virtual int Send(const void *pv, size_t cb) = 0;
160 virtual int SendTo(const void *pv, size_t cb, const SocketAddress& addr) = 0;
161 virtual int Recv(void *pv, size_t cb) = 0;
162 virtual int RecvFrom(void *pv, size_t cb, SocketAddress *paddr) = 0;
H A Dwin32socketserver.h62 virtual int Send(const void *pv, size_t cb);
63 virtual int SendTo(const void *pv, size_t cb, const SocketAddress& addr);
64 virtual int Recv(void *pv, size_t cb);
65 virtual int RecvFrom(void *pv, size_t cb, SocketAddress *paddr);
H A Dasynctcpsocket.cc101 int AsyncTCPSocket::Send(const void *pv, size_t cb) { argument
113 memcpy(outbuf_ + PKT_LEN_SIZE, pv, cb);
127 int AsyncTCPSocket::SendTo(const void *pv, size_t cb, argument
130 return Send(pv, cb);
161 int AsyncTCPSocket::SendRaw(const void * pv, size_t cb) { argument
167 memcpy(outbuf_ + outpos_, pv, cb);
/external/flac/libFLAC/
H A Dmemory.c79 void *pv; /* aligned pointer alias */ member in union:__anon5465
90 pu = (FLAC__int32*)FLAC__memory_alloc_aligned(sizeof(*pu) * (size_t)elements, &u.pv);
108 void *pv; /* aligned pointer alias */ member in union:__anon5466
119 pu = (FLAC__uint32*)FLAC__memory_alloc_aligned(sizeof(*pu) * elements, &u.pv);
137 void *pv; /* aligned pointer alias */ member in union:__anon5467
148 pu = (FLAC__uint64*)FLAC__memory_alloc_aligned(sizeof(*pu) * elements, &u.pv);
166 void *pv; /* aligned pointer alias */ member in union:__anon5468
177 pu = (unsigned*)FLAC__memory_alloc_aligned(sizeof(*pu) * elements, &u.pv);
197 void *pv; /* aligned pointer alias */ member in union:__anon5469
208 pu = (FLAC__real*)FLAC__memory_alloc_aligned(sizeof(*pu) * elements, &u.pv);
[all...]
/external/quake/quake/src/WinQuake/
H A Dvid_dos.cpp139 vmode_t *pv; local
141 pv = pvidmodes;
142 if (!pv)
147 pv = pv->pnext;
148 if (!pv)
152 return pv;
174 vmode_t *pv; local
176 pv = VID_GetModePtr (modenum);
178 if (!pv)
416 vmode_t *pv; local
456 vmode_t *pv; local
[all...]
/external/skia/include/utils/win/
H A DSkIStream.h40 virtual HRESULT STDMETHODCALLTYPE Read(void* pv, ULONG cb, ULONG* pcbRead);
42 virtual HRESULT STDMETHODCALLTYPE Write(void const* pv
94 virtual HRESULT STDMETHODCALLTYPE Read(void* pv, ULONG cb, ULONG* pcbRead);
96 virtual HRESULT STDMETHODCALLTYPE Write(void const* pv
121 virtual HRESULT STDMETHODCALLTYPE Write(void const* pv
/external/clang/test/Sema/
H A Dpragma-ms_struct.c40 void *pv; member in struct:__anon4568
/external/webkit/Source/WebKit/win/
H A DMemoryStream.h53 /* [length_is][size_is][out] */ void* pv,
58 /* [size_is][in] */ const void* pv,
/external/icu4c/test/cintltst/
H A Ducnvseltst.c510 UPropsVectors *pv = upvec_open(100, &errorCode); local
511 if (pv != NULL) {
516 pv = upvec_open(-1, &errorCode);
517 if (pv != NULL || U_SUCCESS(errorCode)) {
522 pv = upvec_open(100, &errorCode);
523 if (pv == NULL || U_FAILURE(errorCode)) {
528 if (upvec_getValue(pv, 0, 1) != 0) {
531 if (upvec_getRow(pv, 0, NULL, NULL) == NULL) {
534 if (upvec_getArray(pv, NULL, NULL) != NULL) {
538 upvec_close(pv);
[all...]
/external/valgrind/main/memcheck/tests/
H A Dunit_oset.c81 Word *pv; local
144 pv = NULL;
147 while ( (pv = VG_(OSetGen_Next)(oset)) ) {
148 Word curr = *pv;
160 assert( pv = VG_(OSetGen_Remove)(oset, vs[i]) );
161 assert( pv == vs[i] );
169 assert( pv = VG_(OSetGen_LookupWithCmp)(oset, vs[i], NULL) );
170 assert( pv == vs[i] );
181 assert( pv = VG_(OSetGen_Remove)(oset, vs[i]) );
182 assert( pv
371 Block *pv; local
[all...]
/external/quake/quake/src/QW/client/
H A Dr_sprite.c139 float dot, scale, *pv; local
196 pv = &clip_verts[clip_current][0][0];
201 VectorSubtract (pv, r_origin, local);
212 pout->s = pv[3];
213 pout->t = pv[4];
221 pv += sizeof (vec5_t) / sizeof (pv);

Completed in 390 milliseconds

123