HomeSort by relevance Sort by last modified time
    Searched full:size (Results 351 - 375 of 15447) sorted by null

<<11121314151617181920>>

  /hardware/broadcom/wlan/bcm4329/src/include/
linux_osl.h 53 #define OSL_PCMCIA_READ_ATTR(osh, offset, buf, size) \
54 osl_pcmcia_read_attr((osh), (offset), (buf), (size))
55 #define OSL_PCMCIA_WRITE_ATTR(osh, offset, buf, size) \
56 osl_pcmcia_write_attr((osh), (offset), (buf), (size))
57 extern void osl_pcmcia_read_attr(osl_t *osh, uint offset, void *buf, int size);
58 extern void osl_pcmcia_write_attr(osl_t *osh, uint offset, void *buf, int size);
61 #define OSL_PCI_READ_CONFIG(osh, offset, size) \
62 osl_pci_read_config((osh), (offset), (size))
63 #define OSL_PCI_WRITE_CONFIG(osh, offset, size, val) \
64 osl_pci_write_config((osh), (offset), (size), (val)
    [all...]
  /build/tools/apriori/
debug.h 45 static inline void *MALLOC(unsigned int size) {
46 void *m = malloc(size);
47 FAILIF(NULL == m, "malloc(%d) failed!\n", size);
57 static inline void *REALLOC(void *ptr, unsigned int size) {
58 void *m = realloc(ptr, size);
59 FAILIF(NULL == m, "realloc(%p, %d) failed!\n", ptr, size);
  /build/tools/iself/
debug.h 47 static inline void *MALLOC(unsigned int size) {
48 void *m = malloc(size);
49 FAILIF(NULL == m, "malloc(%d) failed!\n", size);
59 static inline void *REALLOC(void *ptr, unsigned int size) {
60 void *m = realloc(ptr, size);
61 FAILIF(NULL == m, "realloc(%p, %d) failed!\n", ptr, size);
  /build/tools/isprelinked/
debug.h 45 static inline void *MALLOC(unsigned int size) {
46 void *m = malloc(size);
47 FAILIF(NULL == m, "malloc(%d) failed!\n", size);
57 static inline void *REALLOC(void *ptr, unsigned int size) {
58 void *m = realloc(ptr, size);
59 FAILIF(NULL == m, "realloc(%p, %d) failed!\n", ptr, size);
  /build/tools/lsd/
debug.h 45 static inline void *MALLOC(unsigned int size)
47 void *m = malloc(size);
48 FAILIF(NULL == m, "malloc(%d) failed!\n", size);
59 static inline void *REALLOC(void *ptr, unsigned int size)
61 void *m = realloc(ptr, size);
62 FAILIF(NULL == m, "realloc(%p, %d) failed!\n", ptr, size);
  /build/tools/soslim/
debug.h 45 static inline void *MALLOC(unsigned int size) {
46 void *m = malloc(size);
47 FAILIF(NULL == m, "malloc(%d) failed!\n", size);
57 static inline void *REALLOC(void *ptr, unsigned int size) {
58 void *m = realloc(ptr, size);
59 FAILIF(NULL == m, "realloc(%p, %d) failed!\n", ptr, size);
  /dalvik/libcore/crypto/src/main/java/javax/crypto/spec/
DHGenParameterSpec.java 36 * the size of the <i>prime modulus</i> in bits.
38 * the size of the <i>random exponent</i> in bits.
46 * Returns the size of the <i>prime modulus</i> in bits.
48 * @return the size of the prime modulus in bits.
55 * Returns the size of the <i>random exponent</i> in bits.
57 * @return the size of the random exponent in bits.
  /dalvik/libcore/crypto/src/test/java/org/apache/harmony/crypto/tests/javax/crypto/func/
MacThread.java 28 int size = 256; local
29 byte[] src1 = new byte[size];
30 byte[] src2 = new byte[size];
31 byte[] src3 = new byte[size];
34 for (i = 0; i < size; i++) {
37 src3[i] = (byte)(size - i - 1);
  /dalvik/libcore/include/
LocalArray.h 24 * A fixed-size array with a size hint. That number of bytes will be allocated
35 * Allocates a new fixed-size array of the given size. If this size is
58 size_t size() { return mSize; } function in class:LocalArray
  /dalvik/libcore/security/src/main/java/org/bouncycastle/crypto/generators/
DHParametersGenerator.java 10 private int size; field in class:DHParametersGenerator
20 * @param size bit length for the prime p
25 int size,
29 this.size = size;
43 int qLength = size - 1;
  /development/pdk/docs/community/
community_toc.cs 8 <li><a href="http://groups.google.com/group/android-platform">android-platform</a> <span style="font-size: 75%; font-variant: small-caps">[off-site]</span></li>
9 <li><a href="http://groups.google.com/group/android-porting">android-porting</a> <span style="font-size: 75%; font-variant: small-caps">[off-site]</span></li>
10 <li><a href="http://groups.google.com/group/android-kernel">android-kernel</a> <span style="font-size: 75%; font-variant: small-caps">[off-site]</span></li>
11 <li><a href="http://groups.google.com/group/repo-discuss">repo-discuss</a> <span style="font-size: 75%; font-variant: small-caps">[off-site]</span></li>
12 <li><a href="http://groups.google.com/group/android-framework">android-framework</a> <span style="font-size: 75%; font-variant: small-caps">[off-site]</span></li>
16 <li><a href="http://developer.android.com/community/index.html">App Developer Groups</a> <span style="font-size: 75%; font-variant: small-caps">[off-site]</span></li>
  /development/tools/yuv420sp2rgb/
debug.h 47 static inline void *MALLOC(unsigned int size) {
48 void *m = malloc(size);
49 FAILIF(NULL == m, "malloc(%d) failed!\n", size);
59 static inline void *REALLOC(void *ptr, unsigned int size) {
60 void *m = realloc(ptr, size);
61 FAILIF(NULL == m, "realloc(%p, %d) failed!\n", ptr, size);
  /external/dropbear/libtomcrypt/src/headers/
tomcrypt.h 22 /* max size of either a cipher/hash block or symmetric key [largest of the two] */
25 /* descriptor table size */
26 /* Dropbear change - this should be smaller, saves some size */
35 CRYPT_INVALID_KEYSIZE, /* Invalid key size given */
61 CRYPT_PK_INVALID_SIZE, /* Invalid size input for PK parameters */
63 CRYPT_INVALID_PRIME_SIZE,/* Invalid size of prime requested */
  /external/dropbear/libtomcrypt/src/pk/asn1/der/sequence/
der_encode_sequence_ex.c 27 @param outlen [in/out] The size of the output
35 unsigned long size, x, y, z, i; local
42 /* get size of output that will be required */
46 size = list[i].size;
76 if ((err = der_length_bit_string(size, &x)) != CRYPT_OK) {
83 if ((err = der_length_octet_string(size, &x)) != CRYPT_OK) {
94 if ((err = der_length_object_identifier(data, size, &x)) != CRYPT_OK) {
101 if ((err = der_length_ia5_string(data, size, &x)) != CRYPT_OK) {
108 if ((err = der_length_printable_string(data, size, &x)) != CRYPT_OK)
    [all...]
  /external/dropbear/libtommath/
bn_mp_radix_size.c 18 /* returns size of ASCII reprensentation */
19 int mp_radix_size (mp_int * a, int radix, int *size)
25 *size = 0;
29 *size = mp_count_bits (a) + (a->sign == MP_NEG ? 1 : 0) + 1;
39 *size = 2;
70 *size = digs + 1;
  /external/e2fsprogs/misc/
partinfo.c 23 #define BLKGETSIZE _IO(0x12,96) /* return device size */
36 unsigned long size; local
66 if (ioctl(fd, BLKGETSIZE, &size) < 0) {
72 printf("%s: h=%3d s=%3d c=%4d start=%8d size=%8lu end=%8d\n",
75 (int)loc.start, size, (int) loc.start + size -1);
  /external/elfcopy/
debug.h 45 static inline void *MALLOC(unsigned int size) {
46 void *m = malloc(size);
47 FAILIF(NULL == m, "malloc(%d) failed!\n", size);
57 static inline void *REALLOC(void *ptr, unsigned int size) {
58 void *m = realloc(ptr, size);
59 FAILIF(NULL == m, "realloc(%p, %d) failed!\n", ptr, size);
  /external/opencore/codecs_v2/video/m4v_h263/enc/src/
m4venc_oscl.h 34 #define M4VENC_MALLOC(size) oscl_malloc(size)
37 #define M4VENC_MEMSET(ptr,val,size) oscl_memset(ptr,val,size)
38 #define M4VENC_MEMCPY(dst,src,size) oscl_memcpy(dst,src,size)
  /external/webkit/WebCore/html/canvas/
WebGLActiveInfo.h 37 static PassRefPtr<WebGLActiveInfo> create(const String& name, unsigned type, int size)
39 return adoptRef(new WebGLActiveInfo(name, type, size));
43 int size() const { return m_size; } function in class:WebCore::WebGLActiveInfo
46 WebGLActiveInfo(const String& name, unsigned type, int size)
49 , m_size(size)
53 ASSERT(size);
  /external/webkit/WebCore/platform/animation/
AnimationList.cpp 28 for (i = 0; i < size() && animation(i)->test(); ++i) { } \
29 if (i < size() && i != 0) { \
30 for (size_t j = 0; i < size(); ++i, ++j) \
49 if (size() != o.size())
51 for (size_t i = 0; i < size(); ++i)
  /external/webkit/WebKit/qt/tests/hybridPixmap/
widget.ui 38 <size>
41 </size>
44 <size>
47 </size>
74 <size>
77 </size>
  /external/zlib/contrib/minizip/
ioapi.h 39 typedef uLong (ZCALLBACK *read_file_func) OF((voidpf opaque, voidpf stream, void* buf, uLong size));
40 typedef uLong (ZCALLBACK *write_file_func) OF((voidpf opaque, voidpf stream, const void* buf, uLong size));
62 #define ZREAD(filefunc,filestream,buf,size) ((*((filefunc).zread_file))((filefunc).opaque,filestream,buf,size))
63 #define ZWRITE(filefunc,filestream,buf,size) ((*((filefunc).zwrite_file))((filefunc).opaque,filestream,buf,size))
  /frameworks/base/libs/surfaceflinger_client/
LayerState.cpp 38 size_t size = sizeof(layer_state_t);
39 size -= sizeof(transparentRegion);
40 err = output.write(this, size);
55 size_t size = sizeof(layer_state_t);
56 size -= sizeof(transparentRegion);
57 input.read(this, size);
  /dalvik/dx/src/com/android/dx/cf/iface/
StdAttributeList.java 30 * @param size the size of the list
32 public StdAttributeList(int size) {
33 super(size);
43 int sz = size();
55 int sz = size();
69 int sz = size();
98 * @param n {@code >= 0, < size();} which attribute
  /dalvik/libcore/concurrent/src/test/java/tests/api/java/util/concurrent/
AtomicReferenceArrayTest.java 26 * constructor creates array of given size with all elements null
29 AtomicReferenceArray<Integer> ai = new AtomicReferenceArray<Integer>(SIZE);
30 for (int i = 0; i < SIZE; ++i) {
49 * constructor with array is of same size and has all elements
64 AtomicReferenceArray<Integer> ai = new AtomicReferenceArray<Integer>(SIZE);
66 ai.get(SIZE);
74 ai.set(SIZE, null);
87 AtomicReferenceArray ai = new AtomicReferenceArray(SIZE);
88 for (int i = 0; i < SIZE; ++i) {
102 AtomicReferenceArray ai = new AtomicReferenceArray(SIZE);
    [all...]

Completed in 79 milliseconds

<<11121314151617181920>>