HomeSort by relevance Sort by last modified time
    Searched refs:bb (Results 51 - 75 of 458) sorted by null

1 23 4 5 6 7 8 91011>>

  /external/speex/libspeex/
fixed_bfin.h 42 spx_word32_t res, bb; local
43 bb = b;
59 : "m" (a), "m" (bb)
67 spx_word32_t res, bb; local
68 bb = b;
86 : "m" (a), "m" (bb)
  /external/valgrind/main/none/tests/s390x/
troo.stdout.exp 6 the translated values are ff bb dd ab ca
8 the translated values are ff bb dd ab ca bc cc da ea aa
14 the translated values are ff bb dd ab ca bc cc da
  /dalvik/dx/src/com/android/dx/cf/code/
ByteBlockList.java 70 * @param bb {@code null-ok;} the value to store
72 public void set(int n, ByteBlock bb) {
73 super.set(n, bb);
  /external/mp4parser/isoparser/src/main/java/com/coremedia/iso/
AbstractBoxParser.java 65 ByteBuffer bb = ByteBuffer.allocate(8); local
66 byteChannel.read(bb);
67 bb.rewind();
68 size = IsoTypeReader.readUInt64(bb);
81 ByteBuffer bb = ByteBuffer.allocate(16); local
82 byteChannel.read(bb);
83 bb.rewind();
84 usertype = bb.array();
  /external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/boxes/mp4/objectdescriptors/
ExtensionProfileLevelDescriptor.java 36 public void parseDetail(ByteBuffer bb) throws IOException {
39 bb.get(bytes);
DecoderConfigDescriptor.java 63 public void parseDetail(ByteBuffer bb) throws IOException {
64 objectTypeIndication = IsoTypeReader.readUInt8(bb);
66 int data = IsoTypeReader.readUInt8(bb);
70 bufferSizeDB = IsoTypeReader.readUInt24(bb);
71 maxBitRate = IsoTypeReader.readUInt32(bb);
72 avgBitRate = IsoTypeReader.readUInt32(bb);
77 if (bb.remaining() > 2) { //1byte tag + at least 1byte size
78 final int begin = bb.position();
79 descriptor = ObjectDescriptorFactory.createFrom(objectTypeIndication, bb);
80 final int read = bb.position() - begin;
    [all...]
  /external/srec/srec/cfront/
log_tabl.c 122 int ii, aa, bb, cc, value, shift; local
137 bb = value;
139 value = aa + bb + cc;
143 bb = (bb >> 1);
147 bb += cc;
150 value = aa + bb + cc;
152 return (bb);
  /external/valgrind/main/coregrind/
m_translate.c 278 /* Set up BB */
279 IRSB* bb = emptyIRSB(); local
280 bb->tyenv = deepCopyIRTypeEnv(sb_in->tyenv);
281 bb->next = deepCopyIRExpr(sb_in->next);
282 bb->jumpkind = sb_in->jumpkind;
283 bb->offsIP = sb_in->offsIP;
340 addStmtToIRSB( bb, IRStmt_Dirty(dcall) ); \
370 addStmtToIRSB( bb, IRStmt_Dirty(dcall) ); \
398 vg_assert( typeOfIRTemp(bb->tyenv, st->Ist.WrTmp.tmp) == typeof_SP );
400 addStmtToIRSB( bb, st )
    [all...]
  /dalvik/vm/compiler/
Utility.cpp 159 BasicBlock *bb; local
184 bb = (BasicBlock *) dvmGrowableListIteratorNext(&iterator);
185 if (bb == NULL) break;
187 bb->id,
188 blockTypeNames[bb->blockType],
189 bb->startOffset,
190 bb->lastMIRInsn ? bb->lastMIRInsn->offset : bb->startOffset,
191 bb->lastMIRInsn ? "" : " empty")
378 BasicBlock *bb = local
    [all...]
  /external/dropbear/libtomcrypt/src/hashes/
rmd256.c 83 ulong32 aa,bb,cc,dd,aaa,bbb,ccc,ddd,tmp,X[16]; local
93 bb = md->rmd256.state[1];
102 FF(aa, bb, cc, dd, X[ 0], 11);
103 FF(dd, aa, bb, cc, X[ 1], 14);
104 FF(cc, dd, aa, bb, X[ 2], 15);
105 FF(bb, cc, dd, aa, X[ 3], 12);
106 FF(aa, bb, cc, dd, X[ 4], 5);
107 FF(dd, aa, bb, cc, X[ 5], 8);
108 FF(cc, dd, aa, bb, X[ 6], 7);
109 FF(bb, cc, dd, aa, X[ 7], 9)
    [all...]
  /external/jmonkeyengine/engine/src/test/jme3test/texture/
TestTexture3D.java 43 BoundingBox bb = (BoundingBox) sphere.getBound(); local
44 Vector3f min = bb.getMin(null);
45 float[] ext = new float[]{bb.getXExtent() * 2, bb.getYExtent() * 2, bb.getZExtent() * 2};
91 ByteBuffer bb = BufferUtils.createByteBuffer(10 * 10 * 10 * 3);//all data must be inside one buffer local
94 bb.put((byte) (255f*i/10f));
95 bb.put((byte) (255f*i/10f));
96 bb.put((byte) (255f));
99 bb.rewind()
    [all...]
  /external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/
AbstractBox.java 122 ByteBuffer bb = ByteBuffer.allocate(l2i(getSize()));
123 getHeader(bb);
125 getContent(bb);
129 bb.put(deadBytes);
134 bb.put(content);
136 bb.rewind();
137 os.write(bb);
225 ByteBuffer bb = ByteBuffer.allocate(l2i(getContentSize() + (deadBytes != null ? deadBytes.limit() : 0))); local
226 getContent(bb);
230 bb.put(deadBytes)
    [all...]
  /external/valgrind/main/callgrind/
bbcc.c 40 /* BBCC table (key is BB/Context), per thread, resizable */
89 CLG_DEBUG(1, " zero_bbcc: BB %#lx, Cxt %d "
91 bb_addr(bbcc->bb),
99 for(i=0;i<bbcc->bb->cost_count;i++)
101 for(i=0;i <= bbcc->bb->cjmp_count;i++) {
136 * - address of BB structure (unique, as never freed)
141 * counters to be changed in the execution of a BB.
145 UInt bbcc_hash_idx(BB* bb, Context* cxt, UInt size)
147 CLG_ASSERT(bb != 0)
    [all...]
  /dalvik/vm/compiler/codegen/arm/armv7-a-neon/
MethodCodegenDriver.cpp 41 BasicBlock *bb)
109 BasicBlock *bb, ArmLIR *labelList)
112 bool backwardBranch = (bb->taken->startOffset <= mir->offset);
119 genUnconditionalBranch(cUnit, &labelList[bb->taken->id]);
139 static bool handleMethodFmt11x(CompilationUnit *cUnit, MIR *mir, BasicBlock *bb,
145 genMethodInflateAndPunt(cUnit, mir, bb);
177 static bool handleMethodFmt21t(CompilationUnit *cUnit, MIR *mir, BasicBlock *bb,
180 return handleFmt21t(cUnit, mir, bb, labelList);
198 static bool handleMethodFmt22t(CompilationUnit *cUnit, MIR *mir, BasicBlock *bb,
201 return handleFmt22t(cUnit, mir, bb, labelList)
    [all...]
  /dalvik/tests/004-annotations/src/android/test/anno/
AnnoArrayField.java 11 byte[] bb() default {};
  /external/compiler-rt/make/test/
test-util.mk 11 streq_t4 = $(call streq,bb,b)
13 streq_t5 = $(call streq,b,bb)
15 streq_t6 = $(call streq,bb,bb)
26 strneq_t11 = $(call strneq,bb,b)
28 strneq_t12 = $(call strneq,b,bb)
30 strneq_t13 = $(call strneq,bb,bb)
  /external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/boxes/mp4/samplegrouping/
UnknownEntry.java 52 ByteBuffer bb = content.duplicate(); local
53 bb.rewind();
54 byte[] b = new byte[bb.limit()];
55 bb.get(b);
  /ndk/sources/host-tools/sed-4.2.1/doc/
groupify.sed 30 bb
59 /^@end/ !bb
  /external/guava/guava/src/com/google/common/hash/
AbstractStreamingHashFunction.java 114 protected abstract void process(ByteBuffer bb);
124 protected void processRemaining(ByteBuffer bb) {
125 bb.position(bb.limit()); // move at the end
126 bb.limit(chunkSize + 7); // get ready to pad with longs
127 while (bb.position() < chunkSize) {
128 bb.putLong(0);
130 bb.limit(chunkSize);
131 bb.flip();
132 process(bb);
    [all...]
  /external/apache-harmony/nio_char/src/test/java/tests/api/java/nio/charset/
AbstractCharsetTestCase.java 140 ByteBuffer bb = this.testingCharset.encode(input); local
142 bb.rewind();
143 while (bb.hasRemaining() && i < output.length) {
144 assertEquals(output[i], bb.get());
147 assertFalse(bb.hasRemaining());
  /external/skia/legacy/src/core/
SkFloat.cpp 304 int bb = rand.nextS() >> 14; local
306 b.setInt(bb);
308 SkASSERT(b.getInt() == bb);
312 SkASSERT(cc == aa + bb);
316 SkASSERT(cc == aa - bb);
319 bb >>= 5;
321 b.setInt(bb);
324 SkASSERT(cc == aa * bb);
332 bb = rand.nextS() >> 11;
333 b.setFixed(bb);
    [all...]
  /external/skia/src/core/
SkFloat.cpp 301 int bb = rand.nextS() >> 14; local
303 b.setInt(bb);
305 SkASSERT(b.getInt() == bb);
309 SkASSERT(cc == aa + bb);
313 SkASSERT(cc == aa - bb);
316 bb >>= 5;
318 b.setInt(bb);
321 SkASSERT(cc == aa * bb);
329 bb = rand.nextS() >> 11;
330 b.setFixed(bb);
    [all...]
  /external/mp4parser/isoparser/src/main/java/com/coremedia/iso/boxes/sampleentry/
TextSampleEntry.java 234 public void getContent(ByteBuffer bb) {
235 IsoTypeWriter.writeUInt16(bb, top);
236 IsoTypeWriter.writeUInt16(bb, left);
237 IsoTypeWriter.writeUInt16(bb, bottom);
238 IsoTypeWriter.writeUInt16(bb, right);
287 public void getContent(ByteBuffer bb) {
288 IsoTypeWriter.writeUInt16(bb, startChar);
289 IsoTypeWriter.writeUInt16(bb, endChar);
290 IsoTypeWriter.writeUInt16(bb, fontId);
291 IsoTypeWriter.writeUInt8(bb, faceStyleFlags)
    [all...]
  /external/apache-harmony/x-net/src/test/api/java/org/apache/harmony/xnet/tests/javax/net/ssl/
SSLEngineTest.java 96 ByteBuffer bb = ByteBuffer.allocate(10); local
99 e.wrap(bbN, bb);
100 e.wrap(bb, bbN);
102 ByteBuffer roBb = bb.asReadOnlyBuffer();
104 e.wrap(bb, roBb);
126 ByteBuffer bb = ByteBuffer.allocate(10); local
130 e.wrap(bbNA, bb);
135 e.wrap(bbA, bb);
138 ByteBuffer roBb = bb.asReadOnlyBuffer();
187 ByteBuffer bb = ByteBuffer.allocate(10) local
204 ByteBuffer bb = ByteBuffer.allocate(10); local
229 ByteBuffer bb = ByteBuffer.allocate(10); local
259 ByteBuffer bb = ByteBuffer.allocate(10); local
318 ByteBuffer bb = ByteBuffer.allocate(10); local
337 ByteBuffer bb = ByteBuffer.allocate(10); local
    [all...]
  /external/skia/tests/
Sk64Test.cpp 84 int bb = rand.nextS() >> 1; local
86 b.set(bb);
87 REPORTER_ASSERT(reporter, a.get32() == aa && b.get32() == bb);
88 c = a; c.add(bb);
89 REPORTER_ASSERT(reporter, c.get32() == aa + bb);
90 c = a; c.add(-bb);
91 REPORTER_ASSERT(reporter, c.get32() == aa - bb);
93 REPORTER_ASSERT(reporter, c.get32() == aa + bb);
95 REPORTER_ASSERT(reporter, c.get32() == aa - bb);
116 SkLONGLONG bb = asLL(b) local
    [all...]

Completed in 336 milliseconds

1 23 4 5 6 7 8 91011>>