HomeSort by relevance Sort by last modified time
    Searched full:pvalue (Results 1 - 25 of 214) sorted by null

1 2 3 4 5 6 7 8 9

  /external/clang/test/CodeGen/
typedef.c 4 typedef Value *PValue;
6 int get_value(PValue v) {
  /frameworks/compile/mclinker/lib/Support/
LEB128.cpp 17 size_t encode<uint64_t>(ByteType *&pBuf, uint64_t pValue) {
20 ByteType byte = pValue & 0x7f;
21 pValue >>= 7;
22 if (pValue)
26 } while (pValue);
36 size_t encode<uint32_t>(ByteType *&pBuf, uint32_t pValue) {
37 if ((pValue & ~0x7f) == 0) {
38 *pBuf++ = static_cast<ByteType>(pValue);
40 } else if ((pValue & ~0x3fff) == 0){
41 *pBuf++ = static_cast<ByteType>((pValue & 0x7f) | 0x80)
    [all...]
  /frameworks/compile/mclinker/include/mcld/Support/
LEB128.h 27 size_t encode(ByteType *&pBuf, IntType pValue);
40 size_t size(IntType pValue) {
42 while (pValue > 0x80) {
43 pValue >>= 7;
56 size_t encode<uint64_t>(ByteType *&pBuf, uint64_t pValue);
59 size_t encode<uint32_t>(ByteType *&pBuf, uint32_t pValue);
65 size_t encode<int64_t>(ByteType *&pBuf, int64_t pValue);
68 size_t encode<int32_t>(ByteType *&pBuf, int32_t pValue);
100 size_t encode(char *&pBuf, IntType pValue) {
101 return encode<IntType>(reinterpret_cast<ByteType*&>(pBuf), pValue);
    [all...]
Allocators.h 116 // pPtr, and using its copy constructor to initialized its value to pValue.
119 // @param pValue the value to be constructed
120 void construct(pointer pPtr, const_reference pValue)
121 { new (pPtr) value_type(pValue); }
125 // pValue.
361 void construct(pointer pObject, const DataType& pValue)
362 { ::new((void *)pObject) value_type(pValue); }
424 void construct(DataType* pObject, const DataType& pValue)
427 void construct(pointer pObject, const_reference pValue)
  /frameworks/wilhelm/src/android/
android_Effect.h 23 int32_t param, int32_t param2, void *pValue);
26 int32_t param, int32_t param2, void *pValue);
34 int32_t param, void *pValue);
37 int32_t param, void *pValue);
45 int32_t param, void *pValue);
48 int32_t param, void *pValue);
67 int32_t param, void *pValue);
70 int32_t param, void *pValue);
125 int32_t param, uint32_t paramSizeMax, void *pValue, uint32_t valueSize);
128 int32_t param, uint32_t paramSizeMax, void *pValue, uint32_t valueSize)
    [all...]
  /frameworks/compile/mclinker/include/mcld/MC/
MCLinker.tcc 17 LDSymbol::ValueType pValue,
29 pValue,
39 pValue,
55 LDSymbol::ValueType pValue,
68 pValue,
79 pValue,
90 pValue,
101 pValue,
  /external/stlport/src/
sparc_atomic.s 7 ** int _STLP_atomic_exchange (void *pvalue, int value)
28 /* int _STLP_atomic_increment (void *pvalue) */
50 /* int _STLP_atomic_decrement (void *pvalue) */
sparc_atomic64.s 5 ! int _STLP_atomic_exchange (void *pvalue, int value)
26 ! int _STLP_atomic_increment (void *pvalue)
46 ! /* int _STLP_atomic_decrement (void *pvalue) */
  /ndk/sources/cxx-stl/stlport/src/
sparc_atomic.s 7 ** int _STLP_atomic_exchange (void *pvalue, int value)
28 /* int _STLP_atomic_increment (void *pvalue) */
50 /* int _STLP_atomic_decrement (void *pvalue) */
sparc_atomic64.s 5 ! int _STLP_atomic_exchange (void *pvalue, int value)
26 ! int _STLP_atomic_increment (void *pvalue)
46 ! /* int _STLP_atomic_decrement (void *pvalue) */
  /frameworks/av/media/libeffects/testlibs/
EffectEqualizer.cpp 118 int Equalizer_getParameter(AudioEqualizer * pEqualizer, int32_t *pParam, size_t *pValueSize, void *pValue);
119 int Equalizer_setParameter(AudioEqualizer * pEqualizer, int32_t *pParam, void *pValue);
369 // pValue - pointer to variable to hold retrieved value
373 // *pValue updated with parameter value
381 int Equalizer_getParameter(AudioEqualizer * pEqualizer, int32_t *pParam, size_t *pValueSize, void *pValue)
437 *(uint16_t *)pValue = (uint16_t)kNumBands;
438 ALOGV("Equalizer_getParameter() EQ_PARAM_NUM_BANDS %d", *(int16_t *)pValue);
442 *(int16_t *)pValue = -9600;
443 *((int16_t *)pValue + 1) = 4800;
445 *(int32_t *)pValue, *((int32_t *)pValue + 1))
    [all...]
  /frameworks/base/media/libdrm/mobile1/src/parser/
