HomeSort by relevance Sort by last modified time
    Searched refs:dsc (Results 1 - 22 of 22) sorted by null

  /external/qemu/android/utils/
jpeg-compress.h 46 * dsc - Compressin descriptor, obtained with jpeg_compressor_create.
48 extern void jpeg_compressor_destroy(AJPEGDesc* dsc);
52 * dsc - Compression descriptor, obtained with jpeg_compressor_create.
56 extern int jpeg_compressor_get_jpeg_size(const AJPEGDesc* dsc);
60 * dsc - Compression descriptor, obtained with jpeg_compressor_create.
66 extern void* jpeg_compressor_get_buffer(const AJPEGDesc* dsc);
70 * dsc - Compression descriptor, obtained with jpeg_compressor_create.
74 extern int jpeg_compressor_get_header_size(const AJPEGDesc* dsc);
78 * dsc - Compression descriptor, obtained with jpeg_compressor_create.
91 extern void jpeg_compressor_compress_fb(AJPEGDesc* dsc,
    [all...]
jpeg-compress.c 105 AJPEGDesc* dsc = (AJPEGDesc*)malloc(sizeof(AJPEGDesc)); local
106 if (dsc == NULL) {
110 dsc->common.next_output_byte = NULL;
111 dsc->common.free_in_buffer = 0;
112 dsc->common.init_destination = _on_init_destination;
113 dsc->common.empty_output_buffer = _on_empty_output_buffer;
114 dsc->common.term_destination = _on_term_destination;
115 dsc->jpeg_buf = NULL;
116 dsc->size = 0;
117 dsc->chunk_size = chunk_size
    [all...]
  /external/wpa_supplicant_8/wpa_supplicant/dbus/
dbus_new_introspect.c 84 const struct wpa_dbus_property_desc *dsc)
88 dsc->dbus_property, dsc->type,
89 dsc->getter ? "read" : "",
90 dsc->setter ? "write" : "");
97 const struct wpa_dbus_method_desc *dsc; local
99 for (dsc = methods; dsc && dsc->dbus_method; dsc++)
111 const struct wpa_dbus_signal_desc *dsc; local
125 const struct wpa_dbus_property_desc *dsc; local
    [all...]
