Searched defs:sth (Results 1 - 4 of 4) sorted by relevance

/external/chromium_org/net/cert/
H A Dct_log_response_parser.cc79 bool IsJsonSTHStructurallyValid(const JsonSignedTreeHead& sth) { argument
80 if (sth.tree_size < 0) {
82 << sth.tree_size;
86 if (sth.timestamp < 0) {
88 << sth.timestamp;
92 if (sth.sha256_root_hash.empty()) {
97 if (sth.signature.signature_data.empty()) {
/external/chromium_org/third_party/webrtc/modules/audio_coding/codecs/isac/main/source/
H A Dlattice.c38 float sth[MAX_AR_MODEL_ORDER]; local
53 WebRtcIsac_Dir2Lat(a,orderCoef,sth,cth);
76 f[i][0] = inv_cth[i-1]*(f[i-1][0] + sth[i-1]*stateG[i-1]);
77 g[i][0] = cth[i-1]*stateG[i-1] + sth[i-1]* f[i][0];
85 f[k+1][n+1] = inv_cth[k]*(f[k][n+1] + sth[k]*g[k][n]);
86 g[k+1][n+1] = cth[k]*g[k][n] + sth[k]* f[k+1][n+1];
119 float sth[MAX_AR_MODEL_ORDER]; local
133 WebRtcIsac_Dir2Lat(a,orderCoef,sth,cth);
151 ARf[i][0] = cth[i]*ARf[i+1][0] - sth[i]*stateG[i];
152 ARg[i+1][0] = sth[
189 WebRtcIsac_Dir2Lat(double *a, int orderCoef, float *sth, float *cth) argument
[all...]
/external/webrtc/src/modules/audio_coding/codecs/isac/main/source/
H A Dlattice.c37 float sth[MAX_AR_MODEL_ORDER]; local
52 WebRtcIsac_Dir2Lat(a,orderCoef,sth,cth);
75 f[i][0] = inv_cth[i-1]*(f[i-1][0] + sth[i-1]*stateG[i-1]);
76 g[i][0] = cth[i-1]*stateG[i-1] + sth[i-1]* f[i][0];
84 f[k+1][n+1] = inv_cth[k]*(f[k][n+1] + sth[k]*g[k][n]);
85 g[k+1][n+1] = cth[k]*g[k][n] + sth[k]* f[k+1][n+1];
118 float sth[MAX_AR_MODEL_ORDER]; local
132 WebRtcIsac_Dir2Lat(a,orderCoef,sth,cth);
150 ARf[i][0] = cth[i]*ARf[i+1][0] - sth[i]*stateG[i];
151 ARg[i+1][0] = sth[
188 WebRtcIsac_Dir2Lat(double *a, int orderCoef, float *sth, float *cth) argument
[all...]
/external/chromium_org/net/test/
H A Dct_test_util.cc257 void GetSignedTreeHead(SignedTreeHead* sth) { argument
258 sth->version = SignedTreeHead::V1;
259 sth->timestamp = base::Time::UnixEpoch() +
261 sth->tree_size = 21u;
263 memcpy(sth->sha256_root_hash, sha256_root_hash.c_str(), kSthRootHashLength);
267 DecodeDigitallySigned(&sp, &(sth->signature));

Completed in 263 milliseconds