HomeSort by relevance Sort by last modified time
    Searched defs:bytes (Results 351 - 375 of 479) sorted by null

<<11121314151617181920

  /external/wpa_supplicant_6/wpa_supplicant/src/drivers/
driver_wext.c 186 * @ssid: Buffer for the SSID; must be at least 32 bytes long
310 int bytes; local
314 bytes = strspn(spos, "0123456789abcdefABCDEF");
315 if (!bytes || (bytes & 1))
317 bytes /= 2;
319 data.assoc_info.req_ies = os_malloc(bytes);
323 data.assoc_info.req_ies_len = bytes;
324 hexstr2bin(spos, data.assoc_info.req_ies, bytes);
326 spos += bytes * 2
1492 int bytes; local
1506 int bytes; local
1520 int bytes; local
    [all...]
  /external/wpa_supplicant_8/src/drivers/
driver_wext.c 135 * @ssid: Buffer for the SSID; must be at least 32 bytes long
259 int bytes; local
264 bytes = strspn(spos, "0123456789abcdefABCDEF");
265 if (!bytes || (bytes & 1))
267 bytes /= 2;
269 req_ies = os_malloc(bytes);
271 hexstr2bin(spos, req_ies, bytes) < 0)
274 data.assoc_info.req_ies_len = bytes;
276 spos += bytes * 2
1297 int bytes; local
1312 int bytes; local
1327 int bytes; local
    [all...]
  /frameworks/base/cmds/keystore/
