HomeSort by relevance Sort by last modified time
    Searched refs:ArraySize (Results 26 - 50 of 97) sorted by null

12 3 4

  /external/llvm/lib/Analysis/
MemoryBuiltins.cpp 242 Value *ArraySize = computeArraySize(CI, DL, TLI);
244 if (ConstantInt *ConstSize = dyn_cast_or_null<ConstantInt>(ArraySize))
452 Value *ArraySize = I.getArraySize();
453 if (const ConstantInt *C = dyn_cast<ConstantInt>(ArraySize)) {
684 Value *ArraySize = I.getArraySize();
685 Value *Size = ConstantInt::get(ArraySize->getType(),
687 Size = Builder.CreateMul(Size, ArraySize);
  /external/chromium_org/third_party/angle/src/libGLESv2/renderer/d3d/d3d11/
Blit11.cpp 87 stagingDesc.ArraySize = 1;
285 result = device->CreateInputLayout(quad2DLayout, ArraySize(quad2DLayout), g_VS_Passthrough2D, ArraySize(g_VS_Passthrough2D), &mQuad2DIL);
289 result = device->CreateVertexShader(g_VS_Passthrough2D, ArraySize(g_VS_Passthrough2D), NULL, &mQuad2DVS);
293 result = device->CreatePixelShader(g_PS_PassthroughDepth2D, ArraySize(g_PS_PassthroughDepth2D), NULL, &mDepthPS);
304 result = device->CreateInputLayout(quad3DLayout, ArraySize(quad3DLayout), g_VS_Passthrough3D, ArraySize(g_VS_Passthrough3D), &mQuad3DIL);
308 result = device->CreateVertexShader(g_VS_Passthrough3D, ArraySize(g_VS_Passthrough3D), NULL, &mQuad3DVS);
312 result = device->CreateGeometryShader(g_GS_Passthrough3D, ArraySize(g_GS_Passthrough3D), NULL, &mQuad3DGS);
    [all...]
SwapChain11.cpp 139 offscreenTextureDesc.ArraySize != 1)
155 offscreenTextureDesc.ArraySize = 1;
236 depthStencilTextureDesc.ArraySize = 1;
Image11.cpp 341 resolveDesc.ArraySize = 1;
490 desc.ArraySize = 1;
  /frameworks/compile/slang/
slang_rs_reflection.cpp 87 unsigned ArraySize);
89 void genAddStatementEnd(const std::string &VarName, unsigned ArraySize);
    [all...]
slang_rs_reflection.h 227 unsigned ArraySize);
  /external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/d3d1x/d3dapi/
d3d11.idl     [all...]
d3d10.idl 515 UINT ArraySize;
527 UINT ArraySize;
566 UINT ArraySize;
576 UINT ArraySize;
585 UINT ArraySize;
    [all...]
  /external/mesa3d/src/gallium/state_trackers/d3d1x/d3dapi/
d3d11.idl     [all...]
d3d10.idl 515 UINT ArraySize;
527 UINT ArraySize;
566 UINT ArraySize;
576 UINT ArraySize;
585 UINT ArraySize;
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
d3d11.idl 429 UINT ArraySize;
436 UINT ArraySize;
444 UINT ArraySize;
451 UINT ArraySize;
479 UINT ArraySize;
486 UINT ArraySize;
494 UINT ArraySize;
501 UINT ArraySize;
528 UINT ArraySize;
534 UINT ArraySize;
    [all...]
d3d10.idl 509 UINT ArraySize;
521 cpp_quote(" explicit CD3D10_TEXTURE1D_DESC(DXGI_FORMAT format, UINT width, UINT arraySize = 1, UINT mipLevels = 0,")
526 cpp_quote(" ArraySize = arraySize;")
544 UINT ArraySize;
558 cpp_quote(" UINT arraySize = 1,")
    [all...]
  /external/chromium_org/third_party/sqlite/src/src/
mutex_unix.c 173 assert( iType-2 < ArraySize(staticMutexes) );
callback.c 290 int h = (sqlite3UpperToLower[c1] + nName) % ArraySize(pHash->a);
340 h = (sqlite3UpperToLower[(u8)zName[0]] + nName) % ArraySize(db->aFunc.a);
test_malloc.c 1251 for(i=0; i<ArraySize(aOp); i++){
1257 if( i>=ArraySize(aOp) ){
    [all...]
vacuum.c 295 for(i=0; i<ArraySize(aCopy); i+=2){
  /external/llvm/lib/IR/
Instructions.cpp 374 Value *ArraySize, Function *MallocF,
381 // malloc(type, arraySize) becomes:
382 // bitcast (i8 *malloc(typeSize*arraySize)) to type*
383 if (!ArraySize)
384 ArraySize = ConstantInt::get(IntPtrTy, 1);
385 else if (ArraySize->getType() != IntPtrTy) {
387 ArraySize = CastInst::CreateIntegerCast(ArraySize, IntPtrTy, false,
390 ArraySize = CastInst::CreateIntegerCast(ArraySize, IntPtrTy, false
    [all...]
  /external/chromium_org/third_party/angle/src/libGLESv2/renderer/d3d/
ShaderD3D.cpp 210 result = ShCompile(compiler, sourceStrings, ArraySize(sourceStrings), compileOptions);
220 result = ShCompile(compiler, sourceStrings, ArraySize(sourceStrings), compileOptions | SH_SOURCE_PATH);
337 return x.arraySize > y.arraySize;
TextureD3D.cpp 568 ASSERT(level >= 1 && level <= (int)ArraySize(mImageArray) && mImageArray[level] != NULL);
692 ASSERT(level <= (int)ArraySize(mImageArray) && mImageArray[level] != NULL);
    [all...]
  /external/chromium_org/third_party/angle/tests/angle_tests/
DrawBuffersTest.cpp 27 for (size_t texIndex = 0; texIndex < ArraySize(mTextures); texIndex++)
  /external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/d3d1x/progs/d3d11spikysphere/
d3d11spikysphere.cpp 163 zsbufd.ArraySize = 1;
  /external/mesa3d/src/gallium/state_trackers/d3d1x/progs/d3d11spikysphere/
d3d11spikysphere.cpp 163 zsbufd.ArraySize = 1;
  /external/sqlite/dist/orig/
shell.c 509 #define ArraySize(X) (int)(sizeof(X)/sizeof(X[0]))
738 if( i<ArraySize(p->colWidth) ){
749 if( i<ArraySize(p->actualWidth) ){
763 if( i<ArraySize(p->actualWidth) ){
778 if( i<ArraySize(p->actualWidth) ){
    [all...]
  /external/sqlite/dist/
shell.c 514 #define ArraySize(X) (int)(sizeof(X)/sizeof(X[0]))
743 if( i<ArraySize(p->colWidth) ){
754 if( i<ArraySize(p->actualWidth) ){
768 if( i<ArraySize(p->actualWidth) ){
783 if( i<ArraySize(p->actualWidth) ){
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/d3d1x/progs/d3d11gears/
d3d11gears.cpp 321 zsbufd.ArraySize = 1;
367 offscreend.ArraySize = 1;

Completed in 533 milliseconds

12 3 4