HomeSort by relevance Sort by last modified time
    Searched defs:bbuf (Results 1 - 12 of 12) sorted by null

  /external/openssh/regress/unittests/bitmap/
tests.c 34 u_char bbuf[1024], bnbuf[1024]; local
84 memset(bbuf, 0xfc, sizeof(bbuf));
85 ASSERT_INT_EQ(bitmap_to_string(b, bbuf,
86 sizeof(bbuf)), 0);
87 for (n = len; n < (int)sizeof(bbuf); n++)
88 ASSERT_U8_EQ(bbuf[n], 0xfc);
92 ASSERT_MEM_EQ(bbuf, bnbuf, len);
  /external/tensorflow/tensorflow/lite/java/src/test/java/org/tensorflow/lite/
NativeInterpreterWrapperTest.java 277 ByteBuffer bbuf = ByteBuffer.allocateDirect(2 * 8 * 8 * 3); local
278 bbuf.order(ByteOrder.nativeOrder());
279 bbuf.rewind();
283 bbuf.put((byte) 0xe0);
284 bbuf.put((byte) 0x4f);
285 bbuf.put((byte) 0xd0);
289 bbuf.rewind();
290 Object[] inputs = {bbuf};
309 ByteBuffer bbuf = ByteBuffer.allocateDirect(4 * 8 * 8 * 3 * 4); local
310 bbuf.order(ByteOrder.nativeOrder())
347 ByteBuffer bbuf = ByteBuffer.allocateDirect(2 * 7 * 8 * 3); local
    [all...]
  /external/tensorflow/tensorflow/java/src/test/java/org/tensorflow/
TensorTest.java 181 ByteBuffer bbuf = ByteBuffer.allocate(1024).order(ByteOrder.nativeOrder()); local
183 clearBuffer(bbuf); // FLOAT
184 tfloats.writeTo(bbuf);
185 assertEquals(tfloats.numBytes(), bbuf.position());
186 flipBuffer(bbuf);
187 assertEquals(floats[0], bbuf.asFloatBuffer().get(0), EPSILON);
188 clearBuffer(bbuf); // DOUBLE
189 tdoubles.writeTo(bbuf);
190 assertEquals(tdoubles.numBytes(), bbuf.position());
191 flipBuffer(bbuf);
    [all...]
  /external/icu/icu4c/source/test/cintltst/
cdateintervalformattest.c 296 char bbuf[kSizeBBuf]; local
306 u_strToUTF8(bbuf, kSizeBBuf, NULL, ubuf, ulen, &status);
311 fpos.beginIndex, fpos.endIndex, bbuf);
cnumtst.c 2609 char bbuf[kUBufMax*2]; local
    [all...]
  /external/ImageMagick/coders/
wpg.c 453 bbuf,
477 bbuf=(unsigned char) c;
478 RunCount=bbuf & 0x7F;
479 if(bbuf & 0x80)
483 bbuf=ReadBlobByte(image);
484 for(i=0;i<(int) RunCount;i++) InsertByte(bbuf);
580 bbuf,
595 bbuf=ReadBlobByte(image);
597 switch(bbuf)
632 for(bbuf=0; bbuf < SampleSize; bbuf++
449 bbuf, local
576 bbuf, local
    [all...]
  /external/mdnsresponder/mDNSWindows/
mDNSWin32.h 64 uint8_t bbuf[ 4192 ]; member in struct:TCPSocket_struct
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/camera/its/
ItsService.java 707 public void sendResponse(String tag, String str, JSONObject obj, ByteBuffer bbuf)
718 if (bbuf != null) {
719 jsonObj.put("bufValueSize", bbuf.capacity());
727 if (bbuf != null) {
728 mInflightImageSizes.add(bbuf.capacity());
729 mSocketWriteQueue.put(bbuf);
749 public void sendResponseCaptureBuffer(String tag, ByteBuffer bbuf)
751 sendResponse(tag, null, null, bbuf);
    [all...]
  /external/icu/icu4c/source/test/intltest/
tmsgfmt.cpp 1017 char bbuf[96]; local
    [all...]
  /device/linaro/bootloader/edk2/MdeModulePkg/Universal/RegularExpressionDxe/Oniguruma/
regcomp.c 143 onig_bbuf_init(BBuf* buf, int size)
558 add_multi_byte_cclass(BBuf* mbuf, regex_t* reg)
6183 BBuf* bbuf = NCCLASS(node)->mbuf; local
    [all...]
regparse.c 103 bbuf_free(BBuf* bbuf)
105 if (IS_NOT_NULL(bbuf)) {
106 if (IS_NOT_NULL(bbuf->p)) xfree(bbuf->p);
107 xfree(bbuf);
112 bbuf_clone(BBuf** rto, BBuf* from)
115 BBuf *to;
117 *rto = to = (BBuf* )xmalloc(sizeof(BBuf));
1185 BBuf* bbuf; local
1692 BBuf* bbuf; local
1710 BBuf* bbuf; local
    [all...]
  /external/guice/extensions/struts2/lib/
jetty-6.1.0.jar 

Completed in 3556 milliseconds