Home
last modified time | relevance | path

Searched refs:new_spec (Results 1 – 25 of 384) sorted by relevance

12345678910>>...16

/dports/math/singular/Singular-Release-4-2-1/omalloc/
H A DomtTestAlloc.c196 IS_BIN(new_spec) && ((new_size <= OM_MAX_BLOCK_SIZE) || IS_SPEC_BIN(new_spec))) in omtTestRealloc()
198 if (IS_SPEC_BIN(new_spec)) in omtTestRealloc()
200 if (IS_ALIGNED(new_spec)) in omtTestRealloc()
219 if (IS_INLINE(new_spec)) in omtTestRealloc()
234 if (IS_INLINE(new_spec)) in omtTestRealloc()
236 if (IS_ZERO(new_spec)) in omtTestRealloc()
262 if (IS_ZERO(new_spec)) in omtTestRealloc()
276 if (IS_INLINE(new_spec)) in omtTestRealloc()
278 if (IS_ZERO(new_spec)) in omtTestRealloc()
303 if (IS_ZERO(new_spec)) in omtTestRealloc()
[all …]
/dports/audio/aubio/aubio-0.4.9/python/tests/
H A Dtest_cvec.py56 new_spec = spec
58 assert_equal(a, new_spec.norm)
59 assert_equal(b, new_spec.phas)
68 new_spec = cvec(1024)
69 new_spec.norm = norm
70 new_spec.phas = phas
71 assert_equal(norm, new_spec.norm)
72 assert_equal(phas, new_spec.phas)
77 assert_equal(new_spec.norm, 0.)
78 assert_equal(new_spec.phas, 0.)
[all …]
/dports/audio/py-aubio/aubio-0.4.9/python/tests/
H A Dtest_cvec.py56 new_spec = spec
58 assert_equal(a, new_spec.norm)
59 assert_equal(b, new_spec.phas)
68 new_spec = cvec(1024)
69 new_spec.norm = norm
70 new_spec.phas = phas
71 assert_equal(norm, new_spec.norm)
72 assert_equal(phas, new_spec.phas)
77 assert_equal(new_spec.norm, 0.)
78 assert_equal(new_spec.phas, 0.)
[all …]
/dports/misc/ytree/ytree-2.03/
H A Dmatch.c56 int SetMatchSpec(char *new_spec) in SetMatchSpec() argument
63 if( ( buffer = (char *)malloc( strlen( new_spec ) * 2 + 4 ) ) == NULL ) in SetMatchSpec()
72 for(; *new_spec; new_spec++) in SetMatchSpec()
76 *b_ptr++ = *new_spec; in SetMatchSpec()
79 else if( *new_spec == '\\' ) meta_flag = TRUE; in SetMatchSpec()
80 else if( *new_spec == '?' ) *b_ptr++ = '.'; in SetMatchSpec()
81 else if( *new_spec == '.' ) in SetMatchSpec()
86 else if( *new_spec == '*' ) in SetMatchSpec()
92 *b_ptr++ = *new_spec; in SetMatchSpec()
/dports/science/py-obspy/obspy-1.2.2/obspy/signal/
H A Dkonnoohmachismoothing.py152 new_spec = np.dot(spectra, smoothing_matrix)
155 new_spec = np.dot(new_spec, smoothing_matrix)
156 return new_spec
236 new_spec = np.empty(spectra.shape, spectra.dtype)
238 if len(new_spec.shape) == 1:
243 new_spec[_i] = (window * spectra).sum()
251 new_spec[_j, _i] = (window * spec).sum()
254 new_spec = konno_ohmachi_smoothing(
255 new_spec, frequencies, bandwidth, enforce_no_matrix=True,
257 return new_spec
/dports/audio/calf-lv2/calf-648f05e85287cf08af198bdd9e52baba95b502ec/src/calf/
H A Dosc.h120 std::vector<std::complex<float> > new_spec, iffted; member
121 new_spec.resize(SIZE);
124 new_spec[0] = spectrum[0];
126 new_spec[i] = spectrum[i],
127 new_spec[SIZE - i] = spectrum[SIZE - i];
140 new_spec[i / 2] += new_spec[i] * fatt;
141 new_spec[SIZE - i / 2] += new_spec[SIZE - i] * fatt;
142 new_spec[i] = 0.f,
143 new_spec[SIZE - i] = 0.f;
151 new_spec[i] = 0.f,
[all …]
/dports/audio/lmms/lmms-1.2.2/plugins/LadspaEffect/calf/src/calf/
H A Dosc.h114 std::vector<std::complex<float> > new_spec, iffted; member
115 new_spec.resize(SIZE);
118 new_spec[0] = spectrum[0];
120 new_spec[i] = spectrum[i],
121 new_spec[SIZE - i] = spectrum[SIZE - i];
134 new_spec[i / 2] += new_spec[i] * fatt;
135 new_spec[SIZE - i / 2] += new_spec[SIZE - i] * fatt;
136 new_spec[i] = 0.f,
137 new_spec[SIZE - i] = 0.f;
145 new_spec[i] = 0.f,
[all …]
/dports/textproc/lookatme/lookatme-2.3.2/lookatme/
H A Dutils.py76 def overwrite_spec(orig_spec, new_spec): argument
79 if new_spec is None:
80 new_spec = urwid.AttrSpec("", "")
90 fg_new = new_spec.foreground.split(",")
91 fg_new_color = new_spec._foreground_color()
94 bg_new = new_spec.background.split(",")
95 bg_new_color = new_spec._background()
114 def flatten_text(text, new_spec=None): argument
134 res.append((new_spec, text[total_len:]))
155 new_spec = spec_from_style(new_styles)
[all …]
/dports/devel/p5-Moo/Moo-2.005004/lib/Method/Generate/
H A DConstructor.pm23 while (my ($name, $new_spec) = splice @new_specs, 0, 2) {
27 $ag->merge_specs($new_spec, $old_spec);
29 if ($new_spec->{required}
31 $ag->has_default($name, $new_spec)
32 || !exists $new_spec->{init_arg}
33 || defined $new_spec->{init_arg}
39 $new_spec->{index} = scalar keys %$specs
40 unless defined $new_spec->{index};
41 $specs->{$name} = $new_spec;
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/tools/grit/grit/tool/update_resource_ids/
H A Dassigner_unittest.py60 new_spec = ','.join(s for _, s in sorted(new_spec_list))
61 return ','.join(new_id_list), new_spec
136 actual, new_spec = _RunCoarseIdAssigner(spec)
139 actual2, new_spec2 = _RunCoarseIdAssigner(new_spec)
141 self.failUnlessEqual(new_spec, new_spec2)
147 if new_spec != new_spec2:
/dports/www/chromium-legacy/chromium-88.0.4324.182/tools/grit/grit/tool/update_resource_ids/
H A Dassigner_unittest.py60 new_spec = ','.join(s for _, s in sorted(new_spec_list))
61 return ','.join(new_id_list), new_spec
136 actual, new_spec = _RunCoarseIdAssigner(spec)
139 actual2, new_spec2 = _RunCoarseIdAssigner(new_spec)
141 self.failUnlessEqual(new_spec, new_spec2)
147 if new_spec != new_spec2:
/dports/www/firefox/firefox-99.0/third_party/libwebrtc/tools/grit/grit/tool/update_resource_ids/
H A Dassigner_unittest.py60 new_spec = ','.join(s for _, s in sorted(new_spec_list))
61 return ','.join(new_id_list), new_spec
136 actual, new_spec = _RunCoarseIdAssigner(spec)
139 actual2, new_spec2 = _RunCoarseIdAssigner(new_spec)
141 self.failUnlessEqual(new_spec, new_spec2)
147 if new_spec != new_spec2:
/dports/devel/libgit2/libgit2-1.3.0/tests/refs/reflog/
H A Dreflog_helpers.h3 #define cl_reflog_check_entry(repo, reflog, idx, old_spec, new_spec, email, message) \ argument
4 … cl_reflog_check_entry_(repo, reflog, idx, old_spec, new_spec, email, message, __FILE__, __LINE__)
7 const char *old_spec, const char *new_spec,
H A Dreflog_helpers.c31 const char *old_spec, const char *new_spec, in cl_reflog_check_entry_() argument
64 if (new_spec) { in cl_reflog_check_entry_()
66 if (git_revparse_single(&obj, repo, new_spec) == GIT_OK) { in cl_reflog_check_entry_()
75 git_oid_fromstr(oid, new_spec); in cl_reflog_check_entry_()
/dports/misc/py-cinder/cinder-12.0.10/cinder/tests/unit/volume/drivers/dell_emc/vnx/
H A Dtest_utils.py98 new_spec = common.ExtraSpecs({'provisioning:type': 'deduplicated'})
100 volume, old_spec.provision, new_spec.provision, host)
109 new_spec = common.ExtraSpecs({'provisioning:type': 'compressed'})
111 volume, old_spec.provision, new_spec.provision, host)
119 new_spec = common.ExtraSpecs(
122 volume, old_spec.provision, new_spec.provision, host)
/dports/devel/py-prefixed/prefixed-0.3.2/prefixed/
H A D__init__.py248 new_spec = ''.join(spec[key] for key in SPEC_FIELDS if spec[key] is not None)
250 new_spec += 'f'
252 new_spec = '%s.%sf' % (new_spec, spec['precision'])
254 return '%s%s' % (value.__format__(new_spec), prefix)
/dports/devel/gvfs/gvfs-1.46.2/client/
H A Dhttpuri.c139 GMountSpec *new_spec; in http_get_mount_spec_for_path() local
163 new_spec = g_mount_spec_new ("http"); in http_get_mount_spec_for_path()
166 g_mount_spec_set (new_spec, "uri", new_uri); in http_get_mount_spec_for_path()
171 return new_spec; in http_get_mount_spec_for_path()
/dports/mail/im/im-153/IM/
H A DHttp.pm129 my $new_spec = 0;
140 $new_spec = 1;
149 next if ($rcode == 302 && $new_spec);
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/llvm/lldb/source/Target/
H A DPathMappingList.cpp201 FileSpec &new_spec) const { in FindFile()
234 new_spec.SetFile(entry.second.GetCString(), FileSpec::Style::native); in FindFile()
235 new_spec.AppendPathComponent(orig_ref); in FindFile()
236 if (FileSystem::Instance().Exists(new_spec)) in FindFile()
241 new_spec.Clear(); in FindFile()
/dports/devel/llvm-cheri/llvm-project-37c49ff00e3eadce5d8703fdc4497f28458c64a8/lldb/source/Target/
H A DPathMappingList.cpp201 FileSpec &new_spec) const { in FindFile()
234 new_spec.SetFile(entry.second.GetCString(), FileSpec::Style::native); in FindFile()
235 new_spec.AppendPathComponent(orig_ref); in FindFile()
236 if (FileSystem::Instance().Exists(new_spec)) in FindFile()
241 new_spec.Clear(); in FindFile()
/dports/devel/llvm12/llvm-project-12.0.1.src/lldb/source/Target/
H A DPathMappingList.cpp201 FileSpec &new_spec) const { in FindFile()
234 new_spec.SetFile(entry.second.GetCString(), FileSpec::Style::native); in FindFile()
235 new_spec.AppendPathComponent(orig_ref); in FindFile()
236 if (FileSystem::Instance().Exists(new_spec)) in FindFile()
241 new_spec.Clear(); in FindFile()
/dports/devel/wasi-compiler-rt12/llvm-project-12.0.1.src/lldb/source/Target/
H A DPathMappingList.cpp201 FileSpec &new_spec) const { in FindFile()
234 new_spec.SetFile(entry.second.GetCString(), FileSpec::Style::native); in FindFile()
235 new_spec.AppendPathComponent(orig_ref); in FindFile()
236 if (FileSystem::Instance().Exists(new_spec)) in FindFile()
241 new_spec.Clear(); in FindFile()
/dports/devel/tinygo/tinygo-0.14.1/llvm-project/lldb/source/Target/
H A DPathMappingList.cpp201 FileSpec &new_spec) const { in FindFile()
234 new_spec.SetFile(entry.second.GetCString(), FileSpec::Style::native); in FindFile()
235 new_spec.AppendPathComponent(orig_ref); in FindFile()
236 if (FileSystem::Instance().Exists(new_spec)) in FindFile()
241 new_spec.Clear(); in FindFile()
/dports/devel/wasi-libcxx/llvm-project-13.0.1.src/lldb/source/API/
H A DSBFileSpecList.cpp86 SBFileSpec new_spec; in GetFileSpecAtIndex() local
87 new_spec.SetFileSpec(m_opaque_up->GetFileSpecAtIndex(idx)); in GetFileSpecAtIndex()
88 return LLDB_RECORD_RESULT(new_spec); in GetFileSpecAtIndex()
/dports/devel/llvm-cheri/llvm-project-37c49ff00e3eadce5d8703fdc4497f28458c64a8/lldb/source/API/
H A DSBFileSpecList.cpp86 SBFileSpec new_spec; in GetFileSpecAtIndex() local
87 new_spec.SetFileSpec(m_opaque_up->GetFileSpecAtIndex(idx)); in GetFileSpecAtIndex()
88 return LLDB_RECORD_RESULT(new_spec); in GetFileSpecAtIndex()

12345678910>>...16