dbus_new_helpers.c 27 const struct wpa_dbus_property_desc *dsc; local
29 for (dsc = props; dsc && dsc->dbus_property; dsc++) {
31 if (os_strncmp(dsc->dbus_interface, interface,
36 if (dsc->getter == NULL)
48 &dsc->dbus_property)) {
55 if (!dsc->getter(&entry_iter, error, user_data))
158 const struct wpa_dbus_property_desc *dsc,
610 const struct wpa_dbus_property_desc *dsc; local
835 const struct wpa_dbus_property_desc *dsc; local
876 const struct wpa_dbus_property_desc *dsc; local
    [all...]
  /ndk/sources/host-tools/make-3.81/
vmsjobs.c 48 vms_redirect (struct dsc$descriptor_s *desc, char *fname, char *ibuf)
65 desc->dsc$w_length = strlen(fname);
66 desc->dsc$a_pointer = fname;
67 desc->dsc$b_dtype = DSC$K_DTYPE_T;
68 desc->dsc$b_class = DSC$K_CLASS_S;
296 static struct dsc$descriptor_s cmddsc;
297 static struct dsc$descriptor_s pnamedsc;
298 static struct dsc$descriptor_s ifiledsc
    [all...]
vmsfunctions.c 153 static struct dsc$descriptor FibDesc =
154 { sizeof (Fib), DSC$K_DTYPE_Z, DSC$K_CLASS_S, (char *) &Fib };
155 static struct dsc$descriptor_s DevDesc =
156 { 0, DSC$K_DTYPE_T, DSC$K_CLASS_S, &Nam.nam$t_dvi[1] };
159 static struct dsc$descriptor_s FileName =
160 { 0, DSC$K_DTYPE_T, DSC$K_CLASS_S, 0 };
161 static struct dsc$descriptor_s string
    [all...]
vmsify.c 35 /* Initialize a string descriptor (struct dsc$descriptor_s) for an
39 #define INIT_DSC_S(dsc, addr, len) do { \
40 (dsc).dsc$b_dtype = DSC$K_DTYPE_T; \
41 (dsc).dsc$b_class = DSC$K_CLASS_S; \
42 (dsc).dsc$w_length = (len);
    [all...]
arscan.c 50 VMS_get_member_info (struct dsc$descriptor_s *module, unsigned long *rfa)
57 static struct dsc$descriptor_s bufdesc =
58 { 0, DSC$K_DTYPE_T, DSC$K_CLASS_S, NULL };
63 bufdesc.dsc$a_pointer = filename;
64 bufdesc.dsc$w_length = sizeof (filename);
67 &bufdesc.dsc$w_length, 0);
88 for (i = 0; i < module->dsc$w_length; i++)
89 filename[i] = _tolower ((unsigned char)module->dsc$a_pointer[i]);
142 static struct dsc$descriptor_s libdesc
    [all...]
getloadavg.c 831 int dsc$w_length;
832 char *dsc$a_pointer;
841 descriptor.dsc$w_length = 18;
842 descriptor.dsc$a_pointer = "$$VMS_LOAD_AVERAGE";
  /libcore/luni/src/main/java/java/nio/charset/
CoderResult.java 243 String dsc = null; local
246 dsc = "UNDERFLOW error";
249 dsc = "OVERFLOW error";
252 dsc = "Unmappable-character error with erroneous input length "
256 dsc = "Malformed-input error with erroneous input length "
260 dsc = "";
263 return getClass().getName() + "[" + dsc + "]";
  /external/yaffs2/yaffs2/direct/
yaffsfs.c 1180 yaffs_dirent de; /* directory entry being used by this dsc */
1193 static void yaffsfs_SetDirRewound(yaffsfs_DirectorySearchContext *dsc)
1195 if(dsc &&
1196 dsc->dirObj &&
1197 dsc->dirObj->variantType == YAFFS_OBJECT_TYPE_DIRECTORY){
1199 dsc->offset = 0;
1201 if( list_empty(&dsc->dirObj->variant.directoryVariant.children)){
1202 dsc->nextReturn = NULL;
1204 dsc->nextReturn = list_entry(dsc->dirObj->variant.directoryVariant.children.next
1238 yaffsfs_DirectorySearchContext *dsc; local
1262 yaffsfs_DirectorySearchContext *dsc = NULL; local
1296 yaffsfs_DirectorySearchContext *dsc = (yaffsfs_DirectorySearchContext *)dirp; local
1327 yaffsfs_DirectorySearchContext *dsc = (yaffsfs_DirectorySearchContext *)dirp; local
1339 yaffsfs_DirectorySearchContext *dsc = (yaffsfs_DirectorySearchContext *)dirp; local
    [all...]
  /external/chromium_org/third_party/openssl/openssl/crypto/bio/
bss_log.c 311 struct dsc$descriptor_s opc_dsc;
332 struct dsc$descriptor_s buf_dsc;
348 buf_dsc.dsc$b_dtype = DSC$K_DTYPE_T;
349 buf_dsc.dsc$b_class = DSC$K_CLASS_S;
350 buf_dsc.dsc$a_pointer = buf;
351 buf_dsc.dsc$w_length = sizeof(buf) - 1;
362 opc_dsc.dsc$b_dtype = DSC$K_DTYPE_T
    [all...]
  /external/openssl/crypto/bio/
bss_log.c 311 struct dsc$descriptor_s opc_dsc;
332 struct dsc$descriptor_s buf_dsc;
348 buf_dsc.dsc$b_dtype = DSC$K_DTYPE_T;
349 buf_dsc.dsc$b_class = DSC$K_CLASS_S;
350 buf_dsc.dsc$a_pointer = buf;
351 buf_dsc.dsc$w_length = sizeof(buf) - 1;
362 opc_dsc.dsc$b_dtype = DSC$K_DTYPE_T
    [all...]
  /external/chromium_org/native_client_sdk/src/build_tools/
verify_ppapi.py 7 PPAPI interfaces have been propagated to the Native Client libraries (.dsc
11 been added to "native_client_sdk/src/libraries/ppapi/library.dsc".
84 def GetDscSourcesAndHeaders(dsc):
86 for headers_info in dsc.get('HEADERS', []):
88 for targets_info in dsc.get('TARGETS', []):
109 return os.path.join(SDK_LIBRARY_DIR, lib_name, 'library.dsc')
172 dsc = parse_dsc.LoadProject(dsc_filename)
173 dsc_sources_and_headers = GetDscSourcesAndHeaders(dsc)
175 # Use the relative path to the .dsc to make the error messages shorter.
  /external/qemu/distrib/sdl-1.2.15/src/video/directfb/
SDL_DirectFB_video.c 593 DFBSurfaceDescription dsc; local
658 dsc.flags = DSDESC_CAPS | DSDESC_PIXELFORMAT;
659 dsc.caps = DSCAPS_PRIMARY | ((flags & SDL_DOUBLEBUF) ? DSCAPS_FLIPPING : 0);
660 dsc.pixelformat = GetFormatForBpp (bpp, HIDDEN->layer);
662 ret = HIDDEN->dfb->CreateSurface (HIDDEN->dfb, &dsc, &surface);
666 dsc.caps &= ~DSCAPS_FLIPPING;
667 ret = HIDDEN->dfb->CreateSurface (HIDDEN->dfb, &dsc, &surface);
687 if (dsc.caps & DSCAPS_FLIPPING)
805 DFBSurfaceDescription dsc; local
814 dsc.flags = DSDESC_WIDTH | DSDESC_HEIGHT | DSDESC_PIXELFORMAT | DSDESC_CAPS
    [all...]
  /cts/tools/dasm/src/dasm/
parser.cup 354 Word:n Word:dsc
355 {: //TODO: NOT SUPPORTED dAsm.addAnnotationField(n.str_val, dsc.str_val, null);
358 Word:n Word:dsc Word:sub
359 {: //TODO: NOT SUPPORTED dAsm.addAnnotationField(n.str_val, dsc.str_val, sub.str_val);
388 Word:dsc
389 {: //TODO: NOT SUPPORTED dAsm.addAnnotationField(null, dsc.str_val, null);
392 Word:dsc Word:sub
393 {: //TODO: NOT SUPPORTED dAsm.addAnnotationField(null, dsc.str_val, sub.str_val);
  /dalvik/dx/etc/
jasmin.jar 
  /external/chromium_org/third_party/gpsd/release-3.1/
gps.h 1324 bool dsc; \/* unit attached to radio with DSC? *\/ member in struct:ais_t::__anon13100::__anon13130
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.apache.ant_1.7.1.v20090120-1145/lib/
ant.jar 
  /prebuilts/tools/common/ant/
ant.jar 
  /prebuilts/misc/common/groovy/
groovy-all-1.7.0.jar 
  /prebuilts/tools/common/m2/internal/org/apache/ant/ant/1.8.0/
ant-1.8.0.jar 

Completed in 2114 milliseconds