/third_party/ffmpeg/libavcodec/ |
H A D | g723_1dec.c | 153 int temp, info_bits, i; in unpack_bitstream() local 199 temp = get_bits(&gb, 12); in unpack_bitstream() 203 p->subframe[i].dirac_train = temp >> 11; in unpack_bitstream() 204 temp &= 0x7FF; in unpack_bitstream() 207 p->subframe[i].ad_cb_gain = FASTDIV(temp, GAIN_LEVELS); in unpack_bitstream() 209 p->subframe[i].amp_index = temp - p->subframe[i].ad_cb_gain * in unpack_bitstream() 225 temp = get_bits(&gb, 13); in unpack_bitstream() 226 p->subframe[0].pulse_pos = temp / 810; in unpack_bitstream() 228 temp -= p->subframe[0].pulse_pos * 810; in unpack_bitstream() 229 p->subframe[1].pulse_pos = FASTDIV(temp, 9 in unpack_bitstream() 285 int temp, i, j; gen_fcb_excitation() local 522 int index, ccr, tgt_eng, best_eng, temp; comp_interp_index() local 623 int temp = buf[i] >> 2; gain_scale() local 685 int temp; formant_postfilter() local [all...] |
/third_party/elfio/elfio/ |
H A D | elfio_array.hpp | 57 const T temp = *reinterpret_cast<const T*>( array_section->get_data() + in get_entry() local 59 address = convertor( temp ); in get_entry() 69 T temp = convertor( (T)address ); in add_entry() local 70 array_section->append_data( reinterpret_cast<char*>( &temp ), in add_entry() 71 sizeof( temp ) ); in add_entry()
|
/third_party/libwebsockets/lib/jose/jwe/ |
H A D | private-lib-jose-jwe.h | 36 char *temp, int *temp_len); 58 char *temp, int *temp_len); 67 char *temp, int *temp_len); 84 char *temp, int *temp_len); 88 char *temp, int *temp_len);
|
/third_party/ltp/testcases/misc/math/nextafter/ |
H A D | nextafter01.c | 50 FILE *temp; variable 63 setup(); /* temp file is now open */ in main() 70 fprintf(temp, "nextafter returned %e, expected answer or 1.0\n", in main() 81 fprintf(temp, "nextafter returned %e, expected answer or 1.0\n", in main() 92 fprintf(temp, "nextafter 3 returned %e, expected 1.0\n", in main() 111 temp = stderr; in setup()
|
/third_party/toybox/toys/posix/ |
H A D | tee.c | 39 struct fd_list *temp; in do_tee_open() local 41 temp = xmalloc(sizeof(struct fd_list)); in do_tee_open() 42 temp->next = TT.outputs; in do_tee_open() 43 if (1 == (temp->fd = fd)) TT.out++; in do_tee_open() 44 TT.outputs = temp; in do_tee_open()
|
/third_party/mesa3d/src/compiler/glsl/ |
H A D | lower_discard.cpp | 42 * temp = false; 45 * temp = cond2; 50 * discard temp; 65 * temp = false; 70 * temp = cond2; 73 * discard temp; 90 * temp = false; 93 * temp = cond2; 97 * temp = cond3; 100 * discard temp; 178 ir_variable *temp = new(mem_ctx) ir_variable(glsl_type::bool_type, visit_leave() local [all...] |
/third_party/ltp/testcases/kernel/fs/binfmt_misc/ |
H A D | binfmt_misc02.sh | 30 eval $file >temp 2>&1 31 if [ $? -ne 0 ] || ! grep -q "$string" temp; then 42 eval $file >temp 2>&1 43 if [ $? -eq 0 ] || grep -q "$string" temp; then 56 eval $file >temp 2>&1 57 if [ $? -eq 0 ] || grep -q "$string" temp; then
|
/third_party/typescript/tests/baselines/reference/ |
H A D | destructuringArrayBindingPatternAndAssignment2.js | 22 var temp = [1, 2, 3] variable 23 var [c0, c1]: [number, number] = [...temp]; // Error 24 var [c2, c3]: [string, string] = [...temp]; // Error 61 var temp = [1, 2, 3];
variable 62 var _e = __spreadArray([], temp, true), c0 = _e[0], c1 = _e[1]; // Error
63 var _f = __spreadArray([], temp, true), c2 = _f[0], c3 = _f[1]; // Error
|
H A D | destructuringVariableDeclaration1ES6.js | 10 var temp = { t1: true, t2: "false" }; 11 var [b2 = 3, b3 = true, b4 = temp] = [3, false, { t1: false, t2: "hello" }]; 12 var [b5 = 3, b6 = true, b7 = temp] = [undefined, undefined, undefined]; 52 var temp = { t1: true, t2: "false" };
53 var [b2 = 3, b3 = true, b4 = temp] = [3, false, { t1: false, t2: "hello" }];
54 var [b5 = 3, b6 = true, b7 = temp] = [undefined, undefined, undefined];
|
H A D | destructuringParameterDeclaration4.js | 28 var temp = [1, 2, 3]; variable 30 constructor(public ...temp) { } // Error, rest parameter can't have properties 84 var temp = [1, 2, 3];
variable 87 var temp = [];
89 temp[_i] = arguments[_i];
91 this.temp = temp;
|
/third_party/mesa3d/src/gallium/tests/graw/ |
H A D | graw_util.h | 228 struct pipe_resource temp, *tex; in graw_util_create_tex2d() local 231 memset(&temp, 0, sizeof(temp)); in graw_util_create_tex2d() 232 temp.target = PIPE_TEXTURE_2D; in graw_util_create_tex2d() 233 temp.format = format; in graw_util_create_tex2d() 234 temp.width0 = width; in graw_util_create_tex2d() 235 temp.height0 = height; in graw_util_create_tex2d() 236 temp.depth0 = 1; in graw_util_create_tex2d() 237 temp.last_level = 0; in graw_util_create_tex2d() 238 temp in graw_util_create_tex2d() [all...] |
/third_party/node/deps/v8/third_party/test262-harness/src/ |
H A D | _packager.py | 116 temp = [os.path.join(dirName, x) for x in os.listdir(dirName) \ 118 if len(temp)!=0: 124 temp = getJSCount(dirName) 125 if temp==0: 130 # elif temp < MAX_CASES_PER_JSON: 135 # temp = os.listdir(dirName) 136 # for tempSubdir in temp: 165 for temp in os.listdir(TEST262_CASES_DIR): 166 temp = os.path.join(TEST262_CASES_DIR, temp) variable [all...] |
/third_party/icu/icu4c/source/test/cintltst/ |
H A D | cg7coll.c | 204 UChar temp[sizeof(rules)]; in TestDemo1() local 206 u_uastrcpy(temp, rules); in TestDemo1() 210 myCollation = ucol_openRules(temp, len, UCOL_OFF, UCOL_DEFAULT_STRENGTH,NULL, &status); in TestDemo1() 235 UChar temp[sizeof(rules)]; in TestDemo2() local 237 u_uastrcpy(temp, rules); in TestDemo2() 241 myCollation = ucol_openRules(temp, len, UCOL_OFF, UCOL_DEFAULT_STRENGTH, NULL, &status); in TestDemo2() 264 UChar temp[sizeof(rules)]; in TestDemo3() local 266 u_uastrcpy(temp, rules); in TestDemo3() 270 myCollation = ucol_openRules(temp, len, UCOL_OFF, UCOL_DEFAULT_STRENGTH, NULL, &status); in TestDemo3() 294 UChar temp[sizeo in TestDemo4() local [all...] |
/third_party/skia/src/core/ |
H A D | SkPoint.cpp | 119 SkScalar temp = sk_ieee_float_divide(det, uLengthSqd); in DistanceToLineBetweenSqd() local 120 temp *= det; in DistanceToLineBetweenSqd() 123 if (!SkScalarIsFinite(temp)) { in DistanceToLineBetweenSqd() 126 return temp; in DistanceToLineBetweenSqd() 162 SkScalar temp = sk_ieee_float_divide(det, uLengthSqd); in DistanceToLineSegmentBetweenSqd() local 163 temp *= det; in DistanceToLineSegmentBetweenSqd() 166 if (!SkScalarIsFinite(temp)) { in DistanceToLineSegmentBetweenSqd() 169 return temp; in DistanceToLineSegmentBetweenSqd()
|
/third_party/curl/tests/ |
H A D | getpart.pm | 334 open(my $temp, ">", "$filename") || die "Failure writing file"; 335 binmode($temp,":raw"); # cygwin fix by Kevin Roth 337 print $temp $_; 339 close($temp) || die "Failure writing file"; 349 if (open(my $temp, "<", "$filename")) { 350 while(<$temp>) { 353 close($temp);
|
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/ |
H A D | SortedSetRelation.java | 144 TreeSet<? extends T> temp; in doOperation() 164 temp = new TreeSet<T>(b); in doOperation() 165 temp.removeAll(a); in doOperation() 167 a.addAll(temp); in doOperation() 170 temp = new TreeSet<T>(b); in doOperation() 171 temp.removeAll(a); in doOperation() 173 a.addAll(temp); in doOperation()
|
/third_party/icu/icu4c/source/common/ |
H A D | servlk.cpp | 79 UnicodeString temp(buffer); in prefix() 80 result.append(temp); in prefix() 151 UnicodeString temp(id); in isFallbackOf() 152 parseSuffix(temp); in isFallbackOf() 153 return temp.indexOf(_primaryID) == 0 && in isFallbackOf() 154 (temp.length() == _primaryID.length() || in isFallbackOf() 155 temp.charAt(_primaryID.length()) == UNDERSCORE_CHAR); in isFallbackOf()
|
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/impl/ |
H A D | SortedSetRelation.java | 146 TreeSet<? extends T> temp; in doOperation() 166 temp = new TreeSet<T>(b); in doOperation() 167 temp.removeAll(a); in doOperation() 169 a.addAll(temp); in doOperation() 172 temp = new TreeSet<T>(b); in doOperation() 173 temp.removeAll(a); in doOperation() 175 a.addAll(temp); in doOperation()
|
/third_party/node/deps/icu-small/source/common/ |
H A D | servlk.cpp | 79 UnicodeString temp(buffer); in prefix() 80 result.append(temp); in prefix() 151 UnicodeString temp(id); in isFallbackOf() 152 parseSuffix(temp); in isFallbackOf() 153 return temp.indexOf(_primaryID) == 0 && in isFallbackOf() 154 (temp.length() == _primaryID.length() || in isFallbackOf() 155 temp.charAt(_primaryID.length()) == UNDERSCORE_CHAR); in isFallbackOf()
|
/third_party/skia/third_party/externals/icu/source/common/ |
H A D | servlk.cpp | 79 UnicodeString temp(buffer); in prefix() 80 result.append(temp); in prefix() 151 UnicodeString temp(id); in isFallbackOf() 152 parseSuffix(temp); in isFallbackOf() 153 return temp.indexOf(_primaryID) == 0 && in isFallbackOf() 154 (temp.length() == _primaryID.length() || in isFallbackOf() 155 temp.charAt(_primaryID.length()) == UNDERSCORE_CHAR); in isFallbackOf()
|
/third_party/selinux/checkpolicy/ |
H A D | queue.c | 109 queue_node_ptr_t p, temp; in queue_destroy() local 117 temp = p; in queue_destroy() 119 free(temp); in queue_destroy() 147 queue_node_ptr_t p, last, temp; in queue_map_remove_on_error() local 168 temp = p; in queue_map_remove_on_error() 170 g(temp->element, vp); in queue_map_remove_on_error() 171 free(temp); in queue_map_remove_on_error()
|
/third_party/ffmpeg/libavcodec/x86/ |
H A D | h264_qpel.c | 247 LOCAL_ALIGNED(ALIGN, uint8_t, temp, [SIZE*SIZE]);\ 248 ff_put_h264_qpel ## SIZE ## _v_lowpass_ ## MMX(temp, src, SIZE, stride);\ 249 ff_ ## OPNAME ## pixels ## SIZE ## _l2_ ## MMX(dst, src, temp, stride, stride, SIZE);\ 259 LOCAL_ALIGNED(ALIGN, uint8_t, temp, [SIZE*SIZE]);\ 260 ff_put_h264_qpel ## SIZE ## _v_lowpass_ ## MMX(temp, src, SIZE, stride);\ 261 ff_ ## OPNAME ## pixels ## SIZE ## _l2_ ## MMX(dst, src+stride, temp, stride, stride, SIZE);\ 267 LOCAL_ALIGNED(ALIGN, uint8_t, temp, [SIZE*SIZE]);\ 268 ff_put_h264_qpel ## SIZE ## _v_lowpass_ ## MMX(temp, src, SIZE, stride);\ 269 ff_ ## OPNAME ## h264_qpel ## SIZE ## _h_lowpass_l2_ ## MMX(dst, src, temp, stride, SIZE);\ 274 LOCAL_ALIGNED(ALIGN, uint8_t, temp, [SIZ [all...] |
/third_party/mesa3d/src/broadcom/compiler/ |
H A D | vir_register_allocate.c | 42 temp_to_node(uint32_t temp) in temp_to_node() argument 44 return temp + ACC_COUNT; in temp_to_node() 56 uint32_t temp) in get_temp_class_bits() 58 return nodes->info[temp_to_node(temp)].class_bits; in get_temp_class_bits() 63 uint32_t temp, uint8_t class_bits) in set_temp_class_bits() 65 nodes->info[temp_to_node(temp)].class_bits = class_bits; in set_temp_class_bits() 84 choose_reg_class_for_temp(struct v3d_compile *c, uint32_t temp) in choose_reg_class_for_temp() argument 86 assert(temp < c->num_temps && temp < c->nodes.alloc_count); in choose_reg_class_for_temp() 87 return choose_reg_class(c, get_temp_class_bits(&c->nodes, temp)); in choose_reg_class_for_temp() 55 get_temp_class_bits(struct v3d_ra_node_info *nodes, uint32_t temp) get_temp_class_bits() argument 62 set_temp_class_bits(struct v3d_ra_node_info *nodes, uint32_t temp, uint8_t class_bits) set_temp_class_bits() argument 128 vir_is_mov_uniform(struct v3d_compile *c, int temp) vir_is_mov_uniform() argument 166 can_reconstruct_temp(struct v3d_compile *c, int temp) can_reconstruct_temp() argument 215 get_spill_type_for_temp(struct v3d_compile *c, int temp) get_spill_type_for_temp() argument 253 int temp = inst->src[i].index; v3d_choose_spill_node() local 271 int temp = inst->dst.index; v3d_choose_spill_node() local 340 add_node(struct v3d_compile *c, uint32_t temp, uint8_t class_bits) add_node() argument 638 struct qreg temp = v3d_spill_reg() local 1172 uint32_t temp = node_to_temp(node); v3d_register_allocate() local [all...] |
/third_party/FreeBSD/sys/dev/usb/ |
H A D | usb_request.c | 109 int temp; in usbd_get_debug_bits() local 115 temp = usb_ctrl_debug.ds_delay; in usbd_get_debug_bits() 116 if (temp < 0) in usbd_get_debug_bits() 117 temp = 0; in usbd_get_debug_bits() 118 else if (temp > (16*1024)) in usbd_get_debug_bits() 119 temp = (16*1024); in usbd_get_debug_bits() 121 dbg->ds_delay = temp; in usbd_get_debug_bits() 125 temp = usb_ctrl_debug.ss_delay; in usbd_get_debug_bits() 126 if (temp < 0) in usbd_get_debug_bits() 127 temp in usbd_get_debug_bits() 397 uint16_t temp; usbd_do_request_flags() local 1067 uint8_t *temp; usbd_req_get_string_any() local [all...] |
/third_party/mesa3d/src/gallium/drivers/softpipe/ |
H A D | sp_image.c | 378 unsigned temp = sdata[c]; in handle_op_uint() local 380 ((uint32_t *)rgba[c])[qi] = temp; in handle_op_uint() 385 unsigned temp = sdata[c]; in handle_op_uint() local 387 ((uint32_t *)rgba[c])[qi] = temp; in handle_op_uint() 395 unsigned temp = sdata[c]; in handle_op_uint() local 397 ((uint32_t *)rgba[c])[qi] = temp; in handle_op_uint() 402 unsigned temp = sdata[c]; in handle_op_uint() local 404 ((uint32_t *)rgba[c])[qi] = temp; in handle_op_uint() 409 unsigned temp = sdata[c]; in handle_op_uint() local 411 ((uint32_t *)rgba[c])[qi] = temp; in handle_op_uint() 416 unsigned temp = sdata[c]; handle_op_uint() local 494 int temp = sdata[c]; handle_op_int() local 501 int temp = sdata[c]; handle_op_int() local 511 int temp = sdata[c]; handle_op_int() local 518 int temp = sdata[c]; handle_op_int() local 525 int temp = sdata[c]; handle_op_int() local 532 int temp = sdata[c]; handle_op_int() local 605 int temp = sdata[c]; handle_op_r32f_xchg() local [all...] |