Home
last modified time | relevance | path

Searched refs:tmp_p (Results 1 – 25 of 276) sorted by relevance

12345678910>>...12

/dports/sysutils/fluent-bit/fluent-bit-1.8.11/plugins/out_stackdriver/
H A Dstackdriver_http_request.c239 msgpack_object_kv *tmp_p; in extract_http_request() local
261 tmp_p = sub_field.via.map.ptr; in extract_http_request()
265 for (; tmp_p < tmp_pend; ++tmp_p) { in extract_http_request()
266 if (tmp_p->key.type != MSGPACK_OBJECT_STR) { in extract_http_request()
270 if (validate_key(tmp_p->key, HTTP_REQUEST_LATENCY, in extract_http_request()
272 if (tmp_p->val.type != MSGPACK_OBJECT_STR) { in extract_http_request()
275 validate_latency(tmp_p->val.via.str, http_request); in extract_http_request()
277 else if (validate_key(tmp_p->key, HTTP_REQUEST_PROTOCOL, in extract_http_request()
281 else if (validate_key(tmp_p->key, HTTP_REQUEST_REFERER, in extract_http_request()
318 else if (validate_key(tmp_p->key, HTTP_REQUEST_STATUS, in extract_http_request()
[all …]
H A Dstackdriver_operation.c79 msgpack_object_kv *tmp_p; in extract_operation() local
99 tmp_p = sub_field.via.map.ptr; in extract_operation()
103 for (; tmp_p < tmp_pend; ++tmp_p) { in extract_operation()
104 if (tmp_p->key.type != MSGPACK_OBJECT_STR) { in extract_operation()
108 if (validate_key(tmp_p->key, OPERATION_ID, OPERATION_ID_SIZE)) { in extract_operation()
109 try_assign_subfield_str(tmp_p->val, operation_id); in extract_operation()
111 else if (validate_key(tmp_p->key, OPERATION_PRODUCER, in extract_operation()
113 try_assign_subfield_str(tmp_p->val, operation_producer); in extract_operation()
116 try_assign_subfield_bool(tmp_p->val, operation_first); in extract_operation()
118 else if (validate_key(tmp_p->key, OPERATION_LAST, OPERATION_LAST_SIZE)) { in extract_operation()
[all …]
H A Dstackdriver_source_location.c66 msgpack_object_kv *tmp_p;
88 tmp_p = sub_field.via.map.ptr;
92 for (; tmp_p < tmp_pend; ++tmp_p) {
93 if (tmp_p->key.type != MSGPACK_OBJECT_STR) {
97 if (validate_key(tmp_p->key,
100 try_assign_subfield_str(tmp_p->val, source_location_file);
102 else if (validate_key(tmp_p->key,
105 try_assign_subfield_str(tmp_p->val, source_location_function);
107 else if (validate_key(tmp_p->key,
110 try_assign_subfield_int(tmp_p->val, source_location_line);
H A Dstackdriver_timestamp.c88 msgpack_object_kv *tmp_p; in extract_format_timestamp_object() local
103 tmp_p = p->val.via.map.ptr; in extract_format_timestamp_object()
106 for (; tmp_p < tmp_pend; ++tmp_p) { in extract_format_timestamp_object()
107 if (validate_key(tmp_p->key, "seconds", 7)) { in extract_format_timestamp_object()
109 seconds = get_integer(tmp_p->val); in extract_format_timestamp_object()
116 else if (validate_key(tmp_p->key, "nanos", 5)) { in extract_format_timestamp_object()
118 nanos = get_integer(tmp_p->val); in extract_format_timestamp_object()
/dports/graphics/opendx/dx-4.4.4/src/exec/dxmods/
H A Dplot.c3413 newcon = DXLn(tmp_p-4, tmp_p-3); in AddDiamond()
3417 newcon = DXLn(tmp_p-3, tmp_p-2); in AddDiamond()
3421 newcon = DXLn(tmp_p-2, tmp_p-1); in AddDiamond()
3425 newcon = DXLn(tmp_p-1, tmp_p-4); in AddDiamond()
3478 newcon = DXLn(tmp_p-4, tmp_p-3); in AddSquare()
3482 newcon = DXLn(tmp_p-3, tmp_p-2); in AddSquare()
3486 newcon = DXLn(tmp_p-2, tmp_p-1); in AddSquare()
3490 newcon = DXLn(tmp_p-1, tmp_p-4); in AddSquare()
3578 newcon = DXLn(tmp_p-3, tmp_p-2); in AddTri()
3582 newcon = DXLn(tmp_p-2, tmp_p-1); in AddTri()
[all …]
/dports/science/plumed/plumed2-2.7.2/src/multicolvar/
H A DVolumeGradientBase.h82 Vector tmp_p = ActionAtomistic::getPosition(iatom); in getPosition() local
84 …ridgeVariable)>=3*iatom && static_cast<int>(bridgeVariable)<(iatom+1)*3 ) tmp_p[bridgeVariable%3]+… in getPosition()
87 tmp_p = ActionAtomistic::getPbc().realToScaled( tmp_p ); in getPosition()
88 tmp_p = getPbc().scaledToReal( tmp_p ); in getPosition()
89 return tmp_p; in getPosition()
/dports/multimedia/opentoonz/opentoonz-1.5.0/toonz/sources/stdfx/
H A Diwa_soapbubblefx.cpp497 USHORT* tmp_p = dst_p; in do_binarize() local
546 (*tmp_p) = up; in do_binarize()
550 (*tmp_p) = up; in do_binarize()
555 (*tmp_p) = up; in do_binarize()
580 (*tmp_p) = lut[*tmp_p]; in do_binarize()
581 if (maxRegionIndex < (*tmp_p)) maxRegionIndex = (*tmp_p); in do_binarize()
620 float* tmp_p = dst_p; in do_createBlurFilter() local
628 *tmp_p = 0.0f; in do_createBlurFilter()
632 sum += *tmp_p; in do_createBlurFilter()
637 tmp_p = dst_p; in do_createBlurFilter()
[all …]
/dports/irc/ircd-ratbox-devel/ircd-ratbox-3.0.7/src/
H A Ds_serv.c215 struct server_conf *tmp_p; in try_connections() local
224 tmp_p = ptr->data; in try_connections()
226 if(ServerConfIllegal(tmp_p) || !ServerConfAutoconn(tmp_p)) in try_connections()
233 cltmp = tmp_p->class; in try_connections()
242 if(tmp_p->hold > rb_current_time()) in try_connections()
244 if(next > tmp_p->hold || next == 0) in try_connections()
245 next = tmp_p->hold; in try_connections()
252 tmp_p->hold = rb_current_time() + confrq; in try_connections()
261 server_p = tmp_p; in try_connections()
267 if((next > tmp_p->hold) || (next == 0)) in try_connections()
[all …]
/dports/irc/ircd-ratbox/ircd-ratbox-3.0.10/src/
H A Ds_serv.c215 struct server_conf *tmp_p; in try_connections() local
224 tmp_p = ptr->data; in try_connections()
226 if(ServerConfIllegal(tmp_p) || !ServerConfAutoconn(tmp_p)) in try_connections()
233 cltmp = tmp_p->class; in try_connections()
242 if(tmp_p->hold > rb_current_time()) in try_connections()
244 if(next > tmp_p->hold || next == 0) in try_connections()
245 next = tmp_p->hold; in try_connections()
252 tmp_p->hold = rb_current_time() + confrq; in try_connections()
261 server_p = tmp_p; in try_connections()
267 if((next > tmp_p->hold) || (next == 0)) in try_connections()
[all …]
/dports/graphics/opencv/opencv-4.5.3/samples/cpp/tutorial_code/calib3d/real_time_pose_estimation/src/
H A DCsvReader.cpp47 cv::Point3f tmp_p; in readPLY() local
48 tmp_p.x = (float)StringToInt(x); in readPLY()
49 tmp_p.y = (float)StringToInt(y); in readPLY()
50 tmp_p.z = (float)StringToInt(z); in readPLY()
51 list_vertex.push_back(tmp_p); in readPLY()
H A DPnPProblem.cpp19 cv::Point3f tmp_p; in CROSS() local
20 tmp_p.x = v1.y*v2.z - v1.z*v2.y; in CROSS()
21 tmp_p.y = v1.z*v2.x - v1.x*v2.z; in CROSS()
22 tmp_p.z = v1.x*v2.y - v1.y*v2.x; in CROSS()
23 return tmp_p; in CROSS()
33 cv::Point3f tmp_p; in SUB() local
34 tmp_p.x = v1.x - v2.x; in SUB()
35 tmp_p.y = v1.y - v2.y; in SUB()
36 tmp_p.z = v1.z - v2.z; in SUB()
37 return tmp_p; in SUB()
/dports/irc/dircproxy/dircproxy-dc563b3/src/
H A Dirc_client.c737 struct ircproxy *tmp_p; local
740 if (tmp_p && (tmp_p->client_status & IRC_CLIENT_CONNECTED)) {
747 if (tmp_p->dead) {
749 tmp_p = 0;
760 if (tmp_p) {
766 net_hook(tmp_p->client_sock, SOCK_NORMAL, (void *)tmp_p,
776 if (tmp_p->oldnickname && strcmp(tmp_p->oldnickname, tmp_p->nickname))
777 ircclient_change_nick(tmp_p, tmp_p->oldnickname);
788 if (!tmp_p->awaymessage && (tmp_p->server_status == IRC_SERVER_ACTIVE)
793 if ((tmp_p->server_status == IRC_SERVER_ACTIVE) && tmp_p->channels) {
[all …]
/dports/science/hdf5/hdf5-1.10.6/hl/fortran/src/
H A DH5TBfc.c53 char *tmp = NULL, *tmp_p; in h5tbmake_table_c() local
87 tmp_p = tmp; in h5tbmake_table_c()
91 HDmemcpy(c_field_names[i], tmp_p, (size_t)char_len_field_names[i]); in h5tbmake_table_c()
93 tmp_p = tmp_p + *max_char_size_field_names; in h5tbmake_table_c()
159 char *tmp = NULL, *tmp_p; in h5tbmake_table_ptr_c() local
193 tmp_p = tmp; in h5tbmake_table_ptr_c()
199 tmp_p = tmp_p + *max_char_size_field_names; in h5tbmake_table_ptr_c()
654 char *tmp = NULL, *tmp_p; in h5tbget_field_info_c() local
692 tmp_p = tmp; in h5tbget_field_info_c()
698 HDmemcpy(tmp_p, c_field_names[i], field_name_len); in h5tbget_field_info_c()
[all …]
/dports/science/simint/simint-v0.8/test/
H A DValeevRef.cpp676 simint_shell tmp_p, tmp_m; in ValeevRef_NumDeriv1() local
677 simint_initialize_shell(&tmp_p); in ValeevRef_NumDeriv1()
689 copy_gaussian_move(A+i, &tmp_p, 0, delta); in ValeevRef_NumDeriv1()
696 copy_gaussian_move(A+i, &tmp_p, 1, delta); in ValeevRef_NumDeriv1()
703 copy_gaussian_move(A+i, &tmp_p, 2, delta); in ValeevRef_NumDeriv1()
710 copy_gaussian_move(B+j, &tmp_p, 0, delta); in ValeevRef_NumDeriv1()
717 copy_gaussian_move(B+j, &tmp_p, 1, delta); in ValeevRef_NumDeriv1()
724 copy_gaussian_move(B+j, &tmp_p, 2, delta); in ValeevRef_NumDeriv1()
731 copy_gaussian_move(C+k, &tmp_p, 0, delta); in ValeevRef_NumDeriv1()
738 copy_gaussian_move(C+k, &tmp_p, 1, delta); in ValeevRef_NumDeriv1()
[all …]
/dports/audio/ecasound/ecasound-2.9.3/ecatools/
H A Decanormalize.cpp110 char* tmp_p = getenv("LOGNAME"); in main() local
111 if (tmp_p == NULL) tmp_p = getenv("USER"); in main()
112 if (tmp_p != NULL) { in main()
113 tmpdir += string(tmp_p); in main()
H A Decafixdc.cpp109 char* tmp_p = getenv("LOGNAME"); in main() local
110 if (tmp_p == NULL) tmp_p = getenv("USER"); in main()
111 if (tmp_p != NULL) { in main()
113 tmpdir += string(tmp_p); in main()
/dports/games/netherearth/netherearth-0.51/
H A Dcmc.cpp592 float tmp_p[3]; in plane_collision() local
619 tmp_p[0]=pa[0]+wa[0]; in plane_collision()
620 tmp_p[1]=pa[1]+wa[1]; in plane_collision()
621 tmp_p[2]=pa[2]+wa[2]; in plane_collision()
635 tmp_p[0]=pa[0]+va[0]; in plane_collision()
636 tmp_p[1]=pa[1]+va[1]; in plane_collision()
637 tmp_p[2]=pa[2]+va[2]; in plane_collision()
658 float tmp_p[3]; in plane_collision() local
685 tmp_p[0]=pb[0]+wb[0]; in plane_collision()
686 tmp_p[1]=pb[1]+wb[1]; in plane_collision()
[all …]
/dports/security/nitrokey-app/nitrokey-app-1.4.2/src/GUI/
H A DAuthentication.cpp125 QByteArray tmp_p(temporary_password_length, 0); in generateTemporaryPassword() local
126 auto size = tmp_p.size(); in generateTemporaryPassword()
128 tmp_p[i] = dist(mt); in generateTemporaryPassword()
130 return tmp_p; in generateTemporaryPassword()
/dports/devel/llvm-cheri/llvm-project-37c49ff00e3eadce5d8703fdc4497f28458c64a8/polly/test/Isl/CodeGen/
H A Dsimple_vec_cast.ll35 ; CHECK: %tmp_p.splatinsert = insertelement <4 x float> undef, float %.load, i32 0
36 ; CHECK: %tmp_p.splat = shufflevector <4 x float> %tmp_p.splatinsert, <4 x float> undef, <4 x i32…
37 ; CHECK: %0 = fpext <4 x float> %tmp_p.splat to <4 x double>
/dports/devel/llvm-devel/llvm-project-f05c95f10fc1d8171071735af8ad3a9e87633120/polly/test/CodeGen/
H A Dsimple_vec_cast.ll35 ; CHECK: %tmp_p.splatinsert = insertelement <4 x float> poison, float %.load, i32 0
36 ; CHECK: %tmp_p.splat = shufflevector <4 x float> %tmp_p.splatinsert, <4 x float> poison, <4 x i3…
37 ; CHECK: %0 = fpext <4 x float> %tmp_p.splat to <4 x double>
/dports/devel/tinygo/tinygo-0.14.1/llvm-project/polly/test/Isl/CodeGen/
H A Dsimple_vec_cast.ll35 ; CHECK: %tmp_p.splatinsert = insertelement <4 x float> undef, float %.load, i32 0
36 ; CHECK: %tmp_p.splat = shufflevector <4 x float> %tmp_p.splatinsert, <4 x float> undef, <4 x i32…
37 ; CHECK: %0 = fpext <4 x float> %tmp_p.splat to <4 x double>
/dports/devel/wasi-compiler-rt12/llvm-project-12.0.1.src/polly/test/Isl/CodeGen/
H A Dsimple_vec_cast.ll35 ; CHECK: %tmp_p.splatinsert = insertelement <4 x float> poison, float %.load, i32 0
36 ; CHECK: %tmp_p.splat = shufflevector <4 x float> %tmp_p.splatinsert, <4 x float> poison, <4 x i3…
37 ; CHECK: %0 = fpext <4 x float> %tmp_p.splat to <4 x double>
/dports/devel/wasi-compiler-rt13/llvm-project-13.0.1.src/polly/test/Isl/CodeGen/
H A Dsimple_vec_cast.ll35 ; CHECK: %tmp_p.splatinsert = insertelement <4 x float> poison, float %.load, i32 0
36 ; CHECK: %tmp_p.splat = shufflevector <4 x float> %tmp_p.splatinsert, <4 x float> poison, <4 x i3…
37 ; CHECK: %0 = fpext <4 x float> %tmp_p.splat to <4 x double>
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/llvm/polly/test/Isl/CodeGen/
H A Dsimple_vec_cast.ll35 ; CHECK: %tmp_p.splatinsert = insertelement <4 x float> undef, float %.load, i32 0
36 ; CHECK: %tmp_p.splat = shufflevector <4 x float> %tmp_p.splatinsert, <4 x float> undef, <4 x i32…
37 ; CHECK: %0 = fpext <4 x float> %tmp_p.splat to <4 x double>
/dports/devel/wasi-libcxx/llvm-project-13.0.1.src/polly/test/Isl/CodeGen/
H A Dsimple_vec_cast.ll35 ; CHECK: %tmp_p.splatinsert = insertelement <4 x float> poison, float %.load, i32 0
36 ; CHECK: %tmp_p.splat = shufflevector <4 x float> %tmp_p.splatinsert, <4 x float> poison, <4 x i3…
37 ; CHECK: %0 = fpext <4 x float> %tmp_p.splat to <4 x double>

12345678910>>...12