| /third_party/ffmpeg/libavutil/ |
| H A D | eval.c | 233 int idx= av_clip(eval_expr(p, e->param[0]), 0, VARS-1); in eval_expr() local 234 uint64_t r= isnan(p->var[idx]) ? 0 : p->var[idx]; in eval_expr() 236 p->var[idx]= r; in eval_expr()
|
| /third_party/alsa-lib/src/pcm/ |
| H A D | pcm_meter.c | 1015 int idx; in s16_enable() local 1025 idx = snd_pcm_linear_put_index(SND_PCM_FORMAT_S16, SND_PCM_FORMAT_S16); in s16_enable() 1041 idx = snd_pcm_linear_convert_index(spcm->format, SND_PCM_FORMAT_S16); in s16_enable() 1046 s16->index = idx; in s16_enable()
|
| /third_party/icu/icu4c/source/test/intltest/ |
| H A D | tzfmttst.cpp | 312 int32_t idx = 0; in TestTimeZoneRoundTrip() local 313 while (idx < tzstr.length()) { in TestTimeZoneRoundTrip() 314 UChar32 cp = tzstr.char32At(idx); in TestTimeZoneRoundTrip() 318 idx += U16_LENGTH(cp); in TestTimeZoneRoundTrip()
|
| /third_party/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/format/ |
| H A D | TimeZoneFormatTest.java | 249 int idx = 0; in TestTimeZoneRoundTrip() 250 while (idx < tzstr.length()) { in TestTimeZoneRoundTrip() 251 int cp = tzstr.codePointAt(idx); in TestTimeZoneRoundTrip() 255 idx += UCharacter.charCount(cp); in TestTimeZoneRoundTrip()
|
| /third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/format/ |
| H A D | TimeZoneFormatTest.java | 252 int idx = 0; in TestTimeZoneRoundTrip() 253 while (idx < tzstr.length()) { in TestTimeZoneRoundTrip() 254 int cp = tzstr.codePointAt(idx); in TestTimeZoneRoundTrip() 258 idx += UCharacter.charCount(cp); in TestTimeZoneRoundTrip()
|
| /third_party/jerryscript/jerry-core/ecma/operations/ |
| H A D | ecma-function-object.c | 193 for (ecma_length_t idx = 1; idx < arguments_list_len - 1; idx++) in ecma_op_create_dynamic_function_arguments_helper() 195 str_p = ecma_op_to_string (arguments_list_p[idx]); in ecma_op_create_dynamic_function_arguments_helper()
|
| /third_party/mesa3d/src/compiler/spirv/ |
| H A D | vtn_cfg.c | 214 unsigned idx = 0; in vtn_cfg_handle_prepass_instruction() local 219 func->params[idx++] = (nir_parameter) { in vtn_cfg_handle_prepass_instruction() 226 glsl_type_add_to_function_params(func_type->params[i]->type, func, &idx); in vtn_cfg_handle_prepass_instruction() 227 assert(idx == num_params); in vtn_cfg_handle_prepass_instruction()
|
| /third_party/mesa3d/src/gallium/drivers/r600/sb/ |
| H A D | sb_ir.h | 67 static unsigned sel(unsigned idx) { return (idx-1) >> 2; } in sel() 68 static unsigned chan(unsigned idx) { return (idx-1) & 3; } in chan()
|
| /third_party/mesa3d/src/imgui/ |
| H A D | imstb_textedit.h | 646 static int is_word_boundary( STB_TEXTEDIT_STRING *str, int idx ) in is_word_boundary() 648 return idx > 0 ? (STB_TEXTEDIT_IS_SPACE( STB_TEXTEDIT_GETCHAR(str,idx-1) ) && !STB_TEXTEDIT_IS_SPACE( STB_TEXTEDIT_GETCHAR(str, idx) ) ) : 1; in is_word_boundary()
|
| /third_party/nghttp2/src/ |
| H A D | shrpx_config.h | 565 // Mapping hash to idx which is an index into 568 AffinityHash(size_t idx, uint32_t hash) : idx(idx), hash(hash) {} in AffinityHash() 570 size_t idx; member
|
| /third_party/libdrm/tests/util/ |
| H A D | pattern.c | 648 #define FILL_COLOR(idx, r, g, b) \ in util_smpte_c8_gamma() 649 lut[idx].red = (r) << 8; \ in util_smpte_c8_gamma() 650 lut[idx].green = (g) << 8; \ in util_smpte_c8_gamma() 651 lut[idx].blue = (b) << 8 in util_smpte_c8_gamma()
|
| /third_party/node/deps/openssl/openssl/ssl/ |
| H A D | ssl_sess.c | 112 int SSL_SESSION_set_ex_data(SSL_SESSION *s, int idx, void *arg) in SSL_SESSION_set_ex_data() argument 114 return CRYPTO_set_ex_data(&s->ex_data, idx, arg); in SSL_SESSION_set_ex_data() 117 void *SSL_SESSION_get_ex_data(const SSL_SESSION *s, int idx) in SSL_SESSION_get_ex_data() argument 119 return CRYPTO_get_ex_data(&s->ex_data, idx); in SSL_SESSION_get_ex_data()
|
| /third_party/openssl/ssl/ |
| H A D | ssl_sess.c | 127 int SSL_SESSION_set_ex_data(SSL_SESSION *s, int idx, void *arg) in SSL_SESSION_set_ex_data() argument 129 return CRYPTO_set_ex_data(&s->ex_data, idx, arg); in SSL_SESSION_set_ex_data() 132 void *SSL_SESSION_get_ex_data(const SSL_SESSION *s, int idx) in SSL_SESSION_get_ex_data() argument 134 return CRYPTO_get_ex_data(&s->ex_data, idx); in SSL_SESSION_get_ex_data()
|
| /third_party/skia/third_party/externals/imgui/ |
| H A D | imstb_textedit.h | 648 static int is_word_boundary( STB_TEXTEDIT_STRING *str, int idx ) in is_word_boundary() 650 return idx > 0 ? (STB_TEXTEDIT_IS_SPACE( STB_TEXTEDIT_GETCHAR(str,idx-1) ) && !STB_TEXTEDIT_IS_SPACE( STB_TEXTEDIT_GETCHAR(str, idx) ) ) : 1; in is_word_boundary()
|
| /third_party/python/Parser/ |
| H A D | action_helpers.c | 838 int idx = 0; in _PyPegen_seq_extract_starred_exprs() local 842 asdl_seq_SET(new_seq, idx++, k->element); in _PyPegen_seq_extract_starred_exprs() 862 int idx = 0; in _PyPegen_seq_delete_starred_exprs() local 866 asdl_seq_SET(new_seq, idx++, k->element); in _PyPegen_seq_delete_starred_exprs()
|
| /third_party/python/Python/ |
| H A D | ast_opt.c | 557 expr_ty arg, idx; in fold_subscr() local 560 idx = node->v.Subscript.slice; in fold_subscr() 563 idx->kind != Constant_kind) in fold_subscr() 568 newval = PyObject_GetItem(arg->v.Constant.value, idx->v.Constant.value); in fold_subscr()
|
| /third_party/pulseaudio/src/pulsecore/ |
| H A D | pstream.c | 482 size_t length, idx; in pa_pstream_send_memblock() local 493 idx = 0; in pa_pstream_send_memblock() 507 i->chunk.index = chunk->index + idx; in pa_pstream_send_memblock() 520 idx += n; in pa_pstream_send_memblock()
|
| /third_party/protobuf/src/google/protobuf/util/internal/ |
| H A D | protostream_objectwriter.cc | 117 size_t idx = input.rfind('.'); in SplitSecondsAndNanos() local 118 if (idx != std::string::npos) { in SplitSecondsAndNanos() 119 *seconds = input.substr(0, idx); in SplitSecondsAndNanos() 120 *nanos = input.substr(idx + 1); in SplitSecondsAndNanos()
|
| /third_party/rust/crates/rust-openssl/openssl-sys/src/handwritten/ |
| H A D | ssl.rs | 802 pub fn SSL_set_ex_data(ssl: *mut SSL, idx: c_int, data: *mut c_void) -> c_int; in SSL_set_ex_data() 803 pub fn SSL_get_ex_data(ssl: *const SSL, idx: c_int) -> *mut c_void; in SSL_get_ex_data() 814 pub fn SSL_CTX_set_ex_data(ctx: *mut SSL_CTX, idx: c_int, data: *mut c_void) -> c_int; in SSL_CTX_set_ex_data() 815 pub fn SSL_CTX_get_ex_data(ctx: *const SSL_CTX, idx: c_int) -> *mut c_void; in SSL_CTX_get_ex_data()
|
| /third_party/wpa_supplicant/wpa_supplicant-2.9/src/drivers/ |
| H A D | driver_hostap.c | 443 param->u.crypt.idx = key_idx; in wpa_driver_hostap_set_key() 458 int idx, u8 *seq) in hostap_get_seqnum() 477 param->u.crypt.idx = idx; in hostap_get_seqnum() 457 hostap_get_seqnum(const char *ifname, void *priv, const u8 *addr, int idx, u8 *seq) hostap_get_seqnum() argument
|
| H A D | driver_nl80211_scan.c | 985 int idx; member 997 ctx->idx, MAC2STR(r->bssid), r->freq, in nl80211_dump_scan_handler() 999 ctx->idx++; in nl80211_dump_scan_handler() 1012 ctx.idx = 0; in nl80211_dump_scan()
|
| /third_party/wpa_supplicant/wpa_supplicant-2.9/src/wps/ |
| H A D | wps_validate.c | 959 static int wps_validate_network_key_index(const u8 *idx, int mandatory) in wps_validate_network_key_index() argument 961 if (idx == NULL) { in wps_validate_network_key_index() 973 static int wps_validate_network_idx(const u8 *idx, int mandatory) in wps_validate_network_idx() argument 975 if (idx == NULL) { in wps_validate_network_idx()
|
| /third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/drivers/ |
| H A D | driver_hostap.c | 447 param->u.crypt.idx = key_idx; in wpa_driver_hostap_set_key() 462 int idx, u8 *seq) in hostap_get_seqnum() 481 param->u.crypt.idx = idx; in hostap_get_seqnum() 461 hostap_get_seqnum(const char *ifname, void *priv, const u8 *addr, int idx, u8 *seq) hostap_get_seqnum() argument
|
| H A D | driver_nl80211_scan.c | 1026 int idx; member 1038 ctx->idx, MAC2STR_SEC(r->bssid), r->freq, in nl80211_dump_scan_handler() 1040 ctx->idx++; in nl80211_dump_scan_handler() 1053 ctx.idx = 0; in nl80211_dump_scan()
|
| /third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/wps/ |
| H A D | wps_validate.c | 959 static int wps_validate_network_key_index(const u8 *idx, int mandatory) in wps_validate_network_key_index() argument 961 if (idx == NULL) { in wps_validate_network_key_index() 973 static int wps_validate_network_idx(const u8 *idx, int mandatory) in wps_validate_network_idx() argument 975 if (idx == NULL) { in wps_validate_network_idx()
|