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

1 2 3

  /external/tremolo/Tremolo/
dsp.c 76 v->work[i]=(ogg_int32_t *)_ogg_calloc(1,(ci->blocksizes[1]>>1)*
78 v->mdctright[i]=(ogg_int32_t *)_ogg_calloc(1,(ci->blocksizes[1]>>2)*
153 mdct_unroll_lap(ci->blocksizes[0],ci->blocksizes[1],
155 _vorbis_window(ci->blocksizes[0]>>1),
156 _vorbis_window(ci->blocksizes[1]>>1),
194 return(ci->blocksizes[ci->mode_param[mode].blockflag]);
229 mdct_shift_right(ci->blocksizes[vd->lW],vd->work[i],vd->mdctright[i]);
247 vd->out_end=ci->blocksizes[vd->lW]/4+ci->blocksizes[vd->W]/4
    [all...]
treminfo.c 126 return ci ? ci->blocksizes[zo] : -1;
193 ci->blocksizes[0]=1<<oggpack_read(opb,4);
194 ci->blocksizes[1]=1<<oggpack_read(opb,4);
197 if(vi->rate>=64000 || ci->blocksizes[1]>4096)goto err_out;
199 if(vi->rate<64000 && ci->blocksizes[1]>4096)goto err_out;
204 if(ci->blocksizes[0]<64)goto err_out;
205 if(ci->blocksizes[1]<ci->blocksizes[0])goto err_out;
206 if(ci->blocksizes[1]>8192)goto err_out;
codec_internal.h 196 long blocksizes[2]; member in struct:codec_setup_info
199 blocksizes, different channel mappings (LR or M/A),
res012.c 101 int limit = (info->type == 2 ? vi->channels : 1) * ci->blocksizes[1] / 2;
120 int pcmend=ci->blocksizes[vd->W];
floor0.c 440 vorbis_lsp_to_curve(out,ci->blocksizes[vd->W]/2,info->barkmap,
445 memset(out,0,sizeof(*out)*ci->blocksizes[vd->W]/2);
mapping0.c 130 long n=ci->blocksizes[vd->W];
floor1.c 380 int n=ci->blocksizes[vd->W]/2;
  /external/llvm/lib/Target/MSP430/
MSP430BranchSelector.cpp 37 /// BlockSizes - The sizes of the basic blocks in the function.
38 std::vector<unsigned> BlockSizes;
66 BlockSizes.resize(Fn.getNumBlockIDs());
75 BlockSizes[MBB.getNumber()] = BlockSize;
83 BlockSizes.clear();
126 BranchSize += BlockSizes[i];
133 BranchSize += BlockSizes[i];
171 BlockSizes[MBB.getNumber()] += NewSize-2;
181 BlockSizes.clear();
  /external/swiftshader/third_party/LLVM/lib/Target/MSP430/
MSP430BranchSelector.cpp 35 /// BlockSizes - The sizes of the basic blocks in the function.
36 std::vector<unsigned> BlockSizes;
59 BlockSizes.resize(Fn.getNumBlockIDs());
72 BlockSizes[MBB->getNumber()] = BlockSize;
80 BlockSizes.clear();
123 BranchSize += BlockSizes[i];
130 BranchSize += BlockSizes[i];
168 BlockSizes[MBB.getNumber()] += NewSize-2;
178 BlockSizes.clear();
  /external/swiftshader/third_party/LLVM/lib/Target/PowerPC/
PPCBranchSelector.cpp 36 /// BlockSizes - The sizes of the basic blocks in the function.
37 std::vector<unsigned> BlockSizes;
60 BlockSizes.resize(Fn.getNumBlockIDs());
73 BlockSizes[MBB->getNumber()] = BlockSize;
81 BlockSizes.clear();
123 BranchSize += BlockSizes[i];
130 BranchSize += BlockSizes[i];
162 BlockSizes[MBB.getNumber()] += 4;
171 BlockSizes.clear();
  /external/llvm/lib/Target/PowerPC/
PPCBranchSelector.cpp 44 /// BlockSizes - The sizes of the basic blocks in the function.
45 std::vector<unsigned> BlockSizes;
76 BlockSizes.resize(Fn.getNumBlockIDs());
105 BlockSizes[MBB->getNumber()-1] += AlignExtra;
113 BlockSizes[MBB->getNumber()] = BlockSize;
121 BlockSizes.clear();
172 BranchSize += BlockSizes[i];
179 BranchSize += BlockSizes[i];
229 BlockSizes[MBB.getNumber()] += 4;
238 BlockSizes.clear()
    [all...]
  /external/emma/core/java12/com/vladium/emma/data/
MethodDescriptor.java 35 final int [] blockSizes, final int [][] blockMap, final int firstLine)
46 final int blockCount = blockSizes.length;
49 m_blockSizes = blockSizes;
248 int [] blockSizes = null;
254 // blockSizes must be set:
256 blockSizes = DataFactory.readIntArray (in);
276 return new MethodDescriptor (name, descriptor, status, blockSizes, blockMap, firstLine);
290 // blockSizes must be set:
  /external/emma/core/java12/com/vladium/emma/report/
MethodItem.java 87 final int [] blockSizes = method.getBlockSizes ();
96 final int instr = blockSizes [b];
125 final int instr = blockSizes [b];
153 totalBlockInstr += blockSizes [b];
  /external/e2fsprogs/e2fsck/
CHANGES 51 search through various blocksizes to find the correct one.)
e2fsck.8.in 105 filesystem's blocksize. For filesystems with 1k blocksizes, a backup
107 blocksizes, at block 16384; and for 4k blocksizes, at block 32768.
  /external/e2fsprogs/resize/
resize2fs.8.in 173 incorrect, especially for filesystems with 1k and 2k blocksizes.
  /external/eigen/bench/
benchmark-blocking-sizes.cpp 162 size_triple_t blocksizes(compact_block_size);
163 eigen_block_size_k = blocksizes.k;
164 eigen_block_size_m = blocksizes.m;
165 eigen_block_size_n = blocksizes.n;
  /external/fio/tools/
genfio 62 -b blocksize[,blocksize1, ...] : The blocksizes to test under fio format (4k, 1m, ...)
  /hardware/intel/img/psb_video/src/mrst/
lnc_hostcode.h 307 IMG_BYTE BlockSizes; /****************/
  /external/libvpx/libvpx/vp9/encoder/
vp9_speed_features.h 320 // Disables sub 8x8 blocksizes in different scenarios: Choices are to disable
  /external/llvm/lib/DebugInfo/PDB/Raw/
PDBFile.cpp 304 // We don't support blocksizes which aren't a multiple of four bytes.
  /external/lz4/doc/
lz4_Frame_format.md 192 is only able to decode blocksizes defined in this spec.
  /external/mesa3d/src/gallium/drivers/nouveau/nv30/
nv30_state.c 373 /* Hardware can't handle different swizzled-ness or different blocksizes
  /hardware/intel/img/psb_video/src/
pnw_hostcode.h 399 IMG_BYTE BlockSizes; /****************/
  /external/lz4/lib/
lz4frame.c 226 static const size_t blockSizes[4] = { 64 KB, 256 KB, 1 MB, 4 MB };
231 return blockSizes[blockSizeID];
    [all...]

Completed in 2869 milliseconds

1 2 3