Home
last modified time | relevance | path

Searched refs:pInput (Results 1 – 13 of 13) sorted by relevance

/third_party/openh264/test/encoder/
DEncUT_Reconstruct.cpp49 ENFORCE_STACK_ALIGN_1D (int16_t, pInput, 64, 16) in TEST()
57 FillWithRandomData ((uint8_t*)pInput, 128); in TEST()
58 iZeroCount[0] = WelsGetNoneZeroCount_c (pInput); in TEST()
59 iZeroCount[1] = sFuncPtrList.pfGetNoneZeroCount (pInput); in TEST()
240 ENFORCE_STACK_ALIGN_2D (int16_t, pInput, 2, 16, 16) in TEST()
249 FillWithRandomData ((uint8_t*)pInput[0], 32); in TEST()
251 pInput[0][i] = WELS_CLIP3 (pInput[0][i], -32000, 32000); in TEST()
253 memcpy ((uint8_t*)pInput[1], (uint8_t*)pInput[0], 32); in TEST()
257 WelsQuant4x4_c (pInput[0], pFF, pMF); in TEST()
258 sFuncPtrList.pfQuantization4x4 (pInput[1], pFF, pMF); in TEST()
[all …]
/third_party/cmsis/CMSIS/DSP/Source/StatisticsFunctions/
Darm_var_f16.c114 const float16_t * pInput = pSrc; in arm_var_f16() local
131 sum += *pInput++; in arm_var_f16()
132 sum += *pInput++; in arm_var_f16()
133 sum += *pInput++; in arm_var_f16()
134 sum += *pInput++; in arm_var_f16()
155 sum += *pInput++; in arm_var_f16()
164 pInput = pSrc; in arm_var_f16()
173 fValue = *pInput++ - fMean; in arm_var_f16()
176 fValue = *pInput++ - fMean; in arm_var_f16()
179 fValue = *pInput++ - fMean; in arm_var_f16()
[all …]
Darm_var_f32.c191 const float32_t * pInput = pSrc; in arm_var_f32() local
208 sum += *pInput++; in arm_var_f32()
209 sum += *pInput++; in arm_var_f32()
210 sum += *pInput++; in arm_var_f32()
211 sum += *pInput++; in arm_var_f32()
232 sum += *pInput++; in arm_var_f32()
241 pInput = pSrc; in arm_var_f32()
250 fValue = *pInput++ - fMean; in arm_var_f32()
253 fValue = *pInput++ - fMean; in arm_var_f32()
256 fValue = *pInput++ - fMean; in arm_var_f32()
[all …]
/third_party/mesa3d/src/gallium/frontends/nine/
Dauthenticatedchannel9.h55 const void *pInput,
62 const void *pInput,
Dauthenticatedchannel9.c53 const void *pInput, in NineAuthenticatedChannel9_Query() argument
63 const void *pInput, in NineAuthenticatedChannel9_Configure() argument
Dnine_lock.c103 const void *pInput, in LockAuthenticatedChannel9_Query() argument
109 r = NineAuthenticatedChannel9_Query(This, InputSize, pInput, OutputSize, pOutput); in LockAuthenticatedChannel9_Query()
117 const void *pInput, in LockAuthenticatedChannel9_Configure() argument
122 r = NineAuthenticatedChannel9_Configure(This, InputSize, pInput, pOutput); in LockAuthenticatedChannel9_Configure()
/third_party/openh264/test/common/
DCWelsListTest.cpp361 int32_t* pInput = static_cast<int32_t*> (malloc (kiIncreaseNum * 10 * sizeof (int32_t))); in TEST() local
362 if (!pInput) { in TEST()
366 pInput[i] = i; in TEST()
372 ASSERT_TRUE (cThreadList.push_back (&pInput[i + kiIncreaseNum * j])); in TEST()
400 free (pInput); in TEST()
/third_party/openh264/test/api/
Ddecode_api_test.cpp677 EncodeDecodeFileParamBase pInput; //to conform with old functions in TEST_F() local
678 pInput.width = p.width; in TEST_F()
679 pInput.height = p.height; in TEST_F()
680 pInput.frameRate = p.frameRate; in TEST_F()
681 ASSERT_TRUE (prepareEncDecParam (pInput)); in TEST_F()
1180 EncodeDecodeFileParamBase pInput; //to conform with old functions in TEST_F() local
1181 pInput.width = p.width; in TEST_F()
1182 pInput.height = p.height; in TEST_F()
1183 pInput.frameRate = p.frameRate; in TEST_F()
1184 prepareEncDecParam (pInput); in TEST_F()
/third_party/mesa3d/src/amd/addrlib/inc/
Daddrinterface.h221 const ADDR_ALLOCSYSMEM_INPUT* pInput);
245 const ADDR_FREESYSMEM_INPUT* pInput);
270 const ADDR_DEBUGPRINT_INPUT* pInput);
/third_party/mesa3d/src/amd/common/
Dac_surface.c426 static void *ADDR_API allocSysMem(const ADDR_ALLOCSYSMEM_INPUT *pInput) in allocSysMem() argument
428 return malloc(pInput->sizeInBytes); in allocSysMem()
431 static ADDR_E_RETURNCODE ADDR_API freeSysMem(const ADDR_FREESYSMEM_INPUT *pInput) in freeSysMem() argument
433 free(pInput->pVirtAddr); in freeSysMem()
/third_party/mesa3d/src/gallium/drivers/swr/
Dswr_shader.cpp722 Value *pInput = LOAD(GEP(pVertex, {pVector, unwrap(swizzle_index)})); in swr_gs_llvm_fetch_input() local
724 Value *value = VEXTRACT(pInput, C(i)); in swr_gs_llvm_fetch_input()
737 Value *pInput = LOAD(GEP(pVertex, {pVector, unwrap(swizzle_index)})); in swr_gs_llvm_fetch_input() local
739 return wrap(pInput); in swr_gs_llvm_fetch_input()
/third_party/mesa3d/include/D3D9/
Dd3d9.h576 …HRESULT (WINAPI *Query)(IDirect3DAuthenticatedChannel9 *This, UINT InputSize, const void *pInput, …
577 …igure)(IDirect3DAuthenticatedChannel9 *This, UINT InputSize, const void *pInput, D3DAUTHENTICATEDC…
/third_party/sqlite/src/
Dsqlite3.c172809 const char *pInput, int nBytes, /* Input buffer */
182890 const char *pInput; /* input we are tokenizing */
182963 const char *pInput, int nBytes, /* String to be tokenized */
182973 c->pInput = pInput;
182974 if( pInput==0 ){
182977 c->nBytes = (int)strlen(pInput);
183015 unsigned char *p = (unsigned char *)c->pInput;
212673 SessionInput *pInput, /* Input changeset */
212699 if( (rc = sessionInputBuffer(pInput, 2)) ) goto finished_invert;
212700 if( pInput->iNext>=pInput->nData ) break;
[all …]