HomeSort by relevance Sort by last modified time
    Searched refs:concated (Results 1 - 4 of 4) 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/tensorflow/tensorflow/python/training/
saver_test.py     [all...]

Completed in 174 milliseconds