keystore.cpp 60 * into two bytes. The first byte is one of [+-.] which represents the first
154 * parts must be no more than VALUE_SIZE bytes. The first three bytes of the
510 * network order. Thus the maximum length of a message is 65535 bytes. */
517 uint8_t bytes[2]; local
518 if (recv(sock, &bytes[0], 1, 0) != 1 ||
519 recv(sock, &bytes[1], 1, 0) != 1) {
522 int offset = bytes[0] << 8 | bytes[1];
549 uint16_t bytes = htons(length) local
    [all...]
  /frameworks/base/core/jni/android/graphics/
Paint.cpp 744 size_t bytes = paint.breakText(text, count << 1, local
746 SkASSERT((bytes & 1) == 0);
753 return bytes >> 1;
    [all...]
  /hardware/ti/omap3/omx/audio/src/openmax_il/g711_dec/tests/
G711DecTest.c 96 int bytes[500]= {0}; variable
    [all...]
  /hardware/ti/omap3/omx/audio/src/openmax_il/g726_enc/tests/
G726EncTest.c 89 /*16 = 8 input samples of 2 bytes each*/
160 int bytes[500] = {0}; variable
182 bytes[e]=size;
184 printf("__ Allocating %d bytes on address %p, line %d file %s\n", size, p, line, s);
197 printf("__ Deleting %d bytes on address %p, line %d file %s\n", bytes[q],dp, line, s);
    [all...]
  /hardware/ti/omap3/omx/audio/src/openmax_il/nbamr_enc/tests/
AmrEncTest.c 192 int bytes[500]; variable
214 bytes[e]=size;
216 APP_IPRINT("Allocating %d bytes on address %p, line %d file %s pos %d\n", size, p, line, s, e);
229 APP_IPRINT("Deleting %d bytes on address %p, line %d file %s\n", bytes[q],dp, line, s);
    [all...]
  /hardware/ti/omap3/omx/audio/src/openmax_il/wbamr_dec/tests/
WBAmrDecTest.c 147 int bytes[500]; variable
    [all...]
  /hardware/ti/omap3/omx/audio/src/openmax_il/wbamr_enc/tests/
WbAmrEncTest.c 174 int bytes[500]; variable
196 bytes[e] = size;
198 APP_IPRINT("Allocating %d bytes on address %p, line %d file %s pos %d\n", size, p, line, s, e);
213 APP_IPRINT("Deleting %d bytes on address %p, line %d file %s\n", bytes[q], dp, line, s);
    [all...]
  /hardware/ti/omap3/omx/audio/src/openmax_il/wma_dec/tests/
WmaDecTest.c 110 int bytes[500]; variable
    [all...]
  /hardware/ti/omap3/omx/system/src/openmax_il/common/inc/
OMX_TI_Debug.h 552 int bytes[mem_array_size]; variable
576 bytes[e]=size;
579 "Allocating %d bytes on address %p, line %d file %s pos %d\n", size, p, line, s, e);
588 OMXDBG_PRINT(stderr, PRINT, 2, 0, "Deleting %d bytes on address %p, line %d file %s\n",
589 bytes[q],dp, line, s);
  /hardware/ti/omap4xxx/camera/
CameraHal.cpp 1114 int bytes; local
1190 int bytes; local
    [all...]
  /libcore/luni/src/main/native/
org_apache_harmony_xml_ExpatParser.cpp 41 InternedString() : interned(NULL), bytes(NULL) {
45 delete[] bytes;
52 const char* bytes; member in struct:InternedString
221 * to Java's String.hashCode(). This hashes the bytes while String.hashCode()
239 * representing the given UTF-8 bytes.
241 * @param bytes null-terminated string to intern
242 * @param hash of bytes
245 static InternedString* newInternedString(JNIEnv* env, const char* bytes, int hash) {
253 // Create a copy of the UTF-8 bytes.
255 char* copy = new char[strlen(bytes) + 1]
1025 const char* bytes = reinterpret_cast<const char*>(byteArray.get()); local
1036 const char* bytes = reinterpret_cast<const char*>(charArray.get()); local
1047 const char* bytes = reinterpret_cast<const char*>(xml.get()); local
    [all...]
  /packages/apps/Contacts/src/com/android/contacts/
ContactPhotoManager.java 205 final byte[] bytes; field in class:ContactPhotoManagerImpl.BitmapHolder
211 public BitmapHolder(byte[] bytes) {
212 this.bytes = bytes;
220 * An LRU cache for bitmap holders. The cache contains bytes for photos just
234 * them from bytes (the bytes are stored in {@link #mBitmapHolderCache}.
275 return value.bytes != null ? value.bytes.length : 0;
352 if (holder.bytes == null)
    [all...]
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/linux/
telephony.h 206 * always pass full size frames, any unused bytes will be padded with zeros,
261 unsigned int bytes; member in union:telephony_exception
  /prebuilt/ndk/android-ndk-r4/platforms/android-3/arch-arm/usr/include/linux/
telephony.h 168 unsigned int bytes; member in union:telephony_exception
  /prebuilt/ndk/android-ndk-r4/platforms/android-4/arch-arm/usr/include/linux/
telephony.h 168 unsigned int bytes; member in union:telephony_exception
  /prebuilt/ndk/android-ndk-r4/platforms/android-5/arch-arm/usr/include/linux/
telephony.h 168 unsigned int bytes; member in union:telephony_exception
  /prebuilt/ndk/android-ndk-r4/platforms/android-5/arch-x86/usr/include/linux/
telephony.h 168 unsigned int bytes; member in union:telephony_exception
  /prebuilt/ndk/android-ndk-r4/platforms/android-8/arch-arm/usr/include/linux/
telephony.h 168 unsigned int bytes; member in union:telephony_exception
  /prebuilt/ndk/android-ndk-r4/platforms/android-8/arch-x86/usr/include/linux/
telephony.h 168 unsigned int bytes; member in union:telephony_exception
  /prebuilt/ndk/android-ndk-r5/platforms/android-3/arch-arm/usr/include/linux/
telephony.h 168 unsigned int bytes; member in union:telephony_exception
  /prebuilt/ndk/android-ndk-r6/platforms/android-3/arch-arm/usr/include/linux/
telephony.h 168 unsigned int bytes; member in union:telephony_exception
  /prebuilt/ndk/android-ndk-r6/platforms/android-3/arch-x86/usr/include/linux/
telephony.h 168 unsigned int bytes; member in union:telephony_exception
  /system/core/libcutils/
mq.c 55 /** Listens for bytes coming from remote peers. */
56 typedef void BytesListener(Credentials credentials, char* bytes, size_t size);
72 /** A generic packet of bytes. */
73 BYTES,
83 /** Reading bytes. */
92 /** Packet size. Used for BYTES. */
110 /** Buffer of bytes. Used with BYTES. */
111 Buffer* bytes; member in union:OutgoingPacket::__anon25786
460 /** Writes packet bytes to peer. *
    [all...]

Completed in 826 milliseconds

<<11121314151617181920