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

12 3 4 5 6 7 8 91011>>

  /external/valgrind/main/memcheck/tests/
sbfragment.stdout.exp 1 after 3000 loops, last size block requested 96032008
  /external/chromium_org/tools/idl_parser/test_parser/
inline_ppapi.idl 37 This is my block of C code
44 This is my block of CC code
  /external/eigen/doc/snippets/
MatrixBase_setIdentity.cpp 2 m.block<3,3>(1,0).setIdentity();
MatrixBase_fixedBlock_int_int.cpp 3 cout << "Here is m.fixed<2, 2>(2, 2):" << endl << m.block<2, 2>(2, 2) << endl;
4 m.block<2, 2>(2, 0) = m.block<2, 2>(2, 2);
  /external/ceres-solver/internal/ceres/
residual_block_utils.h 55 void InvalidateEvaluation(const ResidualBlock& block,
62 bool IsEvaluationValid(const ResidualBlock& block,
68 // Create a string representation of the Residual block containing the
71 string EvaluationToString(const ResidualBlock& block,
  /external/chromium_org/third_party/WebKit/Source/bindings/v8/
V8BindingMacros.h 39 v8::TryCatch block; \
41 if (block.HasCaught()) \
42 return block.ReThrow(); \
48 v8::TryCatch block; \
50 if (block.HasCaught()) { \
51 block.ReThrow(); \
61 v8::TryCatch block; \
63 if (block.HasCaught()) \
64 return block.ReThrow(); \
75 v8::TryCatch block; \
    [all...]
  /external/clang/test/SemaCXX/
printf-block.cpp 3 int (^block) (int, const char *,...) __attribute__((__format__(__printf__,2,3))) = ^ __attribute__((__format__(__printf__,2,3))) (int arg, const char *format,...) {return 5;};
16 block(n, "%s %d", str, n); // no-warning
17 block(n, "%s %s", hncs, n); // expected-warning{{cannot pass non-POD object of type 'HasNoCStr' to variadic block; expected type from format string was 'char *'}} expected-warning{{format specifies type 'char *' but the argument has type 'int'}}
  /external/compiler-rt/BlocksRuntime/tests/
byrefcopy.c 15 #include <Block.h>
27 void (^block)(void) = ^{ ++i; };
28 //printf("original (old style) is %s\n", _Block_dump_old(block));
29 //printf("original (new style) is %s\n", _Block_dump(block));
30 void (^blockcopy)(void) = Block_copy(block);
33 callVoidVoid(block);
rdar6414583.c 11 #include <Block.h>
22 dispatch_block_t block = Block_copy(^{ c = i; }); local
24 block();
27 Block_release(block);
  /external/chromium_org/third_party/skia/src/gpu/
GrMemoryPool.cpp 46 BlockHeader* block = CreateBlock(blockSize); local
48 block->fPrev = fTail;
49 block->fNext = NULL;
51 fTail->fNext = block;
52 fTail = block;
56 // We stash a pointer to the block header, just before the allocated space,
72 BlockHeader* block = *reinterpret_cast<BlockHeader**>(ptr); local
73 if (1 == block->fLiveCount) {
74 // the head block is special, it is reset rather than deleted
75 if (fHead == block) {
106 BlockHeader* block = local
123 BlockHeader* block = fHead; local
    [all...]
GrAllocPool.cpp 15 struct GrAllocPool::Block {
16 Block* fNext;
21 static Block* Create(size_t size, Block* next) {
24 Block* block = (Block*)GrMalloc(sizeof(Block) + size); local
25 block->fNext = next;
26 block->fPtr = (char*)block + sizeof(Block)
70 Block* block = fBlock; local
109 Block* block = fBlock; local
    [all...]
  /external/skia/src/gpu/
GrMemoryPool.cpp 46 BlockHeader* block = CreateBlock(blockSize); local
48 block->fPrev = fTail;
49 block->fNext = NULL;
51 fTail->fNext = block;
52 fTail = block;
56 // We stash a pointer to the block header, just before the allocated space,
72 BlockHeader* block = *reinterpret_cast<BlockHeader**>(ptr); local
73 if (1 == block->fLiveCount) {
74 // the head block is special, it is reset rather than deleted
75 if (fHead == block) {
106 BlockHeader* block = local
123 BlockHeader* block = fHead; local
    [all...]
  /external/chromium_org/v8/src/
hydrogen-sce.cc 35 // For each loop block walk the dominator tree from the backwards branch to
40 HBasicBlock* block = graph()->blocks()->at(i); local
41 if (block->IsLoopHeader()) {
42 HBasicBlock* back_edge = block->loop_information()->GetLastBackEdge();
47 block->loop_information()->stack_check()->Eliminate();
53 if (dominator == block) break;
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/modes/gcm/
GCMUtil.java 41 static void multiply(byte[] block, byte[] val)
43 byte[] tmp = Arrays.clone(block);
67 System.arraycopy(c, 0, block, 0, 16);
125 static void shiftRight(byte[] block)
131 int b = block[i] & 0xff;
132 block[i] = (byte) ((b >>> 1) | bit);
141 static void shiftRight(byte[] block, byte[] output)
147 int b = block[i] & 0xff;
157 static void shiftRight(int[] block)
163 int b = block[i]
    [all...]
  /external/jmonkeyengine/engine/src/core-plugins/com/jme3/texture/plugins/
DXTFlipper.java 73 private static void flipDXT5Block(byte[] block, int h){
77 byte c0 = block[0];
78 byte c1 = block[1];
81 bb.put(block, 2, 6).flip();
121 bb.get(block, 2, 6).flip();
123 assert c0 == block[0] && c1 == block[1]; local
126 private static void flipDXT3Block(byte[] block, int h){
131 byte tmp0 = block[0];
132 byte tmp1 = block[1]
    [all...]
  /external/qemu/android/utils/
system.c 26 void* block; local
31 block = malloc(size);
32 if (block != NULL)
33 return block;
43 void* block; local
48 block = calloc(1, size);
49 if (block != NULL)
50 return block;
58 android_realloc( void* block, size_t size )
63 free(block);
101 void* block = _android_array_alloc(itemSize, count); local
    [all...]
  /external/fsck_msdos/
boot.c 55 u_char block[DOSBOOTBLOCKSIZE]; local
60 if (read(dosfs, block, sizeof block) < sizeof block) {
61 perror("could not read boot block");
65 if (block[510] != 0x55 || block[511] != 0xaa) {
66 pfatal("Invalid signature in boot block: %02x%02x", block[511], block[510])
    [all...]
  /external/chromium_org/third_party/mesa/src/src/mesa/main/
texcompress_etc_tmp.h 84 TAG(etc1_parse_block)(struct TAG(etc1_block) *block, const UINT8_TYPE *src)
88 block->base_colors[0][0] = (int) TAG(etc1_base_color_diff_hi)(src[0]);
89 block->base_colors[1][0] = (int) TAG(etc1_base_color_diff_lo)(src[0]);
90 block->base_colors[0][1] = (int) TAG(etc1_base_color_diff_hi)(src[1]);
91 block->base_colors[1][1] = (int) TAG(etc1_base_color_diff_lo)(src[1]);
92 block->base_colors[0][2] = (int) TAG(etc1_base_color_diff_hi)(src[2]);
93 block->base_colors[1][2] = (int) TAG(etc1_base_color_diff_lo)(src[2]);
97 block->base_colors[0][0] = (int) TAG(etc1_base_color_ind_hi)(src[0]);
98 block->base_colors[1][0] = (int) TAG(etc1_base_color_ind_lo)(src[0]);
99 block->base_colors[0][1] = (int) TAG(etc1_base_color_ind_hi)(src[1])
147 struct etc1_block block; local
    [all...]
  /external/mesa3d/src/mesa/main/
texcompress_etc_tmp.h 84 TAG(etc1_parse_block)(struct TAG(etc1_block) *block, const UINT8_TYPE *src)
88 block->base_colors[0][0] = (int) TAG(etc1_base_color_diff_hi)(src[0]);
89 block->base_colors[1][0] = (int) TAG(etc1_base_color_diff_lo)(src[0]);
90 block->base_colors[0][1] = (int) TAG(etc1_base_color_diff_hi)(src[1]);
91 block->base_colors[1][1] = (int) TAG(etc1_base_color_diff_lo)(src[1]);
92 block->base_colors[0][2] = (int) TAG(etc1_base_color_diff_hi)(src[2]);
93 block->base_colors[1][2] = (int) TAG(etc1_base_color_diff_lo)(src[2]);
97 block->base_colors[0][0] = (int) TAG(etc1_base_color_ind_hi)(src[0]);
98 block->base_colors[1][0] = (int) TAG(etc1_base_color_ind_lo)(src[0]);
99 block->base_colors[0][1] = (int) TAG(etc1_base_color_ind_hi)(src[1])
147 struct etc1_block block; local
    [all...]
  /external/apache-xml/src/main/java/org/apache/xml/utils/
SuballocatedIntVector.java 76 * block size is currently 2K, which may be overkill for
85 * Construct a IntVector, using the given block size and number
89 * @param blocksize Size of block to allocate
108 /** Construct a IntVector, using the given block size and
111 * @param blocksize Size of block to allocate
171 int[] block=m_map[index]; local
172 if(null==block)
173 block=m_map[index]=new int[m_blocksize];
174 block[offset]=value;
178 m_buildCache = block;
211 int[] block=m_map[index]; local
269 int[] block=m_map[index]; local
288 int[] block=m_map[index]; local
357 int[] block=m_map[index]; local
404 int[] block=m_map[index]; local
476 int[] block; local
529 int[] block=m_map[index]; local
    [all...]
  /libcore/luni/src/main/java/java/nio/
MappedByteBuffer.java 42 MappedByteBuffer(MemoryBlock block, int capacity, MapMode mapMode) {
43 super(capacity, block);
55 long address = block.toLong();
56 long size = block.getSize();
88 Libcore.os.mlock(block.toLong(), block.getSize());
89 Libcore.os.munlock(block.toLong(), block.getSize());
107 Libcore.os.msync(block.toLong(), block.getSize(), MS_SYNC)
    [all...]
  /external/qemu/distrib/sdl-1.2.15/src/video/riscos/
SDL_riscosmouse.c 229 char block[5]; local
239 block[0] = 3;
240 block[1] = osX & 0xFF;
241 block[2] = (osX >> 8) & 0xFF;
242 block[3] = osY & 0xFF;
243 block[4] = (osY >> 8) & 0xFF;
246 regs.r[1] = (int)block;
265 unsigned char block[9]; local
266 block[0] = 1; /* Define mouse cursor bounding block */
354 Uint8 block[5]; local
    [all...]
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/encodings/
PKCS1Encoding.java 151 byte[] block = new byte[engine.getInputBlockSize()];
155 block[0] = 0x01; // type code 1
157 for (int i = 1; i != block.length - inLen - 1; i++)
159 block[i] = (byte)0xFF;
164 random.nextBytes(block); // random fill
166 block[0] = 0x02; // type code 2
172 for (int i = 1; i != block.length - inLen - 1; i++)
174 while (block[i] == 0)
176 block[i] = (byte)random.nextInt();
181 block[block.length - inLen - 1] = 0x00; // mark the end of the paddin
    [all...]
  /external/eigen/doc/examples/
Tutorial_BlockOperations_block_assignment.cpp 14 a.block<2,2>(1,1) = m;
15 cout << "Here is now a with m copied into its central 2x2 block:" << endl << a << endl << endl;
16 a.block(0,0,2,3) = a.block(2,1,2,3);
17 cout << "Here is now a with bottom-right 2x3 block copied into top-left 2x2 block:" << endl << a << endl << endl;
  /external/valgrind/main/none/tests/amd64/
lzcnt64.c 10 ULong block[3] = { arg, 0ULL, 0ULL }; local
18 : : "r"(&block[0]) : "r11","cc","memory"
20 *res = block[1];
21 *flags = block[2] & 0x8d5;
27 ULong block[3] = { arg, 0ULL, 0ULL }; local
35 : : "r"(&block[0]) : "r11","cc","memory"
37 *res = block[1];
38 *flags = block[2] & 0x8d5;
44 ULong block[3] = { arg, 0ULL, 0ULL }; local
52 : : "r"(&block[0]) : "r11","cc","memory
    [all...]

Completed in 650 milliseconds

12 3 4 5 6 7 8 91011>>