parser_rel.c 63 static int32_t drm_getStartEndTime(uint8_t * pValue, int32_t valueLen,
69 strncpy((char *)pTmp, (char *)pValue, valueLen);
235 uint8_t *pBuf, *pValue;
326 WBXML_DOM_getNodeValue(buffer, bufferLen, sProperty, (uint8_t **)&pValue,
332 pBuf = XML_DOM_getNodeValue(buffer, sProperty, &pValue, &valueLen);
338 strncpy((char *)pTmp, (char *)pValue, valueLen);
420 WBXML_DOM_getNodeValue(buffer, bufferLen, sProperty, (uint8_t **)&pValue,
426 pBuf = XML_DOM_getNodeValue(buffer, sProperty, &pValue, &valueLen);
434 if (0 == isdigit(*(pValue + i)))
438 strncpy((char *)pTmp, (char *)pValue, valueLen)
    [all...]
  /frameworks/compile/mclinker/include/mcld/Target/
ELFDynamic.tcc 20 void Entry<32, true>::setValue(uint64_t pTag, uint64_t pValue)
23 m_Pair.d_un.d_val = pValue;
ELFDynamic.h 48 virtual void setValue(uint64_t pTag, uint64_t pValue) = 0;
84 inline void setValue(uint64_t pTag, uint64_t pValue);
156 void applyOne(uint64_t pTag, uint64_t pValue);
  /bionic/libc/bionic/
semaphore.c 163 __sem_dec(volatile unsigned int *pvalue)
165 unsigned int shared = (*pvalue & SEMCOUNT_SHARED_MASK);
170 old = (*pvalue & SEMCOUNT_VALUE_MASK);
179 (volatile int *)pvalue) != 0);
187 __sem_trydec(volatile unsigned int *pvalue)
189 unsigned int shared = (*pvalue & SEMCOUNT_SHARED_MASK);
194 old = (*pvalue & SEMCOUNT_VALUE_MASK);
203 (volatile int *)pvalue) != 0);
217 __sem_inc(volatile unsigned int *pvalue)
219 unsigned int shared = (*pvalue & SEMCOUNT_SHARED_MASK)
    [all...]
  /external/srec/srec/Nametag/src/
Nametag.c 36 ESR_ReturnCode SR_NametagGetValue(const SR_Nametag* self, const char** pvalue, size_t* plen)
38 if (self == NULL || pvalue == NULL || plen == NULL)
43 return self->getValue(self, pvalue, plen);
  /external/stlport/test/unit/
mvctor_test.h 44 value_type *pvalue = &(*vec_cont.front().begin());
50 bool b=( (pvalue==(&(*vec_cont.front().begin()))) );
  /ndk/tests/device/test-gnustl-full/unit/
mvctor_test.h 44 value_type *pvalue = &(*vec_cont.front().begin());
50 bool b=( (pvalue==(&(*vec_cont.front().begin()))) );
  /ndk/tests/device/test-stlport/unit/
mvctor_test.h 44 value_type *pvalue = &(*vec_cont.front().begin());
50 bool b=( (pvalue==(&(*vec_cont.front().begin()))) );
  /frameworks/base/media/libdrm/mobile1/src/xml/
xml_tinyparser.c 109 uint8_t **pValue, int32_t *valueLen)
162 *pValue = buffer;
169 *valueLen = buffer - *pValue;
176 uint8_t *XML_DOM_getValue(uint8_t *buffer, uint8_t **pValue, int32_t *valueLen)
239 *pValue = buffer;
251 *valueLen = pEnd - *pValue + 1;
715 uint8_t *pAttr, *pName, *pValue;
730 XML_DOM_getAttr(pAttr, &pName, &nameLen, &pValue,
738 strncpy((char *)attr->value, (char *)pValue, valueLen);
739 buffer = pValue + valueLen + 1
    [all...]
  /device/samsung/crespo/libs3cjpeg/
JpegEncoder.h 218 unsigned char *pValue);
223 rational_t *pValue,
230 unsigned char *pValue,
  /external/qemu/android/
hw-events.c 136 int *pvalue )
146 *pvalue = 0;
189 *pvalue = (int)strtol( p, &end, 0 );
  /frameworks/wilhelm/src/itf/
IMetadataExtraction.c 122 SLuint32 index, SLuint32 valueSize, SLMetadataInfo *pValue)
126 if (NULL == pValue) {
133 index, valueSize, pValue);
  /external/libnfc-nxp/src/
phFriNfc_LlcpUtils.c 86 uint8_t *pValue)
93 if ((psValueBuffer == NULL) || (pOffset == NULL) || (pValue == NULL))
121 psValueBuffer->buffer[offset] = pValue[i];
134 uint8_t *pValue)
140 if ((psValueBuffer == NULL) || (pCurrentOffset == NULL) || (pValue == NULL))
161 memcpy(psValueBuffer->buffer + offset, pValue, length);
phFriNfc_LlcpUtils.h 71 uint8_t *pValue);
77 uint8_t *pValue);

Completed in 2139 milliseconds

1 2 3 4 5 6 7 8 9