/external/libgdx/extensions/gdx-freetype/jni/freetype-2.6.2/src/sfnt/ |
ttbdf.c | 145 FT_Size size = FT_FACE(face)->size; local 168 if ( size == NULL || property_name == NULL ) 180 if ( _ppem == size->metrics.y_ppem )
|
/external/libgdx/extensions/gdx-freetype/jni/freetype-2.6.2/src/tools/ftfuzzer/ |
ftfuzzer.cc | 73 size_t size; local 80 &size, 87 vw->insert( vw->end(), buff, buff + size ); 94 size_t size ) 111 size ) ) ) 135 if ( files.size() == 0 ) 136 files.emplace_back( data, data + size ); 164 coords.size(), 198 (FT_Long)files[0].size(), 213 (FT_Long)files[0].size(), [all...] |
/external/libgdx/extensions/gdx-freetype/jni/freetype-2.6.2/src/type1/ |
t1objs.c | 50 /* SIZE FUNCTIONS */ 52 /* note that we store the global hints in the size's "internal" root */ 59 T1_Size_Get_Globals_Funcs( T1_Size size ) 61 T1_Face face = (T1_Face)size->root.face; 66 module = FT_Get_Module( size->root.face->driver->root.library, 77 T1_Size size = (T1_Size)t1size; local 80 if ( size->root.internal ) 85 funcs = T1_Size_Get_Globals_Funcs( size ); 87 funcs->destroy( (PSH_Globals)size->root.internal ); 89 size->root.internal = NULL 97 T1_Size size = (T1_Size)t1size; local 122 T1_Size size = (T1_Size)t1size; local [all...] |
t1objs.h | 43 /* A handle to a Type 1 size object. */ 88 /* Type 1 size record. */ 98 T1_Size_Done( FT_Size size ); variable 101 T1_Size_Request( FT_Size size, 105 T1_Size_Init( FT_Size size ); variable
|
/external/libgdx/gdx/src/com/badlogic/gdx/ |
InputMultiplexer.java | 54 public int size () {
method in class:InputMultiplexer 55 return processors.size;
71 for (int i = 0, n = processors.size; i < n; i++)
77 for (int i = 0, n = processors.size; i < n; i++)
83 for (int i = 0, n = processors.size; i < n; i++)
89 for (int i = 0, n = processors.size; i < n; i++)
95 for (int i = 0, n = processors.size; i < n; i++)
101 for (int i = 0, n = processors.size; i < n; i++)
108 for (int i = 0, n = processors.size; i < n; i++)
115 for (int i = 0, n = processors.size; i < n; i++) [all...] |
/external/libgdx/gdx/src/com/badlogic/gdx/graphics/g3d/model/ |
MeshPart.java | 28 * described by an offset and size. When the mesh is indexed (which is when {@link Mesh#getNumIndices()} > 0), then the
29 * {@link #offset} represents the offset in the indices array and {@link #size} represents the number of indices. When the mesh
30 * isn't indexed, then the {@link #offset} member represents the offset in the vertices array and the {@link #size} member
33 * In other words: Regardless whether the mesh is indexed or not, when {@link #primitiveType} is not a strip, then {@link #size}
35 * {@link #primitiveType} is GL_TRIANGLES), then the {@link #size} member is 12 (4 triangles * 3 vertices = 12 vertices total).
36 * Likewise, if the part represents 12 lines ({@link #primitiveType} is GL_LINES), then the size is 24 (12 lines * 2 vertices = 24
53 /** The size (in total number of vertices) of this part in the {@link #mesh}. When the mesh is indexed (
55 public int size;
field in class:MeshPart 78 * @param size The size (in total number of vertices) of the part. [all...] |
/external/libgdx/gdx/src/com/badlogic/gdx/utils/ |
PooledLinkedList.java | 32 private int size = 0;
field in class:PooledLinkedList 55 size++;
62 size++;
66 public int size () {
method in class:PooledLinkedList 67 return size;
108 size--;
116 if (size == 0) {
|
UBJsonReader.java | 113 long size = -1; local 115 size = parseSize(din, false, -1); 116 if (size < 0) throw new GdxRuntimeException("Unrecognized data type"); 117 if (size == 0) return result; 128 result.size++; 131 result.size = 1; 134 if (size > 0 && ++c >= size) break; 148 long size = -1; local 150 size = parseSize(din, false, -1) 181 final long size = blockType == 'A' ? readUInt(din) : (long)readUChar(din); local 204 long size = -1; local [all...] |
/external/libgdx/gdx/src/com/badlogic/gdx/utils/compression/lz/ |
OutWindow.java | 39 int size = _pos - _streamPos;
local 40 if (size == 0) return;
41 _stream.write(_buffer, _streamPos, size);
|
/external/libgdx/gdx/test/com/badlogic/gdx/utils/ |
PooledLinkedListTest.java | 21 public void size () { method in class:PooledLinkedListTest 22 assertEquals(3, list.size()); 26 assertEquals(2, list.size()); 63 assertEquals(0, list.size());
|
/external/libgdx/tests/gdx-tests/src/com/badlogic/gdx/tests/ |
MultitouchTest.java | 43 int size = Math.max(Gdx.graphics.getWidth(), Gdx.graphics.getHeight()) / 10;
local 51 renderer.triangle(x, y + size, x + size, y - size, x - size, y - size);
|
/external/libmicrohttpd/src/testcurl/https/ |
tls_test_common.h | 62 size_t size; member in struct:CBC 89 size_t copyBuffer (void *ptr, size_t size, size_t nmemb, void *ctx);
|
/external/libmicrohttpd/src/testcurl/ |
test_digestauth.c | 55 size_t size; member in struct:CBC 59 copyBuffer (void *ptr, size_t size, size_t nmemb, void *ctx) 63 if (cbc->pos + size * nmemb > cbc->size) 65 memcpy (&cbc->buf[cbc->pos], ptr, size * nmemb); 66 cbc->pos += size * nmemb; 67 return size * nmemb; 141 cbc.size = 2048;
|
test_digestauth_with_arguments.c | 54 size_t size; member in struct:CBC 58 copyBuffer (void *ptr, size_t size, size_t nmemb, void *ctx) 62 if (cbc->pos + size * nmemb > cbc->size) 64 memcpy (&cbc->buf[cbc->pos], ptr, size * nmemb); 65 cbc->pos += size * nmemb; 66 return size * nmemb; 140 cbc.size = 2048;
|
test_iplimit.c | 60 size_t size; member in struct:CBC 64 copyBuffer (void *ptr, size_t size, size_t nmemb, void *ctx) 68 if (cbc->pos + size * nmemb > cbc->size) 70 memcpy (&cbc->buf[cbc->pos], ptr, size * nmemb); 71 cbc->pos += size * nmemb; 72 return size * nmemb; 143 cbc[i].size = 2048; 232 cbc[i].size = 2048;
|
test_long_header.c | 58 size_t size; member in struct:CBC 62 copyBuffer (void *ptr, size_t size, size_t nmemb, void *ctx) 64 return size * nmemb; 102 cbc.size = 2048; 173 cbc.size = 2048;
|
test_parse_cookies.c | 46 size_t size; member in struct:CBC 50 copyBuffer (void *ptr, size_t size, size_t nmemb, void *ctx) 54 if (cbc->pos + size * nmemb > cbc->size) 56 memcpy (&cbc->buf[cbc->pos], ptr, size * nmemb); 57 cbc->pos += size * nmemb; 58 return size * nmemb; 128 cbc.size = 2048;
|
test_process_arguments.c | 45 size_t size; member in struct:CBC 50 copyBuffer (void *ptr, size_t size, size_t nmemb, void *ctx) 54 if (cbc->pos + size * nmemb > cbc->size) 56 memcpy (&cbc->buf[cbc->pos], ptr, size * nmemb); 57 cbc->pos += size * nmemb; 58 return size * nmemb; 131 cbc.size = 2048;
|
test_timeout.c | 49 size_t size; member in struct:CBC 87 putBuffer (void *stream, size_t size, size_t nmemb, void *ptr) 92 wrt = size * nmemb; 102 putBuffer_fail (void *stream, size_t size, size_t nmemb, void *ptr) 109 copyBuffer (void *ptr, size_t size, size_t nmemb, void *ctx) 113 if (cbc->pos + size * nmemb > cbc->size) 115 memcpy (&cbc->buf[cbc->pos], ptr, size * nmemb); 116 cbc->pos += size * nmemb; 117 return size * nmemb [all...] |
test_urlparse.c | 55 size_t size; member in struct:CBC 59 copyBuffer (void *ptr, size_t size, size_t nmemb, void *ctx) 63 if (cbc->pos + size * nmemb > cbc->size) 65 memcpy (&cbc->buf[cbc->pos], ptr, size * nmemb); 66 cbc->pos += size * nmemb; 67 return size * nmemb; 135 cbc.size = 2048;
|
/external/libmicrohttpd/src/testspdy/ |
test_struct_namevalue.c | 35 int size; variable 46 if(*c < 0 || *c > size) 112 size = sizeof(pairs)/sizeof(pairs[0]); 129 for(i=0;i<size; i+=2) 147 for(i=size - 2; i >= 0; i-=2) 207 size = sizeof(pairs_with_dups)/sizeof(pairs_with_dups[0]); 209 for(i=0;i<size; i+=2) 216 if(SPDY_name_value_iterate (container, NULL, NULL) != atoi(pairs_with_dups[size - 1])) 220 for(i=size - 2; i >= 0; i-=2) 249 size = sizeof(pairs_with_empty)/sizeof(pairs_with_empty[0]) [all...] |
/external/libmicrohttpd/src/testzzuf/ |
test_long_header.c | 60 size_t size; member in struct:CBC 64 copyBuffer (void *ptr, size_t size, size_t nmemb, void *ctx) 66 return size * nmemb; 104 cbc.size = 2048; 166 cbc.size = 2048;
|
/external/libnfc-nci/src/nfa/ee/ |
nfa_ee_api.c | 411 UINT16 size = sizeof(tNFA_EE_API_ADD_AID) + aid_len; local 424 else if ((p_msg = (tNFA_EE_API_ADD_AID *) GKI_getbuf (size)) != NULL) 469 UINT16 size = sizeof(tNFA_EE_API_REMOVE_AID) + aid_len; local 477 else if ((p_msg = (tNFA_EE_API_REMOVE_AID *) GKI_getbuf (size)) != NULL) 496 ** Description This function is called to get remaining size of the 498 ** The remaining size is reported in NFA_EE_REMAINING_SIZE_EVT
|
/external/libnfc-nci/src/nfc/nci/ |
nci_hmsgs.c | 197 UINT8 size = NCI_CORE_PARAM_SIZE_CON_CREATE+tlv_size; local 199 if ((p = NCI_GET_CMD_BUF (size)) == NULL) 210 UINT8_TO_STREAM (pp, size); 341 int size; local 343 size = num * sizeof (tNCI_DISCOVER_PARAMS) + 1; 344 if ((p = NCI_GET_CMD_BUF (size)) == NULL) 455 int size; local 457 size = num * sizeof (tNCI_DISCOVER_MAPS) + 1; 459 if ((p = NCI_GET_CMD_BUF (size)) == NULL) 589 UINT8 size = tlv_size + 2 local [all...] |
/external/libnfc-nxp/src/ |
phFriNfc_LlcpUtils.c | 89 uint32_t finalOffset = offset + 2 + length; /* 2 stands for Type and Length fields size */ 331 uint32_t size; local 343 size = pUtilFifo->pBuffEnd - pUtilFifo->pBuffStart + 1; 344 dataLength = size - (pIn - pOut);
|