Home
last modified time | relevance | path

Searched refs:in_type (Results 1 – 10 of 10) sorted by relevance

/external/deqp/modules/gles31/scripts/
Dgen-implicit-conversions.py340 def __init__(self, name, op, in_type, out_type, reverse=False): argument
349 self.in_type = in_type
393 in_values = IN_VALUES[self.in_type]
399 out.append(valuesToStr("input %s in0" % (self.in_type), self.in_type, in_values))
406 def __init__(self, name, op, in_type, out_type, reverse=False): argument
407 super(ComparisonsCase, self).__init__(name, op, in_type, out_type, reverse)
430 in_values = IN_VALUES[self.in_type]
436 out.append(valuesToStr("input %s in0" % (self.in_type), self.in_type, in_values))
443 def __init__(self, name, in_type, out_type, reverse=False, input_in_parens=False): argument
445 self.in_type = in_type
[all …]
/external/openssh/
Dmoduli.c583 u_int32_t generator_known, in_tests, in_tries, in_type, in_size; in prime_test() local
641 in_type = strtoul(cp, &cp, 10); in prime_test()
664 switch (in_type) { in prime_test()
666 debug2("%10u: (%u) Sophie-Germain", count_in, in_type); in prime_test()
683 debug2("%10u: (%u)", count_in, in_type); in prime_test()
/external/pdfium/core/fxcodec/codec/
Dfx_codec_jpx_opj.cpp463 cmsUInt32Number in_type; in color_apply_icc_profile() local
482 in_type = TYPE_RGB_8; in color_apply_icc_profile()
485 in_type = TYPE_RGB_16; in color_apply_icc_profile()
492 in_type = TYPE_GRAY_8; in color_apply_icc_profile()
495 in_type = TYPE_GRAY_16; in color_apply_icc_profile()
501 in_type = TYPE_YCbCr_16; in color_apply_icc_profile()
509 cmsCreateTransform(in_prof, in_type, out_prof, out_type, intent, 0); in color_apply_icc_profile()
/external/vboot_reference/futility/
Dtraversal.h64 enum futil_file_type in_type; member
Dtraversal.c213 state->in_type = type; in futil_traverse()
Dcmd_sign.c371 if (state->in_type == FILE_TYPE_UNKNOWN) { in futil_cb_sign_begin()
505 switch (state->in_type) { in futil_cb_sign_end()
Dcmd_show.c523 switch (state->in_type) { in futil_cb_show_begin()
/external/ltp/testcases/kernel/fs/scsi/ltpscsi/
Dscsimain.c215 int in_type; member
2199 int in_type = FT_OTHER; in do_scsi_device_read_write() local
2258 in_type = dd_filetype(inf); in do_scsi_device_read_write()
2260 if ((FT_BLOCK & in_type) && do_blk_sgio) in do_scsi_device_read_write()
2261 in_type |= FT_SG; in do_scsi_device_read_write()
2263 if (FT_ST == in_type) { in do_scsi_device_read_write()
2267 } else if (FT_SG & in_type) { in do_scsi_device_read_write()
2281 if (FT_BLOCK & in_type) in do_scsi_device_read_write()
2293 if (do_odir && (FT_BLOCK == in_type)) in do_scsi_device_read_write()
2397 if (FT_SG & in_type) { in do_scsi_device_read_write()
[all …]
/external/libchrome/base/posix/
Dfile_descriptor_shuffle_unittest.cc24 Action(Type in_type, int in_fd1, int in_fd2 = -1) in Action()
25 : type(in_type), in Action()
/external/libmojo/mojo/public/cpp/bindings/lib/
Dmultiplex_router.cc281 explicit Task(Type in_type) : type(in_type) {} in Task()