Home
last modified time | relevance | path

Searched refs:obv (Results 1 – 25 of 183) sorted by relevance

12345678

/dports/finance/R-cran-TTR/TTR/R/
H A DOBV.R61 obv <- c( volume[1], ifelse( prChg > 0, volume, -volume )[-1] ) vector
63 obv[abs(prChg) < sqrt(.Machine$double.eps)] <- 0
64 obv <- cumsum( obv )
66 if(is.xts(obv)) {
67 obv <- xts(obv,index(price))
68 colnames(obv) <- 'obv'
71 reclass( obv, price )
/dports/math/octave-forge-financial/financial-0.5.3/inst/
H A Donbalvol.m17 ## @deftypefn {Function File} {@var{obv} =} onbalvol (@var{closeprice}, @var{vol})
18 ## @deftypefnx {Function File} {@var{obv} =} onbalvol ([@var{closeprice} @var{vol}])
30 function obv = onbalvol (c, vol)
40 obv = zeros (size (c, 1), 1); variable
43 obv(i) = obv(i-1) + c(i,2);
45 obv(i) = obv(i-1) - c(i,2);
47 obv(i) = obv(i-1);
54 %!shared c, v, obv
57 %! obv = [0 12 35 60 94 82 50 35 50 84 138 150 236 281 249 173 84 97 69]';
58 %!assert(onbalvol(c, v), obv)
[all …]
/dports/databases/sqlrelay/sqlrelay-1.7.0/src/connections/
H A Drouter.cpp266 outputbindvar *obv; member in routercursor
1196 delete[] obv; in ~routercursor()
1454 obv[obcount].variable=variable+1; in outputBind()
1457 obv[obcount].valuesize=valuesize; in outputBind()
1458 obv[obcount].isnull=isnull; in outputBind()
1471 obv[obcount].isnull=isnull; in outputBind()
1486 obv[obcount].isnull=isnull; in outputBind()
1516 obv[obcount].isnull=isnull; in outputBind()
1530 obv[obcount].isnull=isnull; in outputBindBlob()
1542 obv[obcount].isnull=isnull; in outputBindClob()
[all …]
/dports/lang/ferite/ferite-1.0.2/modules/serialize/
H A Dutility.c66 FeriteObjectVariable *obv = NULL; in Serialize_walk_native() local
71 for( obv = VAO(v)->variables; obv != NULL; obv = obv->parent ) in Serialize_walk_native()
74 while( (buk = ferite_hash_walk( script, obv->variables, &iter )) != NULL ) in Serialize_walk_native()
150 FeriteObjectVariable *obv = NULL; in Serialize_walk_XML() local
156 for( obv = VAO(v)->variables; obv != NULL; obv = obv->parent ) in Serialize_walk_XML()
159 … while( VAO( v ) && (buk = ferite_hash_walk( script, obv->variables, &iter )) != NULL ) in Serialize_walk_XML()
/dports/devel/py-rx/Rx-3.2.0/rx/core/operators/
H A Dmap.py34 def subscribe(obv: Observer, scheduler: Scheduler = None) -> Disposable:
39 obv.on_error(err)
41 obv.on_next(result)
43 return source.subscribe_(on_next, obv.on_error, obv.on_completed, scheduler)
/dports/devel/tlsh/tlsh-d842e75/src/
H A Dgen_arr2.cpp40 int byte_diff(unsigned char bv, unsigned char obv) in byte_diff() argument
43 int oh1 = (unsigned char) obv / 16; in byte_diff()
45 int oh2 = (unsigned char) obv % 16; in byte_diff()
H A Dtlsh_util.cpp4941 static int byte_diff(unsigned char bv, unsigned char obv) in byte_diff() argument
4944 int oh1 = (unsigned char) obv / 16; in byte_diff()
4946 int oh2 = (unsigned char) obv % 16; in byte_diff()
/dports/devel/omniORB/omniORB-4.2.4/src/lib/omniORB/python/omniidl_be/cxx/header/
H A D__init__.py31 import omniidl_be.cxx.header.obv
168 obv = omniidl_be.cxx.header.obv.init(stream)
169 tree.accept(obv)
195 obv = main_obv,
H A Ddir.mk6 obv.py template.py
/dports/devel/omniORB/omniORB-4.2.4/src/lib/omniORB/python3/omniidl_be/cxx/header/
H A D__init__.py31 import omniidl_be.cxx.header.obv
168 obv = omniidl_be.cxx.header.obv.init(stream)
169 tree.accept(obv)
195 obv = main_obv,
H A Ddir.mk6 obv.py template.py
/dports/misc/vxl/vxl-3.3.2/contrib/brl/bbas/bwm/
H A Dbwm_site_mgr.cxx793 bwm_observer_video* obv = nullptr; in save_video_site() local
799 obv = static_cast<bwm_observer_video*>(*oit); in save_video_site()
846 vio.set_video_path(obv->image_path()); in save_video_site()
847 vio.set_camera_path(obv->camera_path()); in save_video_site()
1234 bwm_observer_video* obv = nullptr; in save_video_world_points_vrml_impl() local
1240 obv = static_cast<bwm_observer_video*>(*oit); in save_video_world_points_vrml_impl()
1270 bwm_observer_video* obv = nullptr; in save_video_world_points_vrml_impl() local
1276 obv = static_cast<bwm_observer_video*>(*oit); in save_video_world_points_vrml_impl()
1323 bwm_observer_video* obv = nullptr; in save_video_cameras_vrml_impl() local
1365 bwm_observer_video* obv = nullptr; in save_video_cameras_vrml_impl() local
[all …]
H A Dbwm_tableau_mgr.cxx237 bwm_observer_video* obv = static_cast<bwm_observer_video*>(*oit); in exit() local
238 obv->stop(); in exit()
/dports/finance/py-ta-lib/ta-lib-TA_Lib-0.4.17/talib/
H A Dtest_abstract.py169 obv = abstract.Function('OBV')
174 obv.input_names = expected
175 assert_equals(obv.input_names, expected)
177 obv.input_names = {
181 assert_equals(obv.input_names, expected)
/dports/devel/ta-lib/ta-lib/src/ta_func/
H A Dta_OBV.c133 /* Generated */ public RetCode obv( int startIdx,
223 /* Generated */ public RetCode obv( int startIdx,
/dports/math/octave/octave-6.4.0/libinterp/parse-tree/
H A Djit-typeinfo.cc126 obv->release (); in octave_jit_release_any()
138 obv->grab (); in octave_jit_grab_any()
139 return obv; in octave_jit_grab_any()
162 NDArray m = obv->array_value (); in octave_jit_cast_matrix_any()
163 obv->release (); in octave_jit_cast_matrix_any()
181 jit_range r (obv->range_value ()); in octave_jit_cast_range_any()
182 obv->release (); in octave_jit_cast_range_any()
189 double ret = obv->double_value (); in octave_jit_cast_scalar_any()
190 obv->release (); in octave_jit_cast_scalar_any()
203 Complex ret = obv->complex_value (); in octave_jit_cast_complex_any()
[all …]
/dports/cad/verilator/verilator-4.216/test_regress/t/
H A Dt_var_pinsizes.vlt11 sc_bv -module "*" -var "obv*_vlt"
/dports/math/octave-forge-dicom/dicom-0.4.0/src/
H A Ddicomwrite.cpp334 uint8NDArray obv = ov->uint8_array_value(); in value2element() local
343 octave_uint8 * obv_p=obv.fortran_vec(); in value2element()
353 de->SetByteValue((const char *)obv.fortran_vec(), gdcm::VL((uint32_t)obv.byte_size())); in value2element()
/dports/security/acmetool/acmetool-0.2.1/vendor/gopkg.in/tylerb/graceful.v1/test-fixtures/
H A Dcert.crt12 R0Y69NLOfFCLRiB5N3uoacILXTAfBgNVHSMEGDAWgBRm0fFHSXtDCVHC8UW7/obv
/dports/graphics/photoflow/PhotoFlow-8472024f/src/benchmarks/
H A Dmatrix-3x3.cc277 __m128 obv = mrgbv[2][0]*rgbv[0] + mrgbv[2][1]*rgbv[1] + mrgbv[2][2]*rgbv[2]; in process_sse2_shuffle() local
280 a0 = _mm_unpacklo_ps(orv, obv); in process_sse2_shuffle()
282 a2 = _mm_unpackhi_ps(orv, obv); in process_sse2_shuffle()
/dports/finance/R-cran-TTR/TTR/man/
H A DOBV.Rd34 obv <- OBV(ttrc[,"Close"], ttrc[,"Volume"])
/dports/net/isc-dhcp44-client/dhcp-4.4.2-P1/common/
H A Dtree.c709 struct binding_value *bv, *obv; local
728 bv = obv = (struct binding_value *)0;
732 sright = evaluate_expression (&obv, packet, lease,
737 if (bv -> type != obv -> type)
740 switch (obv -> type) {
750 obv -> value.data.len) &&
752 obv -> value.data.data,
753 obv -> value.data.len))
760 if (bv -> value.intval == obv -> value.intval)
767 if (bv -> value.fundef == obv -> value.fundef)
[all …]
/dports/net/isc-dhcp44-relay/dhcp-4.4.2-P1/common/
H A Dtree.c709 struct binding_value *bv, *obv; local
728 bv = obv = (struct binding_value *)0;
732 sright = evaluate_expression (&obv, packet, lease,
737 if (bv -> type != obv -> type)
740 switch (obv -> type) {
750 obv -> value.data.len) &&
752 obv -> value.data.data,
753 obv -> value.data.len))
760 if (bv -> value.intval == obv -> value.intval)
767 if (bv -> value.fundef == obv -> value.fundef)
[all …]
/dports/net/isc-dhcp44-server/dhcp-4.4.2-P1/common/
H A Dtree.c709 struct binding_value *bv, *obv; local
728 bv = obv = (struct binding_value *)0;
732 sright = evaluate_expression (&obv, packet, lease,
737 if (bv -> type != obv -> type)
740 switch (obv -> type) {
750 obv -> value.data.len) &&
752 obv -> value.data.data,
753 obv -> value.data.len))
760 if (bv -> value.intval == obv -> value.intval)
767 if (bv -> value.fundef == obv -> value.fundef)
[all …]
/dports/www/firefox-legacy/firefox-52.8.0esr/startupcache/
H A DStartupCache.cpp819 StartupCacheWrapper::GetObserver(nsIObserver** obv) { in GetObserver() argument
824 NS_ADDREF(*obv = sc->mListener); in GetObserver()

12345678