/third_party/mbedtls/library/ |
H A D | x509_create.c | 357 cur->val.tag = tag; in mbedtls_x509_string_to_names() 381 int critical, const unsigned char *val, size_t val_len) in mbedtls_x509_set_extension() 394 cur->val.p[0] = critical; in mbedtls_x509_set_extension() 395 memcpy(cur->val.p + 1, val, val_len); in mbedtls_x509_set_extension() 420 const unsigned char *name = cur_name->val.p; in x509_write_name() 421 size_t name_len = cur_name->val.len; in x509_write_name() 425 cur_name->val.tag, in x509_write_name() 517 MBEDTLS_ASN1_CHK_ADD(len, mbedtls_asn1_write_raw_buffer(p, start, ext->val.p + 1, in x509_write_extension() 518 ext->val in x509_write_extension() 380 mbedtls_x509_set_extension(mbedtls_asn1_named_data **head, const char *oid, size_t oid_len, int critical, const unsigned char *val, size_t val_len) mbedtls_x509_set_extension() argument [all...] |
/third_party/node/deps/npm/node_modules/iconv-lite/encodings/ |
H A D | dbcs-codec.js | 116 var val = codecOptions.encodeSkipVals[i]; 117 if (typeof val === 'number') 118 skipEncodeChars[val] = true; 120 for (var j = val.from; j <= val.to; j++) 152 var val = node[bytes[i]]; 154 if (val == UNASSIGNED) { // Create new node. 158 else if (val <= NODE_START) { // Existing node. 159 node = this.decodeTables[NODE_START - val]; 582 // Binary search for GB18030. Returns largest i such that table[i] <= val [all...] |
/third_party/node/deps/openssl/openssl/crypto/x509/ |
H A D | x_name.c | 26 static int x509_name_ex_d2i(ASN1_VALUE **val, 31 static int x509_name_ex_i2d(const ASN1_VALUE **val, unsigned char **out, 33 static int x509_name_ex_new(ASN1_VALUE **val, const ASN1_ITEM *it); 34 static void x509_name_ex_free(ASN1_VALUE **val, const ASN1_ITEM *it); 90 static int x509_name_ex_new(ASN1_VALUE **val, const ASN1_ITEM *it) in x509_name_ex_new() argument 101 *val = (ASN1_VALUE *)ret; in x509_name_ex_new() 138 static int x509_name_ex_d2i(ASN1_VALUE **val, in x509_name_ex_d2i() argument 172 if (*val) in x509_name_ex_d2i() 173 x509_name_ex_free(val, NULL); in x509_name_ex_d2i() 198 *val in x509_name_ex_d2i() 211 x509_name_ex_i2d(const ASN1_VALUE **val, unsigned char **out, const ASN1_ITEM *it, int tag, int aclass) x509_name_ex_i2d() argument [all...] |
/third_party/pulseaudio/src/pulsecore/ffmpeg/ |
H A D | resample2.c | 235 FELEM2 val=0; in av_resample() local 239 val += src[FFABS(sample_index + i) % src_size] * filter[i]; in av_resample() 245 val += src[sample_index + i] * (FELEM2)filter[i]; in av_resample() 248 val+=(v2-val)*(FELEML)frac / c->src_incr; in av_resample() 251 val += src[sample_index + i] * (FELEM2)filter[i]; in av_resample() 256 dst[dst_index] = av_clip_int16(lrintf(val)); in av_resample() 258 val = (val + (1<<(FILTER_SHIFT-1)))>>FILTER_SHIFT; in av_resample() 259 dst[dst_index] = (unsigned)(val in av_resample() [all...] |
/third_party/openssl/crypto/x509/ |
H A D | x_name.c | 26 static int x509_name_ex_d2i(ASN1_VALUE **val, 31 static int x509_name_ex_i2d(const ASN1_VALUE **val, unsigned char **out, 33 static int x509_name_ex_new(ASN1_VALUE **val, const ASN1_ITEM *it); 34 static void x509_name_ex_free(ASN1_VALUE **val, const ASN1_ITEM *it); 90 static int x509_name_ex_new(ASN1_VALUE **val, const ASN1_ITEM *it) in x509_name_ex_new() argument 101 *val = (ASN1_VALUE *)ret; in x509_name_ex_new() 138 static int x509_name_ex_d2i(ASN1_VALUE **val, in x509_name_ex_d2i() argument 172 if (*val) in x509_name_ex_d2i() 173 x509_name_ex_free(val, NULL); in x509_name_ex_d2i() 198 *val in x509_name_ex_d2i() 211 x509_name_ex_i2d(const ASN1_VALUE **val, unsigned char **out, const ASN1_ITEM *it, int tag, int aclass) x509_name_ex_i2d() argument [all...] |
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/source/opt/ |
H A D | constants.cpp | 423 uint32_t ConstantManager::GetFloatConstId(float val) { in GetFloatConstId() argument 424 const Constant* c = GetFloatConst(val); in GetFloatConstId() 428 const Constant* ConstantManager::GetFloatConst(float val) { in GetFloatConst() argument 430 utils::FloatProxy<float> v(val); in GetFloatConst() 435 uint32_t ConstantManager::GetDoubleConstId(double val) { in GetDoubleConstId() argument 436 const Constant* c = GetDoubleConst(val); in GetDoubleConstId() 440 const Constant* ConstantManager::GetDoubleConst(double val) { in GetDoubleConst() argument 442 utils::FloatProxy<double> v(val); in GetDoubleConst() 447 uint32_t ConstantManager::GetSIntConst(int32_t val) { in GetSIntConst() argument 449 const Constant* c = GetConstant(sint_type, {static_cast<uint32_t>(val)}); in GetSIntConst() 453 GetUIntConst(uint32_t val) GetUIntConst() argument [all...] |
/third_party/toybox/toys/net/ |
H A D | ifconfig.c | 101 static void display_ifconfig(char *name, int always, unsigned long long val[]) in display_ifconfig() argument 263 if (val) { in display_ifconfig() 272 if (ioctl(TT.sockfd, SIOCGIFTXQLEN, &ifre) >= 0) val[16] = ifre.ifr_qlen; in display_ifconfig() 273 else val[16] = -1; in display_ifconfig() 279 else xprintf("%s:%llu ", label[j], val[j]); in display_ifconfig() 310 unsigned long long val[17]; in show_iface() local 319 for (j=0; j<16 && !errno; j++) val[j] = strtoll(buf, &buf, 0); in show_iface() 324 display_ifconfig(iface_name, 1, val); in show_iface() 334 display_ifconfig(sl->str, toys.optflags & FLAG_a, val); in show_iface() 444 int val, le in ifconfig_main() local [all...] |
/third_party/skia/experimental/skottiekit/ |
H A D | skottiekit_bindings.cpp | 45 using JSArray = emscripten::val; 46 using JSObject = emscripten::val; 47 using JSString = emscripten::val; 48 using SkPathOrNull = emscripten::val; 49 using Uint8Array = emscripten::val; 50 using Float32Array = emscripten::val; 146 JSArray props = emscripten::val::array(); in getColorProps() 149 JSObject prop = emscripten::val::object(); in getColorProps() 159 JSArray props = emscripten::val::array(); in getOpacityProps() 162 JSObject prop = emscripten::val in getOpacityProps() [all...] |
/third_party/wpa_supplicant/wpa_supplicant-2.9/wpa_supplicant/dbus/ |
H A D | dbus_new_handlers_wps.c | 39 char *val; in wpas_dbus_handler_wps_role() local 50 dbus_message_iter_get_basic(&variant_iter, &val); in wpas_dbus_handler_wps_role() 51 if (os_strcmp(val, "enrollee") == 0) in wpas_dbus_handler_wps_role() 53 else if (os_strcmp(val, "registrar") == 0) in wpas_dbus_handler_wps_role() 56 wpa_printf(MSG_DEBUG, "dbus: WPS.Start - Unknown role %s", val); in wpas_dbus_handler_wps_role() 57 *reply = wpas_dbus_error_invalid_args(message, val); in wpas_dbus_handler_wps_role() 70 char *val; in wpas_dbus_handler_wps_type() local 80 dbus_message_iter_get_basic(&variant_iter, &val); in wpas_dbus_handler_wps_type() 81 if (os_strcmp(val, "pin") == 0) in wpas_dbus_handler_wps_type() 83 else if (os_strcmp(val, "pb in wpas_dbus_handler_wps_type() [all...] |
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/wpa_supplicant/dbus/ |
H A D | dbus_new_handlers_wps.c | 39 char *val; in wpas_dbus_handler_wps_role() local 50 dbus_message_iter_get_basic(&variant_iter, &val); in wpas_dbus_handler_wps_role() 51 if (os_strcmp(val, "enrollee") == 0) in wpas_dbus_handler_wps_role() 53 else if (os_strcmp(val, "registrar") == 0) in wpas_dbus_handler_wps_role() 56 wpa_printf(MSG_DEBUG, "dbus: WPS.Start - Unknown role %s", val); in wpas_dbus_handler_wps_role() 57 *reply = wpas_dbus_error_invalid_args(message, val); in wpas_dbus_handler_wps_role() 70 char *val; in wpas_dbus_handler_wps_type() local 80 dbus_message_iter_get_basic(&variant_iter, &val); in wpas_dbus_handler_wps_type() 81 if (os_strcmp(val, "pin") == 0) in wpas_dbus_handler_wps_type() 83 else if (os_strcmp(val, "pb in wpas_dbus_handler_wps_type() [all...] |
/foundation/resourceschedule/ffrt/src/internal_inc/ |
H A D | osal.h | 38 char* val = std::getenv(name); in GetEnv() local 39 if (val == nullptr) { in GetEnv() 42 return val; in GetEnv()
|
/third_party/ffmpeg/libavcodec/ |
H A D | mjpegenc_huffman.h | 39 uint8_t val) in ff_mjpeg_encode_huffman_increment() 41 s->val_count[val]++; in ff_mjpeg_encode_huffman_increment() 44 uint8_t bits[17], uint8_t val[], 38 ff_mjpeg_encode_huffman_increment(MJpegEncHuffmanContext *s, uint8_t val) ff_mjpeg_encode_huffman_increment() argument
|
/third_party/ffmpeg/libavformat/ |
H A D | tee_common.c | 37 char *key, *val; in ff_tee_parse_slave_options() local 50 ret = av_opt_get_key_value(&p, "=", slave_opt_delim, 0, &key, &val); in ff_tee_parse_slave_options() 55 ret = av_dict_set(options, key, val, in ff_tee_parse_slave_options()
|
/third_party/astc-encoder/Source/ |
H A D | astcenc_mathlib.cpp | 23 * @param val The value to rotate. 26 static inline uint64_t rotl(uint64_t val, int count) in rotl() argument 28 return (val << count) | (val >> (64 - count)); in rotl()
|
/third_party/node/test/parallel/ |
H A D | test-stream-writable-invalid-chunk.js | 7 function testWriteType(val, objectMode, code) { 15 writable.write(val); 18 writable.write(val);
|
/third_party/musl/porting/linux/user/src/legacy/ |
H A D | ulimit.c | 11 long val; in ulimit() local 14 val = va_arg(ap, long); in ulimit() 16 rl.rlim_cur = 512ULL * val; in ulimit()
|
/third_party/musl/src/legacy/ |
H A D | ulimit.c | 16 long val; in ulimit() local 19 val = va_arg(ap, long); in ulimit() 21 rl.rlim_cur = 512ULL * val; in ulimit()
|
/third_party/musl/src/misc/ |
H A D | getsubopt.c | 4 int getsubopt(char **opt, char *const *keys, char **val) in getsubopt() argument 9 *val = NULL; in getsubopt() 18 *val = s + l + 1; in getsubopt()
|
/third_party/node/deps/cares/src/lib/ |
H A D | ares__htable_asvp.h | 52 * \param[in] val user-supplied value 54 typedef void (*ares__htable_asvp_val_free_t)(void *val); 85 * \param[in] val value to store (takes ownership). May be NULL. 89 ares_socket_t key, void *val); 95 * \param[out] val Optional. Pointer to store value. 99 ares_socket_t key, void **val);
|
H A D | ares__htable_szvp.h | 50 * \param[in] val user-supplied value 52 typedef void (*ares__htable_szvp_val_free_t)(void *val); 73 * \param[in] val value to store (takes ownership). May be NULL. 77 void *val); 83 * \param[out] val Optional. Pointer to store value. 87 void **val);
|
/third_party/ltp/testcases/open_posix_testsuite/conformance/interfaces/sem_getvalue/ |
H A D | 1-1.c | 32 int val; in main() local 44 if (sem_getvalue(mysemp, &val) == -1) { in main() 50 printf("Current value is: %d\n", val); in main() 53 if (val == 1) { in main()
|
H A D | 2-1.c | 30 int val; in main() local 48 if (sem_getvalue(mysemp, &val) < 0) { in main() 54 printf("Current value is: %d\n", val); in main() 57 if (val <= 0) { in main()
|
/third_party/ltp/testcases/open_posix_testsuite/conformance/interfaces/sem_post/ |
H A D | 1-2.c | 30 int val; in main() local 46 if (sem_getvalue(mysemp, &val) == -1) { in main() 51 } else if (val == 3) { in main()
|
H A D | 1-1.c | 30 int val; in main() local 46 if (sem_getvalue(mysemp, &val) == -1) { in main() 51 } else if (val == 1) { in main()
|
/third_party/ltp/testcases/open_posix_testsuite/conformance/interfaces/sem_timedwait/ |
H A D | 1-1.c | 32 int val, sts; in main() local 50 if (sem_getvalue(&mysemp, &val) == -1) { in main() 56 if (val == 0 && sts == 0) { in main()
|