HomeSort by relevance Sort by last modified time
    Searched defs:bytes (Results 1176 - 1200 of 3342) sorted by null

<<41424344454647484950>>

  /external/webrtc/webrtc/modules/audio_coding/codecs/ilbc/
defines.h 162 uint16_t bytes[25]; member in struct:IlbcEncoder_
  /external/webrtc/webrtc/modules/audio_device/android/
audio_device_unittest.cc 581 const size_t bytes = test::GetFileSize(file_name); local
582 PRINT("file size: %" PRIuS " [bytes]\n", bytes);
583 PRINT("file size: %" PRIuS " [samples]\n", bytes / kBytesPerSample);
585 static_cast<int>(bytes / (sample_rate * kBytesPerSample));
    [all...]
  /external/webrtc/webrtc/p2p/base/
stun.h 42 STUN_ATTR_MESSAGE_INTEGRITY = 0x0008, // ByteString, 20 bytes
387 StunByteStringAttribute(uint16_t type, const void* bytes, size_t length);
395 const char* bytes() const { return bytes_; } function in class:cricket::StunByteStringAttribute
398 void CopyBytes(const char* bytes); // uses strlen
399 void CopyBytes(const void* bytes, size_t length);
408 void SetBytes(char* bytes, size_t length);
513 STUN_ATTR_MAGIC_COOKIE = 0x000f, // ByteString, 4 bytes
567 STUN_ATTR_RESERVATION_TOKEN = 0x0022, // ByteString, 8 bytes.
  /external/wpa_supplicant_8/src/drivers/
driver_wext.c 123 * @ssid: Buffer for the SSID; must be at least 32 bytes long
250 int bytes; local
255 bytes = strspn(spos, "0123456789abcdefABCDEF");
256 if (!bytes || (bytes & 1))
258 bytes /= 2;
260 req_ies = os_malloc(bytes);
262 hexstr2bin(spos, req_ies, bytes) < 0)
265 data.assoc_info.req_ies_len = bytes;
267 spos += bytes * 2
1378 int bytes; local
1393 int bytes; local
1408 int bytes; local
    [all...]
  /frameworks/base/services/net/java/android/net/ip/
IpReachabilityMonitor.java 189 final ByteBuffer bytes = nlSocket.recvMessage(IO_TIMEOUT); local
191 final NetlinkMessage response = NetlinkMessage.parse(bytes);
204 bytes.position(0);
205 errmsg = "raw bytes: " + NetlinkConstants.hexify(bytes);
  /frameworks/native/cmds/atrace/
