Searched defs:SIZE (Results 1 - 25 of 27) sorted by relevance

12

/external/elfutils/libasm/
H A Dasm_addint16.c15 #define SIZE 16 macro
H A Dasm_addint32.c15 #define SIZE 32 macro
H A Dasm_addint64.c15 #define SIZE 64 macro
H A Dasm_adduint16.c15 #define SIZE 16 macro
H A Dasm_adduint32.c15 #define SIZE 32 macro
H A Dasm_adduint64.c15 #define SIZE 64 macro
H A Dasm_addint8.c26 #ifndef SIZE
27 # define SIZE 8 macro
39 FCT(SIZE) (asmscn, num) function
41 TYPE(SIZE) num;
55 if (SIZE == 8)
57 else if (SIZE == 16)
59 else if (SIZE == 32)
76 #if SIZE > 8
80 TYPE(SIZE) var = num;
83 if (__libasm_ensure_section_space (asmscn, SIZE /
[all...]
H A Dasm_adduint8.c21 #ifndef SIZE
22 # define SIZE 8 macro
36 UFCT(SIZE) (asmscn, num) function
38 UTYPE(SIZE) num;
40 return INTUSE(FCT(SIZE)) (asmscn, (TYPE(SIZE)) num);
/external/webkit/WebCore/platform/graphics/win/
H A DIntSizeWin.cpp33 IntSize::IntSize(const SIZE& s)
39 IntSize::operator SIZE() const
41 SIZE s = {m_width, m_height};
/external/bluetooth/glib/tests/
H A Dqsort-test.c6 #define SIZE 100000 macro
8 guint32 array[SIZE];
21 for (i = 0; i < SIZE; i++)
24 g_qsort_with_data (array, SIZE, sizeof (guint32), sort, NULL);
26 for (i = 0; i < SIZE - 1; i++)
H A Dlist-test.c11 #define SIZE 50 macro
16 static guint32 array[SIZE];
41 for (i = 0; i < SIZE; i++) {
46 for (i = 0; i < SIZE - 1; i++) {
67 for (i = 0; i < SIZE; i++) {
72 for (i = 0; i < SIZE - 1; i++) {
93 for (i = 0; i < SIZE; i++) {
97 for (i = 0; i < SIZE - 1; i++) {
118 for (i = 0; i < SIZE; i++) {
125 for (i = 0; i < SIZE
[all...]
H A Dslist-test.c11 #define SIZE 50 macro
16 static guint32 array[SIZE];
41 for (i = 0; i < SIZE; i++) {
46 for (i = 0; i < SIZE - 1; i++) {
65 for (i = 0; i < SIZE; i++) {
70 for (i = 0; i < SIZE - 1; i++) {
89 for (i = 0; i < SIZE; i++) {
93 for (i = 0; i < SIZE - 1; i++) {
112 for (i = 0; i < SIZE; i++) {
119 for (i = 0; i < SIZE
[all...]
/external/webkit/WebKit/android/
H A DRenderSkinRadio.cpp46 static SkScalar SIZE; variable
65 SIZE = SkIntToScalar(s_bitmap[0].width());
85 SkScalar scale = SkScalarDiv(width, SIZE);
/external/icu4c/test/compat/
H A Dtzdate.c29 #define SIZE 80 macro
37 char systime[SIZE];
38 char icutime[SIZE];
/external/openssl/crypto/bn/
H A Dexp.c7 #define SIZE 256 macro
17 int j,i,size=SIZE,num=NUM,mod=MOD;
/external/emma/core/java12/com/vladium/emma/report/html/doc/
H A DAttribute.java33 public static final Attribute SIZE = new AttributeImpl ("SIZE"); field in class:Attribute
/external/webkit/WebCore/platform/graphics/
H A DIntSize.h44 typedef struct tagSIZE SIZE; typedef in typeref:struct:tagSIZE
118 IntSize(const SIZE&);
119 operator SIZE() const;
H A DImage.h52 typedef struct tagSIZE SIZE; typedef in typeref:struct:tagSIZE
53 typedef SIZE* LPSIZE;
/external/bluetooth/bluez/sbc/
H A Dsbcinfo.c168 #define SIZE 32 macro
175 int bitpool[SIZE], frame_len[SIZE];
209 for (n = 1; n < SIZE; n++) {
252 for (n = 0; n < SIZE; n++) {
286 for (n = 1; n < SIZE; n++)
292 for (n = 1; n < SIZE; n++)
/external/openssl/apps/
H A Denc.c73 #undef SIZE macro
77 #define SIZE (512) macro
360 strbuf=OPENSSL_malloc(SIZE);
416 i=EVP_read_pw_string((char *)strbuf,SIZE,buf,enc);
532 OPENSSL_cleanse(str,SIZE);
/external/openssl/crypto/des/
H A Dread_pwd.c249 #define SIZE 4 macro
250 char buf[SIZE+1];
253 fgets(buf,SIZE,in);
/external/openssl/crypto/ui/
H A Dui_openssl.c395 #define SIZE 4 macro
396 char buf[SIZE+1];
399 if (!fgets(buf,SIZE,in))
/external/zlib/examples/
H A Dgun.c72 #define SIZE 32768U /* input and output buffer sizes */ macro
76 input file and a buffer of size SIZE */
97 if ((unsigned)ret > SIZE - len)
98 ret = (int)(SIZE - len);
106 } while (ret != 0 && len < SIZE);
157 unsigned char inbuf[SIZE]; /* input buffer */
158 unsigned char outbuf[SIZE]; /* output buffer */
343 while (stack > SIZE - outcnt) {
344 while (outcnt < SIZE)
/external/icu4c/test/cintltst/
H A Dcnormtst.c371 const int SIZE = 10; local
376 for (; count < SIZE; count ++)
417 const int SIZE = 10; local
449 for (; count < SIZE; count ++)
486 const int SIZE = 10; local
492 for (; count < SIZE; count ++)
/external/opencore/nodes/pvprotocolenginenode/protocol_common/src/
H A Dpvmf_protocol_engine_common.cpp863 const uint32 SIZE = 512; local
864 char buf[SIZE + 1];
867 oscl_snprintf(buf, SIZE, "%s:%s", userID != NULL ? userID : "", passwd != NULL ? passwd : "");
868 char base64buf[(SIZE<<1)+1], *ptr = (char*)base64buf;

Completed in 349 milliseconds

12