Home
last modified time | relevance | path

Searched refs:names (Results 1 – 25 of 195) sorted by relevance

12345678

/AliOS-Things-master/components/freetype/src/sfnt/
A Dttpost.c418 TT_Post_Names names = &face->postscript_names; in tt_face_free_ps_names() local
422 if ( names->loaded ) in tt_face_free_ps_names()
428 TT_Post_20 table = &names->names.format_20; in tt_face_free_ps_names()
443 TT_Post_25 table = &names->names.format_25; in tt_face_free_ps_names()
450 names->loaded = 0; in tt_face_free_ps_names()
482 TT_Post_Names names; in tt_face_get_ps_name() local
502 names = &face->postscript_names; in tt_face_get_ps_name()
516 TT_Post_20 table = &names->names.format_20; in tt_face_get_ps_name()
519 if ( !names->loaded ) in tt_face_get_ps_name()
539 TT_Post_25 table = &names->names.format_25; in tt_face_get_ps_name()
[all …]
A Dttload.c809 if ( FT_NEW_ARRAY( table->names, count ) || in tt_face_load_name()
816 TT_NameEntryRec* entry = table->names; in tt_face_load_name()
842 table->numNameRecords = (FT_UInt)( entry - table->names ); in tt_face_load_name()
871 TT_NameEntry entry = table->names; in tt_face_free_name()
875 if ( table->names ) in tt_face_free_name()
884 FT_FREE( table->names ); in tt_face_free_name()
/AliOS-Things-master/components/posix/src/
A Ddirent.c73 struct dirent **names, **names_new; in scandir() local
84 names = (struct dirent **)malloc(sizeof(struct dirent *) * array_size); in scandir()
85 if (names == NULL) { in scandir()
104 names_new = realloc(names, sizeof(struct dirent *) * array_size * 2); in scandir()
111 names = names_new; in scandir()
115 names[num_entry++] = p; in scandir()
119 qsort(names, num_entry, sizeof(struct dirent *), (void *)compar); in scandir()
120 *namelist = names; in scandir()
125 free(names[num_entry--]); in scandir()
126 free(names); in scandir()
/AliOS-Things-master/components/SDL2/src/image/external/libpng-1.6.37/contrib/conftest/
A DREADME38 File names in this directory may NOT contain any of the five characters:
44 While other characters may be used it is strongly suggested that file names be
46 necessary the underscore (_) character. File names should be about 8 characters
47 long (excluding the .dfa extension). Submitted .dfa files should have names
48 between 7 and 16 characters long, shorter names (6 characters or less) are
/AliOS-Things-master/components/py_engine/tests/unix/
A Dffi_float2.py9 def ffi_open(names): argument
11 for n in names:
A Dffi_float.py9 def ffi_open(names): argument
11 for n in names:
A Dffi_callback.py8 def ffi_open(names): argument
10 for n in names:
/AliOS-Things-master/components/py_engine/engine/tools/
A Ddfu.py13 def named(tuple, names): argument
14 return dict(zip(names.split(), tuple))
17 def consume(fmt, data, names): argument
19 return named(struct.unpack(fmt, data[:n]), names), data[n:]
/AliOS-Things-master/components/vfs/
A Dvfs_inode.c453 int vfs_inode_get_names(const char *path, char names[][64], uint32_t* size)
465 memset(names[index], 0, 64);
468 strncpy(names[index], g_vfs_nodes[idx].i_name, 63);
469 names[index][63] = '\0';
472 strncpy(names[index++], g_vfs_nodes[idx].i_name, len);
/AliOS-Things-master/components/SDL2/src/image/external/jpeg-9b/
A Dcoderules.txt32 Multi-word names should be written in lower case with underscores, e.g.,
35 the first fifteen characters. (On some older systems, global names must be
37 source code by using macros to substitute shorter names.)
97 global function names should begin with "jpeg_", and should have an
108 5. Source file names should begin with "j" for files that are part of the
110 and djpeg.c, do not begin with "j". Keep source file names to eight
/AliOS-Things-master/components/SDL2/src/video/x11/
A DSDL_x11vulkan.c142 const char **names) in X11_Vulkan_GetInstanceExtensions() argument
156 count, names, SDL_arraysize(extensionsForXCB), extensionsForXCB); in X11_Vulkan_GetInstanceExtensions()
164 count, names, SDL_arraysize(extensionsForXlib), extensionsForXlib); in X11_Vulkan_GetInstanceExtensions()
A DSDL_x11vulkan.h38 const char **names);
/AliOS-Things-master/components/littlevgl/docs/
A DCODING_STYLE.md7 * In variable and function names use only lower case letters (e.g. *height_tmp*)
9 * Global names (API):
16 * always end `typedef struct` and `typedef enum` type names with `_t`
18 * Use abbreviations on public names only if they become longer than 32 characters
/AliOS-Things-master/components/SDL2/src/video/vivante/
A DSDL_vivantevulkan.c127 const char **names) in VIVANTE_Vulkan_GetInstanceExtensions() argument
138 count, names, SDL_arraysize(extensionsForVivante), in VIVANTE_Vulkan_GetInstanceExtensions()
A DSDL_vivantevulkan.h42 const char **names);
/AliOS-Things-master/components/SDL2/src/video/android/
A DSDL_androidvulkan.c115 const char **names) in Android_Vulkan_GetInstanceExtensions() argument
126 count, names, SDL_arraysize(extensionsForAndroid), in Android_Vulkan_GetInstanceExtensions()
A DSDL_androidvulkan.h42 const char **names);
/AliOS-Things-master/components/freetype/src/base/
A Dftmac.c435 unsigned char* names[64]; in parse_fond() local
447 names[i] = p; in parse_fond()
448 p += names[i][0]; in parse_fond()
453 size_t ps_name_len = (size_t)names[0][0]; in parse_fond()
458 ft_memcpy(ps_name, names[0] + 1, ps_name_len); in parse_fond()
464 unsigned char* suffixes = names[style->indexes[face_index] - 1]; in parse_fond()
473 if ( j < string_count && ( s = names[j] ) != NULL ) in parse_fond()
/AliOS-Things-master/components/SDL2/src/video/windows/
A DSDL_windowsvulkan.c116 const char **names) in WIN_Vulkan_GetInstanceExtensions() argument
127 count, names, SDL_arraysize(extensionsForWin32), in WIN_Vulkan_GetInstanceExtensions()
A DSDL_windowsvulkan.h42 const char **names);
/AliOS-Things-master/components/SDL2/src/video/cocoa/
A DSDL_cocoavulkan.h43 const char **names);
/AliOS-Things-master/components/SDL2/src/video/uikit/
A DSDL_uikitvulkan.h42 const char **names);
/AliOS-Things-master/components/SDL2/src/video/wayland/
A DSDL_waylandvulkan.h42 const char **names);
A DSDL_waylandvulkan.c115 const char **names) in Wayland_Vulkan_GetInstanceExtensions() argument
126 count, names, SDL_arraysize(extensionsForWayland), in Wayland_Vulkan_GetInstanceExtensions()
/AliOS-Things-master/components/SDL2/src/video/
A DSDL_vulkan_internal.h74 const char *const *names);

Completed in 34 milliseconds

12345678