atrace.cpp 883 fprintf(stderr, "read returned %zd bytes err %d (%s)\n",
966 size_t bytes = bufSize - zs.avail_out; local
967 result = write(outFd, out.get(), bytes);
968 if ((size_t)result < bytes) {
    [all...]
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/lang/
String2Test.java 355 assertTrue("Returned incorrect bytes", sbytes[i] == (byte) hw1.charAt(i));
386 "Wrong bytes UTF8: " + Integer.toHexString(i),
397 String bytes = null; local
399 bytes = new String(result, "UTF8");
400 assertTrue("Wrong UTF8 byte length: " + bytes.length() + "("
401 + i + ")", bytes.length() == 1);
404 + Integer.toHexString(bytes.charAt(0)) + " ("
405 + i + ")", bytes.charAt(0) == i);
410 byte[] bytes = new byte[1];
412 bytes[0] = (byte) i
    [all...]
  /libcore/luni/src/main/native/
org_apache_harmony_xml_ExpatParser.cpp 44 InternedString() : interned(NULL), bytes(NULL) {
48 delete[] bytes;
55 const char* bytes; member in struct:InternedString
234 * to Java's String.hashCode(). This hashes the bytes while String.hashCode()
252 * representing the given UTF-8 bytes.
254 * @param bytes null-terminated string to intern
255 * @param hash of bytes
258 static InternedString* newInternedString(JNIEnv* env, const char* bytes, int hash) {
266 // Create a copy of the UTF-8 bytes.
268 char* copy = new char[strlen(bytes) + 1]
1040 const char* bytes = reinterpret_cast<const char*>(byteArray.get()); local
1051 const char* bytes = reinterpret_cast<const char*>(charArray.get()); local
1062 const char* bytes = reinterpret_cast<const char*>(xml.get()); local
    [all...]
  /libcore/ojluni/src/main/native/
UnixNativeDispatcher.c 313 jbyteArray bytes; local
323 bytes = (*env)->NewByteArray(env, len);
324 if (bytes != NULL) {
325 (*env)->SetByteArrayRegion(env, bytes, 0, len, (jbyte*)msg);
327 return bytes;
717 jbyteArray bytes = (*env)->NewByteArray(env, len); local
718 if (bytes != NULL) {
719 (*env)->SetByteArrayRegion(env, bytes, 0, len, (jbyte*)(ptr->d_name));
721 return bytes;
    [all...]
  /packages/apps/Settings/src/com/android/settings/datausage/
BillingCycleSettings.java 231 setupPicker((EditText) mView.findViewById(R.id.bytes),
247 final long bytes = isLimit ? editor.getPolicyLimitBytes(template) local
251 if (bytes > 1.5f * GB_IN_BYTES) {
252 final String bytesText = formatText(bytes / (float) GB_IN_BYTES);
258 final String bytesText = formatText(bytes / (float) MB_IN_BYTES);
281 EditText bytesField = (EditText) mView.findViewById(R.id.bytes);
288 final long bytes = (long) (Float.valueOf(bytesString) local
292 final long correctedBytes = Math.min(MAX_DATA_LIMIT_BYTES, bytes);
  /packages/apps/TV/src/com/android/tv/tuner/data/
Cea708Data.java 121 public final byte[] bytes; field in class:Cea708Data.CcPacket
125 public CcPacket(byte[] bytes, int ccCount, long pts) {
126 this.bytes = bytes;
  /packages/services/Car/service/src/com/android/car/hal/
VehicleHal.java 448 return (T) toByteArray(propValue.value.bytes);
678 if (value.value.bytes.size() > MAX_BYTE_SIZE) {
679 Object[] bytes = Arrays.copyOf(value.value.bytes.toArray(), MAX_BYTE_SIZE); local
680 sb.append(",bytes: ").append(Arrays.toString(bytes));
682 sb.append(",bytes: ").append(Arrays.toString(value.value.bytes.toArray()));
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/linux/
telephony.h 202 * always pass full size frames, any unused bytes will be padded with zeros,
257 unsigned int bytes; member in union:telephony_exception
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/linux/
rds.h 206 uint64_t bytes; member in struct:rds_iovec
telephony.h 202 * always pass full size frames, any unused bytes will be padded with zeros,
257 unsigned int bytes; member in union:telephony_exception
  /prebuilts/go/darwin-x86/test/
sinit.go 30 bytes = []byte("hello, world")
119 // copy_bytes = bytes
29 bytes = []byte("hello, world") var
  /prebuilts/go/linux-x86/test/
sinit.go 30 bytes = []byte("hello, world")
119 // copy_bytes = bytes
29 bytes = []byte("hello, world") var
  /prebuilts/gradle-plugin/com/android/tools/lint/lint-tests/25.2.0/
lint-tests-25.2.0.jar 
  /prebuilts/gradle-plugin/com/android/tools/lint/lint-tests/25.2.0-alpha7/
lint-tests-25.2.0-alpha7.jar 
  /prebuilts/gradle-plugin/com/android/tools/lint/lint-tests/25.2.0-beta1/
lint-tests-25.2.0-beta1.jar 
  /prebuilts/gradle-plugin/com/android/tools/lint/lint-tests/25.2.0-beta2/
lint-tests-25.2.0-beta2.jar 
  /prebuilts/gradle-plugin/com/android/tools/lint/lint-tests/25.2.0-beta3/
lint-tests-25.2.0-beta3.jar 
  /prebuilts/gradle-plugin/com/android/tools/lint/lint-tests/25.2.0-rc1/
lint-tests-25.2.0-rc1.jar 
  /prebuilts/gradle-plugin/com/android/tools/lint/lint-tests/25.2.0-rc2/
lint-tests-25.2.0-rc2.jar 
  /prebuilts/gradle-plugin/com/android/tools/lint/lint-tests/25.2.1/
lint-tests-25.2.1.jar 

Completed in 526 milliseconds

<<41424344454647484950>>