/base/hiviewdfx/hiview/base/event_raw/include/encoded/ |
H A D | raw_data_encoder.h | 35 static bool StringValueEncoded(RawData& data, const std::string& val); 40 static bool UnsignedVarintEncoded(RawData& data, const EncodeType type, T val) in UnsignedVarintEncoded() argument 42 uint8_t cpyVal = EncodedTag(static_cast<uint8_t>(type)) | ((val < TAG_BYTE_BOUND) ? 0 : TAG_BYTE_BOUND) | in UnsignedVarintEncoded() 43 static_cast<uint8_t>(val & TAG_BYTE_MASK); in UnsignedVarintEncoded() 47 val >>= TAG_BYTE_OFFSET; in UnsignedVarintEncoded() 48 while (val > 0) { in UnsignedVarintEncoded() 49 cpyVal = ((val < NON_TAG_BYTE_BOUND) ? 0 : NON_TAG_BYTE_BOUND) | in UnsignedVarintEncoded() 50 static_cast<uint8_t>(val & NON_TAG_BYTE_MASK); in UnsignedVarintEncoded() 54 val >>= NON_TAG_BYTE_OFFSET; in UnsignedVarintEncoded() 61 static bool SignedVarintEncoded(RawData& data, const EncodeType type, T val) in SignedVarintEncoded() argument 71 FloatingNumberEncoded(RawData& data, T val) FloatingNumberEncoded() argument [all...] |
/base/hiviewdfx/hisysevent/interfaces/native/innerkits/hisysevent/include/ |
H A D | raw_data_encoder.h | 46 static bool StringValueEncoded(RawData& data, const std::string& val); 51 static bool UnsignedVarintEncoded(RawData& data, const EncodeType type, T val) in UnsignedVarintEncoded() argument 53 uint8_t cpyVal = EncodedTag(static_cast<uint8_t>(type)) | ((val < TAG_BYTE_BOUND) ? 0 : TAG_BYTE_BOUND) | in UnsignedVarintEncoded() 54 static_cast<uint8_t>(val & TAG_BYTE_MASK); in UnsignedVarintEncoded() 58 val >>= TAG_BYTE_OFFSET; in UnsignedVarintEncoded() 59 while (val > 0) { in UnsignedVarintEncoded() 60 cpyVal = ((val < NON_TAG_BYTE_BOUND) ? 0 : NON_TAG_BYTE_BOUND) | in UnsignedVarintEncoded() 61 static_cast<uint8_t>(val & NON_TAG_BYTE_MASK); in UnsignedVarintEncoded() 65 val >>= NON_TAG_BYTE_OFFSET; in UnsignedVarintEncoded() 72 static bool SignedVarintEncoded(RawData& data, const EncodeType type, T val) in SignedVarintEncoded() argument 82 FloatingNumberEncoded(RawData& data, T val) FloatingNumberEncoded() argument [all...] |
/third_party/ffmpeg/libavcodec/ |
H A D | aura.c | 45 uint8_t val; in aura_decode_frame() local 71 val = *buf++; in aura_decode_frame() 72 U[0] = val & 0xF0; in aura_decode_frame() 73 Y[0] = val << 4; in aura_decode_frame() 74 val = *buf++; in aura_decode_frame() 75 V[0] = val & 0xF0; in aura_decode_frame() 76 Y[1] = Y[0] + delta_table[val & 0xF]; in aura_decode_frame() 81 val = *buf++; in aura_decode_frame() 82 U[0] = U[-1] + delta_table[val >> 4]; in aura_decode_frame() 83 Y[0] = Y[-1] + delta_table[val in aura_decode_frame() [all...] |
/third_party/libunwind/libunwind/src/ptrace/ |
H A D | _UPT_access_mem.c | 31 _UPT_access_mem (unw_addr_space_t as, unw_word_t addr, unw_word_t *val, in _UPT_access_mem() argument 60 tmp_val = i == 0 ? *val : *val >> 32; in _UPT_access_mem() 62 tmp_val = i == 0 && end == 2 ? *val >> 32 : *val; in _UPT_access_mem() 82 *val = 0; in _UPT_access_mem() 85 *val |= tmp_val << (i * 32); in _UPT_access_mem() 87 *val |= i == 0 && end == 2 ? tmp_val << 32 : tmp_val; in _UPT_access_mem() 100 _UPT_access_mem (unw_addr_space_t as, unw_word_t addr, unw_word_t *val, in _UPT_access_mem() argument 110 iod.piod_addr = val; in _UPT_access_mem() [all...] |
/third_party/json/docs/examples/ |
H A D | sax_parse__binary.cpp | 22 bool boolean(bool val) override 24 events.push_back("boolean(val=" + std::string(val ? "true" : "false") + ")"); 28 bool number_integer(number_integer_t val) override 30 events.push_back("number_integer(val=" + std::to_string(val) + ")"); 34 bool number_unsigned(number_unsigned_t val) override 36 events.push_back("number_unsigned(val=" + std::to_string(val) + ")"); 40 bool number_float(number_float_t val, cons [all...] |
H A D | sax_parse.cpp | 22 bool boolean(bool val) override 24 events.push_back("boolean(val=" + std::string(val ? "true" : "false") + ")"); 28 bool number_integer(number_integer_t val) override 30 events.push_back("number_integer(val=" + std::to_string(val) + ")"); 34 bool number_unsigned(number_unsigned_t val) override 36 events.push_back("number_unsigned(val=" + std::to_string(val) + ")"); 40 bool number_float(number_float_t val, cons [all...] |
/third_party/skia/src/core/ |
H A D | SkFixed15.h | 21 SkFixed15(float val) : fVal(val * 32768) { SkASSERT(0.0f <= val && val <= 1.0f); } in SkFixed15() argument 24 static SkFixed15 Load(uint16_t val) { in Load() argument 25 SkASSERT(val <= 32768); in Load() 26 return val; in Load() 30 static SkFixed15 FromU8(uint8_t val) { in FromU8() argument 31 return val*128 + (val>> in FromU8() 61 SkFixed15(int val) SkFixed15() argument [all...] |
/third_party/wpa_supplicant/wpa_supplicant-2.9/src/utils/ |
H A D | common.h | 219 static inline void WPA_PUT_BE16(u8 *a, u16 val) in WPA_PUT_BE16() argument 221 a[0] = val >> 8; in WPA_PUT_BE16() 222 a[1] = val & 0xff; in WPA_PUT_BE16() 230 static inline void WPA_PUT_LE16(u8 *a, u16 val) in WPA_PUT_LE16() argument 232 a[1] = val >> 8; in WPA_PUT_LE16() 233 a[0] = val & 0xff; in WPA_PUT_LE16() 241 static inline void WPA_PUT_BE24(u8 *a, u32 val) in WPA_PUT_BE24() argument 243 a[0] = (val >> 16) & 0xff; in WPA_PUT_BE24() 244 a[1] = (val >> 8) & 0xff; in WPA_PUT_BE24() 245 a[2] = val in WPA_PUT_BE24() 253 WPA_PUT_BE32(u8 *a, u32 val) WPA_PUT_BE32() argument 266 WPA_PUT_LE32(u8 *a, u32 val) WPA_PUT_LE32() argument 282 WPA_PUT_BE64(u8 *a, u64 val) WPA_PUT_BE64() argument 302 WPA_PUT_LE64(u8 *a, u64 val) WPA_PUT_LE64() argument [all...] |
/base/security/device_auth/services/legacy/authenticators/src/account_unrelated/pake_task/standard_exchange_task/ |
H A D | common_standard_bind_exchange.c | 33 params->pubKeyPeer.val = (uint8_t *)HcMalloc(params->pubKeyPeer.length, 0); in InitStandardBindExchangeParams() 34 if (params->pubKeyPeer.val == NULL) { in InitStandardBindExchangeParams() 40 params->pubKeySelf.val = (uint8_t *)HcMalloc(params->pubKeySelf.length, 0); in InitStandardBindExchangeParams() 41 if (params->pubKeySelf.val == NULL) { in InitStandardBindExchangeParams() 47 params->nonce.val = (uint8_t *)HcMalloc(params->nonce.length, 0); in InitStandardBindExchangeParams() 48 if (params->nonce.val == NULL) { in InitStandardBindExchangeParams() 54 params->authInfo.val = NULL; in InitStandardBindExchangeParams() 56 params->exInfoCipher.val = NULL; in InitStandardBindExchangeParams() 69 if (params->pubKeySelf.val != NULL) { in DestroyStandardBindExchangeParams() 70 HcFree(params->pubKeySelf.val); in DestroyStandardBindExchangeParams() [all...] |
/third_party/mbedtls/programs/util/ |
H A D | strerror.c | 45 long int val; in main() local 53 val = strtol(argv[1], &end, 10); in main() 55 val = strtol(argv[1], &end, 16); in main() 61 if (val > 0) { in main() 62 val = -val; in main() 65 if (val != 0) { in main() 67 mbedtls_strerror(val, error_buf, 200); in main() 68 mbedtls_printf("Last error was: -0x%04x - %s\n\n", (unsigned int) -val, error_buf); in main() 71 mbedtls_exit(val); in main() [all...] |
/third_party/ltp/testcases/lib/ |
H A D | tst_hexdump.c | 18 unsigned int val; in decode_hex() local 20 while ((ret = scanf("%2x", &val)) == 1) in decode_hex() 21 putchar(val); in decode_hex() 28 int val; in encode_hex() local 30 for (val = getchar(); val >= 0 && val <= 0xff; val = getchar()) in encode_hex() 31 printf("%02x", val); in encode_hex() 33 return val ! in encode_hex() [all...] |
/third_party/skia/third_party/externals/spirv-tools/source/ |
H A D | spirv_optimizer_options.cpp | 30 spv_optimizer_options options, bool val) { in spvOptimizerOptionsSetRunValidator() 31 options->run_validator_ = val; in spvOptimizerOptionsSetRunValidator() 35 spv_optimizer_options options, spv_validator_options val) { in spvOptimizerOptionsSetValidatorOptions() 36 options->val_options_ = *val; in spvOptimizerOptionsSetValidatorOptions() 39 spv_optimizer_options options, uint32_t val) { in spvOptimizerOptionsSetMaxIdBound() 40 options->max_id_bound_ = val; in spvOptimizerOptionsSetMaxIdBound() 44 spv_optimizer_options options, bool val) { in spvOptimizerOptionsSetPreserveBindings() 45 options->preserve_bindings_ = val; in spvOptimizerOptionsSetPreserveBindings() 49 spv_optimizer_options options, bool val) { in spvOptimizerOptionsSetPreserveSpecConstants() 50 options->preserve_spec_constants_ = val; in spvOptimizerOptionsSetPreserveSpecConstants() 29 spvOptimizerOptionsSetRunValidator( spv_optimizer_options options, bool val) spvOptimizerOptionsSetRunValidator() argument 34 spvOptimizerOptionsSetValidatorOptions( spv_optimizer_options options, spv_validator_options val) spvOptimizerOptionsSetValidatorOptions() argument 38 spvOptimizerOptionsSetMaxIdBound( spv_optimizer_options options, uint32_t val) spvOptimizerOptionsSetMaxIdBound() argument 43 spvOptimizerOptionsSetPreserveBindings( spv_optimizer_options options, bool val) spvOptimizerOptionsSetPreserveBindings() argument 48 spvOptimizerOptionsSetPreserveSpecConstants( spv_optimizer_options options, bool val) spvOptimizerOptionsSetPreserveSpecConstants() argument [all...] |
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/source/ |
H A D | spirv_optimizer_options.cpp | 30 spv_optimizer_options options, bool val) { in spvOptimizerOptionsSetRunValidator() 31 options->run_validator_ = val; in spvOptimizerOptionsSetRunValidator() 35 spv_optimizer_options options, spv_validator_options val) { in spvOptimizerOptionsSetValidatorOptions() 36 options->val_options_ = *val; in spvOptimizerOptionsSetValidatorOptions() 39 spv_optimizer_options options, uint32_t val) { in spvOptimizerOptionsSetMaxIdBound() 40 options->max_id_bound_ = val; in spvOptimizerOptionsSetMaxIdBound() 44 spv_optimizer_options options, bool val) { in spvOptimizerOptionsSetPreserveBindings() 45 options->preserve_bindings_ = val; in spvOptimizerOptionsSetPreserveBindings() 49 spv_optimizer_options options, bool val) { in spvOptimizerOptionsSetPreserveSpecConstants() 50 options->preserve_spec_constants_ = val; in spvOptimizerOptionsSetPreserveSpecConstants() 29 spvOptimizerOptionsSetRunValidator( spv_optimizer_options options, bool val) spvOptimizerOptionsSetRunValidator() argument 34 spvOptimizerOptionsSetValidatorOptions( spv_optimizer_options options, spv_validator_options val) spvOptimizerOptionsSetValidatorOptions() argument 38 spvOptimizerOptionsSetMaxIdBound( spv_optimizer_options options, uint32_t val) spvOptimizerOptionsSetMaxIdBound() argument 43 spvOptimizerOptionsSetPreserveBindings( spv_optimizer_options options, bool val) spvOptimizerOptionsSetPreserveBindings() argument 48 spvOptimizerOptionsSetPreserveSpecConstants( spv_optimizer_options options, bool val) spvOptimizerOptionsSetPreserveSpecConstants() argument [all...] |
/third_party/typescript/tests/baselines/reference/ |
H A D | wrappedRecursiveGenericType.js | 5 val: T; 9 val: T; 12 x.val = 5; // val -> number 13 x.a.val = 5; // val -> number 14 x.a.b.val = 5; // val -> X<number> (This should be an error) 15 x.a.b.a.val = 5; // val [all...] |
H A D | privacyTypeParametersOfInterfaceDeclFile.js | 15 myMethod(val: T): T; 24 myMethod(val: T): T; 33 myMethod(val: T): T; 42 myMethod(val: T): T; 51 myMethod(val: T): T; 56 myMethod(val: T): T; 81 myMethod(val: T): T; 90 myMethod(val: T): T; 99 myMethod(val: T): T; 108 myMethod(val [all...] |
/third_party/python/Lib/lib2to3/fixes/ |
H A D | fix_numliterals.py | 22 val = node.value 23 if val[-1] in 'Ll': 24 val = val[:-1] 25 elif val.startswith('0') and val.isdigit() and len(set(val)) > 1: 26 val = "0o" + val[1:] 28 return Number(val, prefi [all...] |
/third_party/spirv-tools/source/ |
H A D | spirv_optimizer_options.cpp | 30 spv_optimizer_options options, bool val) { in spvOptimizerOptionsSetRunValidator() 31 options->run_validator_ = val; in spvOptimizerOptionsSetRunValidator() 35 spv_optimizer_options options, spv_validator_options val) { in spvOptimizerOptionsSetValidatorOptions() 36 options->val_options_ = *val; in spvOptimizerOptionsSetValidatorOptions() 39 spv_optimizer_options options, uint32_t val) { in spvOptimizerOptionsSetMaxIdBound() 40 options->max_id_bound_ = val; in spvOptimizerOptionsSetMaxIdBound() 44 spv_optimizer_options options, bool val) { in spvOptimizerOptionsSetPreserveBindings() 45 options->preserve_bindings_ = val; in spvOptimizerOptionsSetPreserveBindings() 49 spv_optimizer_options options, bool val) { in spvOptimizerOptionsSetPreserveSpecConstants() 50 options->preserve_spec_constants_ = val; in spvOptimizerOptionsSetPreserveSpecConstants() 29 spvOptimizerOptionsSetRunValidator( spv_optimizer_options options, bool val) spvOptimizerOptionsSetRunValidator() argument 34 spvOptimizerOptionsSetValidatorOptions( spv_optimizer_options options, spv_validator_options val) spvOptimizerOptionsSetValidatorOptions() argument 38 spvOptimizerOptionsSetMaxIdBound( spv_optimizer_options options, uint32_t val) spvOptimizerOptionsSetMaxIdBound() argument 43 spvOptimizerOptionsSetPreserveBindings( spv_optimizer_options options, bool val) spvOptimizerOptionsSetPreserveBindings() argument 48 spvOptimizerOptionsSetPreserveSpecConstants( spv_optimizer_options options, bool val) spvOptimizerOptionsSetPreserveSpecConstants() argument [all...] |
/third_party/cups-filters/filter/ |
H A D | common.c | 60 const char *val; /* Option value */ in SetCommonOptions() local 197 if ((val = cupsGetOption("landscape", num_options, options)) != NULL) in SetCommonOptions() 199 if (strcasecmp(val, "no") != 0 && strcasecmp(val, "off") != 0 && in SetCommonOptions() 200 strcasecmp(val, "false") != 0) in SetCommonOptions() 208 else if ((val = cupsGetOption("orientation-requested", num_options, options)) != NULL) in SetCommonOptions() 219 Orientation = atoi(val) - 3; in SetCommonOptions() 224 if ((val = cupsGetOption("page-left", num_options, options)) != NULL) in SetCommonOptions() 229 PageLeft = (float)atof(val); in SetCommonOptions() 232 PageBottom = (float)atof(val); in SetCommonOptions() [all...] |
H A D | imagetopdf.c | 685 const char *val; /* Option value */ in main() local 795 if ((val = cupsGetOption("Duplex",num_options,options)) != 0 && in main() 796 (!strcasecmp(val, "true") || !strcasecmp(val, "on") || in main() 797 !strcasecmp(val, "yes"))) { in main() 804 } else if ((val = cupsGetOption("sides",num_options,options)) != 0 && in main() 805 (!strcasecmp(val, "two-sided-long-edge") || in main() 806 !strcasecmp(val, "two-sided-short-edge"))) { in main() 815 if ((val = cupsGetOption("OutputOrder",num_options,options)) != 0) { in main() 816 if (!strcasecmp(val, "Revers in main() 1075 const char *val; main() local [all...] |
/third_party/mesa3d/src/amd/common/ |
H A D | ac_msgpack.c | 180 void ac_msgpack_add_uint(struct ac_msgpack *msgpack, uint64_t val) in ac_msgpack_add_uint() argument 182 if (val <= 0x7f) { in ac_msgpack_add_uint() 185 msgpack->mem[msgpack->offset] = val; in ac_msgpack_add_uint() 187 } else if (val <= 0xff) { in ac_msgpack_add_uint() 191 msgpack->mem[msgpack->offset + 1] = val; in ac_msgpack_add_uint() 193 } else if (val <= 0xffff) { in ac_msgpack_add_uint() 197 *((uint16_t*)&msgpack->mem[msgpack->offset + 1]) = util_bswap16(val); in ac_msgpack_add_uint() 199 } else if (val <= 0xffffffff) { in ac_msgpack_add_uint() 203 *((uint32_t*)&msgpack->mem[msgpack->offset + 1]) = util_bswap32(val); in ac_msgpack_add_uint() 209 *((uint64_t*)&msgpack->mem[msgpack->offset + 1]) = util_bswap64(val); in ac_msgpack_add_uint() 214 ac_msgpack_add_int(struct ac_msgpack *msgpack, int64_t val) ac_msgpack_add_int() argument [all...] |
/third_party/rust/crates/bindgen/bindgen-tests/tests/expectations/tests/ |
H A D | bitfield_pragma_packed.rs | 37 pub fn set_bit(&mut self, index: usize, val: bool) { in set_bit() 47 if val { in set_bit() 61 let mut val = 0; in get() variables 69 val |= 1 << index; in get() 72 val in get() 75 pub fn set(&mut self, bit_offset: usize, bit_width: u8, val: u64) { in set() 84 let val_bit_is_set = val & mask == mask; in set() 121 pub fn set_a(&mut self, val: ::std::os::raw::c_uchar) { in set_a() 123 let val: u8 = ::std::mem::transmute(val); in set_a() [all...] |
/third_party/skia/third_party/externals/libjpeg-turbo/simd/arm/ |
H A D | jidctint-neon.c | 371 int32x4_t tmp2 = vmull_lane_s16(z2_s16, consts.val[0], 1); in jsimd_idct_islow_pass1_regular() 372 int32x4_t tmp3 = vmull_lane_s16(z2_s16, consts.val[1], 2); in jsimd_idct_islow_pass1_regular() 373 tmp2 = vmlal_lane_s16(tmp2, z3_s16, consts.val[2], 1); in jsimd_idct_islow_pass1_regular() 374 tmp3 = vmlal_lane_s16(tmp3, z3_s16, consts.val[0], 1); in jsimd_idct_islow_pass1_regular() 406 int32x4_t z3 = vmull_lane_s16(z3_s16, consts.val[2], 3); in jsimd_idct_islow_pass1_regular() 407 int32x4_t z4 = vmull_lane_s16(z3_s16, consts.val[1], 3); in jsimd_idct_islow_pass1_regular() 408 z3 = vmlal_lane_s16(z3, z4_s16, consts.val[1], 3); in jsimd_idct_islow_pass1_regular() 409 z4 = vmlal_lane_s16(z4, z4_s16, consts.val[2], 0); in jsimd_idct_islow_pass1_regular() 428 tmp0 = vmull_lane_s16(tmp0_s16, consts.val[0], 3); in jsimd_idct_islow_pass1_regular() 429 tmp1 = vmull_lane_s16(tmp1_s16, consts.val[ in jsimd_idct_islow_pass1_regular() [all...] |
/third_party/node/deps/cares/src/lib/ |
H A D | ares__llist.c | 125 void *val) in ares__llist_insert_at() 129 if (list == NULL || val == NULL) { in ares__llist_insert_at() 139 node->data = val; in ares__llist_insert_at() 145 ares__llist_node_t *ares__llist_insert_first(ares__llist_t *list, void *val) in ares__llist_insert_first() argument 147 return ares__llist_insert_at(list, ARES__LLIST_INSERT_HEAD, NULL, val); in ares__llist_insert_first() 150 ares__llist_node_t *ares__llist_insert_last(ares__llist_t *list, void *val) in ares__llist_insert_last() argument 152 return ares__llist_insert_at(list, ARES__LLIST_INSERT_TAIL, NULL, val); in ares__llist_insert_last() 156 void *val) in ares__llist_insert_before() 163 val); in ares__llist_insert_before() 167 void *val) in ares__llist_insert_after() 122 ares__llist_insert_at(ares__llist_t *list, ares__llist_insert_type_t type, ares__llist_node_t *at, void *val) ares__llist_insert_at() argument 155 ares__llist_insert_before(ares__llist_node_t *node, void *val) ares__llist_insert_before() argument 166 ares__llist_insert_after(ares__llist_node_t *node, void *val) ares__llist_insert_after() argument 280 void *val; ares__llist_node_claim() local 296 void *val; ares__llist_node_destroy() local 310 ares__llist_node_replace(ares__llist_node_t *node, void *val) ares__llist_node_replace() argument [all...] |
/third_party/mesa3d/src/compiler/isaspec/ |
H A D | decode.c | 80 bitmask_t val; member 251 push_scope(struct decode_state *state, const struct isa_bitset *bitset, bitmask_t val) in push_scope() argument 255 BITSET_COPY(scope->val.bitset, val.bitset); in push_scope() 305 * matches against 'val' 309 bitmask_t val) in find_bitset() 318 // m = (val & bitsets[n]->mask) & ~bitsets[n]->dontcare; in find_bitset() 322 BITSET_AND(m.bitset, val.bitset, bitsets[n]->mask.bitset); in find_bitset() 349 BITSET_AND(m.bitset, match->dontcare.bitset, val.bitset); in find_bitset() 403 bitmask_t val, mas in extract_field() local 308 find_bitset(struct decode_state *state, const struct isa_bitset **bitsets, bitmask_t val) find_bitset() argument 432 bitmask_t val; find_display() local 462 display_bitset_field(struct decode_scope *scope, const struct isa_field *field, bitmask_t val) display_bitset_field() argument 479 display_enum_field(struct decode_scope *scope, const struct isa_field *field, bitmask_t val) display_enum_field() argument 521 uint64_t val = evaluate_expr(scope, field->expr); resolve_field() local 535 bitmask_t val; isa_decode_field() local 594 uint64_t val = bitmask_to_uint64_t(v); display_field() local [all...] |
/third_party/backends/backend/ |
H A D | kvs1025_opt.c | 394 index = get_string_list_index (str_list, dev->val[idx].s); in get_optval_list() 409 i = get_string_list_index (go_scan_mode_list, dev->val[OPT_MODE].s); in kv_get_mode() 431 dev->val[OPT_PAPER_SIZE].s); in kv_calc_paper_size() 434 int x_tl = mmToIlu (SANE_UNFIX (dev->val[OPT_TL_X].w)); in kv_calc_paper_size() 435 int y_tl = mmToIlu (SANE_UNFIX (dev->val[OPT_TL_Y].w)); in kv_calc_paper_size() 436 int x_br = mmToIlu (SANE_UNFIX (dev->val[OPT_BR_X].w)); in kv_calc_paper_size() 437 int y_br = mmToIlu (SANE_UNFIX (dev->val[OPT_BR_Y].w)); in kv_calc_paper_size() 443 if (dev->val[OPT_LANDSCAPE].s) in kv_calc_paper_size() 504 memset (dev->val, 0, sizeof (dev->val)); in kv_init_options() 932 kv_control_option(PKV_DEV dev, SANE_Int option, SANE_Action action, void *val, SANE_Int * info) kv_control_option() argument [all...] |