HomeSort by relevance Sort by last modified time
    Searched full:concated (Results 1 - 15 of 15) sorted by null

  /packages/apps/Bluetooth/src/com/android/bluetooth/gatt/
AdvertiseHelper.java 82 byte[] concated = new byte[dataLen];
84 concated[0] = (byte) (manufacturerId & 0xFF);
85 concated[1] = (byte) ((manufacturerId >> 8) & 0xFF);
87 System.arraycopy(manufacturerData, 0, concated, 2, manufacturerData.length);
90 ret.write(concated.length + 1);
92 ret.write(concated, 0, concated.length);
145 byte[] concated = new byte[dataLen];
147 System.arraycopy(uuid, 0, concated, 0, uuidLen);
150 System.arraycopy(serviceData, 0, concated, uuidLen, serviceData.length)
    [all...]
ScanFilterQueue.java 214 byte[] concated = new byte[dataLen];
215 System.arraycopy(uuid, 0, concated, 0, uuid.length);
217 System.arraycopy(serviceData, 0, concated, uuid.length, serviceData.length);
219 return concated;
  /external/tensorflow/tensorflow/core/framework/
tensor_util_test.cc 166 Tensor concated; local
167 TF_ASSERT_OK(tensor::Concat(to_concat, &concated));
168 ASSERT_EQ(TensorShape({total_size, 2}), concated.shape());
171 EXPECT_EQ(2 * i + j, concated.matrix<int32>()(i, j));
  /external/skia/src/core/
SkBitmapDevice.h 88 * pre-concated with the current matrix.
SkDraw.h 54 * pre-concated with the current matrix.
SkDevice.h 195 * pre-concated with the current matrix.
  /external/skqp/src/core/
SkBitmapDevice.h 88 * pre-concated with the current matrix.
SkDraw.h 53 * pre-concated with the current matrix.
SkDevice.h 195 * pre-concated with the current matrix.
  /device/linaro/bootloader/edk2/EmbeddedPkg/Ebl/
EfiDevice.c 861 // Case when we have concated the filename to the destination directory
  /packages/apps/Messaging/src/com/android/messaging/datamodel/data/
ConversationMessageData.java 187 * Takes a group-concated and quoted string and decomposes it into its constituent
    [all...]
  /external/tensorflow/tensorflow/python/training/
saver_test.py     [all...]
  /external/llvm/lib/TableGen/
Record.cpp 808 PrintFatalError("Concated Dag operators do not match!");
    [all...]
  /external/swiftshader/third_party/LLVM/lib/TableGen/
Record.cpp 896 throw "Concated Dag operators do not match!";
    [all...]
  /external/tensorflow/tensorflow/contrib/rnn/python/ops/
rnn_cell.py     [all...]

Completed in 4483 milliseconds