/external/deqp/modules/gles2/functional/ |
es2fBufferTestUtil.cpp | 305 const glw::Functions& funcs = context.getRenderContext().getFunctions(); local 306 m_posLoc = funcs.getAttribLocation(m_program->getProgram(), "a_position"); 307 m_byteVecLoc = funcs.getAttribLocation(m_program->getProgram(), "a_byteVec"); 515 const glw::Functions& funcs = context.getRenderContext().getFunctions(); 516 m_posLoc = funcs.getAttribLocation(m_program->getProgram(), "a_position"); 517 m_colorLoc = funcs.getAttribLocation(m_program->getProgram(), "a_color");
|
es2fBlendTests.cpp | 363 ", src funcs " + getBlendFactorName(src.glValue) + 364 ", dst funcs " + getBlendFactorName(dst.glValue); 425 // Test all RGB and alpha equation combinations. Src and dst funcs are ONE for both.
|
/external/vulkan-validation-layers/ |
vk-layer-generate.py | 438 funcs = [] 454 funcs.append('/* CreateDevice HERE */') 463 funcs.append(intercept) 511 funcs.append("\n".join(body)) 512 return "\n\n".join(funcs) [all...] |
/prebuilts/gdb/darwin-x86/lib/python2.7/ |
calendar.py | 56 funcs = self._months[i] 58 return [f(self.format) for f in funcs] 60 return funcs(self.format) 75 funcs = self._days[i] 77 return [f(self.format) for f in funcs] 79 return funcs(self.format)
|
/prebuilts/gdb/linux-x86/lib/python2.7/ |
calendar.py | 56 funcs = self._months[i] 58 return [f(self.format) for f in funcs] 60 return funcs(self.format) 75 funcs = self._days[i] 77 return [f(self.format) for f in funcs] 79 return funcs(self.format)
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ |
calendar.py | 56 funcs = self._months[i] 58 return [f(self.format) for f in funcs] 60 return funcs(self.format) 75 funcs = self._days[i] 77 return [f(self.format) for f in funcs] 79 return funcs(self.format)
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/ |
calendar.py | 56 funcs = self._months[i] 58 return [f(self.format) for f in funcs] 60 return funcs(self.format) 75 funcs = self._days[i] 77 return [f(self.format) for f in funcs] 79 return funcs(self.format)
|
/external/llvm/tools/bugpoint/ |
Miscompilation.cpp | 238 bool ReduceMiscompilingFunctions::TestFuncs(const std::vector<Function*> &Funcs, 241 // functions listed in Funcs. 243 << (Funcs.size()==1 ? "this function is" : "these functions are") 246 PrintFunctionList(Funcs); 251 // will be in the clone and Funcs will still point to valid memory 261 for (unsigned i = 0, e = Funcs.size(); i != e; ++i) { 262 Function *F = cast<Function>(VMap[Funcs[i]]); 480 // functions listed in Funcs. [all...] |
/external/libpcap/msdos/ |
pktdrvr.c | 729 pktInfo.funcs = reg.r_ax & 0xFF;
1224 " Funcs : %u\n"
[all...] |
/external/valgrind/drd/ |
drd_pthread_intercepts.c | 668 vki_Lc_interface *funcs = ptr; local 669 for (tag = funcs->ci_tag; tag != 0; tag = (++funcs)->ci_tag) { 672 if (funcs->vki_ci_un.ci_func != DRD_(_ti_bind_guard_intercept)) { 673 DRD_(rtld_bind_guard) = funcs->vki_ci_un.ci_func; 674 funcs->vki_ci_un.ci_func = DRD_(_ti_bind_guard_intercept); 678 if (funcs->vki_ci_un.ci_func != DRD_(_ti_bind_clear_intercept)) { 679 DRD_(rtld_bind_clear) = funcs->vki_ci_un.ci_func; 680 funcs->vki_ci_un.ci_func = DRD_(_ti_bind_clear_intercept); [all...] |
/frameworks/rs/ |
rsFont.cpp | 476 mRSC->mHal.funcs.allocation.data2D(mRSC, mTextTexture.get(), 0, 0, 0, 587 uint16_t *indexPtr = (uint16_t*)mRSC->mHal.funcs.allocation.lock1D(mRSC, indexAlloc); 616 mTextMeshPtr = (float*)mRSC->mHal.funcs.allocation.lock1D(mRSC, vertexAlloc); 622 mRSC->mHal.funcs.allocation.unlock1D(mRSC, indexAlloc); 623 mRSC->mHal.funcs.allocation.unlock1D(mRSC, vertexAlloc);
|
/ndk/build/tools/ |
dev-system-import.sh | 318 local funcs="`extract_shared_library_functions $1`" 320 local numfuncs=`echo $funcs | wc -w` 327 for func in $funcs; do 347 if [ "$newfuncs" != "$funcs" ] ; then 371 (echo "$funcs" | tr ' ' '\n') >> $symfile
|
/toolchain/binutils/binutils-2.25/gas/testsuite/gas/all/ |
test-gen.c | 170 /* Use `define_insn' to create an array of funcs to define an insn, 172 #define define_insn(insname, funcs...) \ 173 func i_ ## insname[] = { funcs, { 0 } } 619 arrays of funcs), output test code for the insns to as_in (assembly 630 /* Figure out how many funcs have to be called. */
|
/external/deqp/modules/gles31/functional/ |
es31fDebugTests.cpp | 262 FunctionContainer funcs[] = local 269 return std::vector<FunctionContainer>(DE_ARRAY_BEGIN(funcs), DE_ARRAY_END(funcs)); [all...] |
es31fNegativeShaderDirectiveTests.cpp | 474 const FunctionContainer funcs[] = local 490 return std::vector<FunctionContainer>(DE_ARRAY_BEGIN(funcs), DE_ARRAY_END(funcs));
|
/external/boringssl/src/crypto/asn1/ |
tasn_prn.c | 198 const ASN1_AUX *aux = it->funcs; 245 ef = it->funcs; 544 pf = it->funcs;
|
/external/clang/lib/Sema/ |
SemaCoroutine.cpp | 199 const StringRef Funcs[] = {"await_ready", "await_suspend", "await_resume"}; 200 for (size_t I = 0, N = llvm::array_lengthof(Funcs); I != N; ++I) { 205 ExprResult Result = buildMemberCall(S, Operand, Loc, Funcs[I], None);
|
/external/deqp/modules/gles3/functional/ |
es3fBlendTests.cpp | 428 ", src funcs " + getBlendFactorName(src.glValue) + 429 ", dst funcs " + getBlendFactorName(dst.glValue); 490 // Test all RGB and alpha equation combinations. Src and dst funcs are ONE for both.
|
/external/libdrm/freedreno/msm/ |
msm_ringbuffer.c | 359 static const struct fd_ringbuffer_funcs funcs = { variable in typeref:struct:fd_ringbuffer_funcs 381 ring->funcs = &funcs;
|
/external/vulkan-validation-layers/loader/ |
vk-loader-generate.py | 208 funcs = [] 244 funcs.append("\n".join(func)) 246 return "\n\n".join(funcs)
|
/prebuilts/go/darwin-x86/src/go/ast/ |
filter.go | 371 funcs := make(map[string]int) // map of func name -> decls index 389 if j, exists := funcs[name]; exists { 401 funcs[name] = i
|
/prebuilts/go/linux-x86/src/go/ast/ |
filter.go | 371 funcs := make(map[string]int) // map of func name -> decls index 389 if j, exists := funcs[name]; exists { 401 funcs[name] = i
|
/external/llvm/lib/Transforms/Instrumentation/ |
GCOVProfiling.cpp | 140 SmallVector<std::unique_ptr<GCOVFunction>, 16> Funcs; 515 Funcs.push_back(make_unique<GCOVFunction>(SP, F, &out, FunctionIdent++, 518 GCOVFunction &Func = *Funcs.back(); 562 for (auto &Func : Funcs) { 864 uint32_t FuncChecksum = Funcs.empty() ? 0 : Funcs[j]->getFuncChecksum(); [all...] |
/external/opencv3/modules/cudaarithm/test/ |
test_reductions.cpp | 204 static const func_t funcs[] = local 215 return funcs[src.depth()](src); 244 static const func_t funcs[] = local 255 return funcs[src.depth()](src); 522 static const func_t funcs[] = local 533 funcs[src.depth()](src, loc_gold, loc);
|
/external/harfbuzz_ng/src/ |
hb-font-private.hh | 159 hb_font_funcs_t *funcs = this->klass; \ 160 unsigned int i = offsetof (hb_font_funcs_t::get_t::get_funcs_t, name) / sizeof (funcs->get.array[0]); \
|