HomeSort by relevance Sort by last modified time
    Searched defs:nc (Results 26 - 50 of 89) sorted by null

12 3 4

  /external/jpeg/
jccolor.c 349 int nc = cinfo->num_components; local
353 if (1 == num_rows && 3 == nc && num_cols > 0) {
390 for (ci = 0; ci < nc; ci++) {
395 inptr += nc;
jquant1.c 191 int nc = cinfo->out_color_components; /* number of color components */ local
198 /* We can allocate at least the nc'th root of max_colors per component. */
199 /* Compute floor(nc'th root of max_colors). */
203 temp = iroot; /* set temp = iroot ** nc */
204 for (i = 1; i < nc; i++)
215 for (i = 0; i < nc; i++) {
227 for (i = 0; i < nc; i++) {
470 register int nc = cinfo->out_color_components; local
477 for (ci = 0; ci < nc; ci++) {
525 int nc = cinfo->out_color_components local
626 int nc = cinfo->out_color_components; local
    [all...]
  /external/valgrind/main/coregrind/
m_debuglog.c 674 Int i, nc = 0; local
692 0 == (ind-nc) % 3 && 0 != ind)
695 nc++;
  /external/webrtc/src/modules/audio_processing/aec/main/source/
aec_rdft.c 130 const int nc = 32; local
134 ip[1] = nc;
135 nch = nc >> 1;
141 c[nc - j] = 0.5f * sinf(delta * j);
  /external/webrtc/src/modules/audio_processing/utility/
fft4g.c 317 void makect(int nc, int *ip, float *c);
321 void rftfsub(int n, float *a, int nc, float *c);
322 void rftbsub(int n, float *a, int nc, float *c);
323 int nw, nc; local
331 nc = ip[1];
332 if (n > (nc << 2)) {
333 nc = n >> 2;
334 makect(nc, ip, w + nw);
340 rftfsub(n, a, nc, w + nw);
351 rftbsub(n, a, nc, w + nw)
371 int j, nw, nc; local
430 int j, nw, nc; local
487 int j, k, l, m, mh, nw, nc; local
583 int j, k, l, m, mh, nw, nc; local
    [all...]
  /external/wpa_supplicant/wpa_gui/
wpagui.ui.h 695 NetworkConfig *nc = new NetworkConfig(); local
696 if (nc == NULL)
698 nc->setWpaGui(this);
700 nc->paramsFromConfig(sel.toInt());
701 nc->show();
702 nc->exec();
716 NetworkConfig *nc = new NetworkConfig(); local
717 if (nc == NULL)
719 nc->setWpaGui(this);
720 nc->newNetwork()
    [all...]
  /external/wpa_supplicant/wpa_gui-qt4/
wpagui.cpp 742 NetworkConfig *nc = new NetworkConfig(); local
743 if (nc == NULL)
745 nc->setWpaGui(this);
747 nc->paramsFromConfig(sel.toInt());
748 nc->show();
749 nc->exec();
763 NetworkConfig *nc = new NetworkConfig(); local
764 if (nc == NULL)
766 nc->setWpaGui(this);
767 nc->newNetwork()
    [all...]
  /external/wpa_supplicant_6/wpa_supplicant/wpa_gui/
wpagui.ui.h 693 NetworkConfig *nc = new NetworkConfig(); local
694 if (nc == NULL)
696 nc->setWpaGui(this);
698 nc->paramsFromConfig(sel.toInt());
699 nc->show();
700 nc->exec();
714 NetworkConfig *nc = new NetworkConfig(); local
715 if (nc == NULL)
717 nc->setWpaGui(this);
718 nc->newNetwork()
    [all...]
  /external/wpa_supplicant_8/wpa_supplicant/wpa_gui/
wpagui.ui.h 693 NetworkConfig *nc = new NetworkConfig(); local
694 if (nc == NULL)
696 nc->setWpaGui(this);
698 nc->paramsFromConfig(sel.toInt());
699 nc->show();
700 nc->exec();
714 NetworkConfig *nc = new NetworkConfig(); local
715 if (nc == NULL)
717 nc->setWpaGui(this);
718 nc->newNetwork()
    [all...]
  /frameworks/base/graphics/java/android/renderscript/
Matrix3f.java 129 float nc = 1.0f - c; local
136 mMat[0] = x*x*nc + c;
137 mMat[3] = xy*nc - zs;
138 mMat[6] = zx*nc + ys;
139 mMat[1] = xy*nc + zs;
140 mMat[4] = y*y*nc + c;
141 mMat[9] = yz*nc - xs;
142 mMat[2] = zx*nc - ys;
143 mMat[6] = yz*nc + xs;
144 mMat[8] = z*z*nc + c
    [all...]
Matrix4f.java 144 float nc = 1.0f - c; local
151 mMat[ 0] = x*x*nc + c;
152 mMat[ 4] = xy*nc - zs;
153 mMat[ 8] = zx*nc + ys;
154 mMat[ 1] = xy*nc + zs;
155 mMat[ 5] = y*y*nc + c;
156 mMat[ 9] = yz*nc - xs;
157 mMat[ 2] = zx*nc - ys;
158 mMat[ 6] = yz*nc + xs;
159 mMat[10] = z*z*nc + c
    [all...]
  /frameworks/base/libs/hwui/
Matrix.cpp 240 const float nc = 1.0f - c; local
248 data[kScaleX] = x * x * nc + c;
249 data[kSkewX] = xy * nc - zs;
250 data[8] = zx * nc + ys;
251 data[kSkewY] = xy * nc + zs;
252 data[kScaleY] = y * y * nc + c;
253 data[9] = yz * nc - xs;
254 data[2] = zx * nc - ys;
255 data[6] = yz * nc + xs;
256 data[kScaleZ] = z * z * nc + c
    [all...]
  /frameworks/base/libs/rs/
rsMatrix4x4.cpp 220 const float nc = 1.0f - c; local
227 m[ 0] = x*x*nc + c;
228 m[ 4] = xy*nc - zs;
229 m[ 8] = zx*nc + ys;
230 m[ 1] = xy*nc + zs;
231 m[ 5] = y*y*nc + c;
232 m[ 9] = yz*nc - xs;
233 m[ 2] = zx*nc - ys;
234 m[ 6] = yz*nc + xs;
235 m[10] = z*z*nc + c
    [all...]
  /frameworks/base/media/libstagefright/codecs/on2/h264dec/source/
h264bsd_macroblock_layer.c 518 OMX_INT nc; local
533 nc = (OMX_INT)DetermineNc(pMb, 0, pResidual->totalCoeff);
540 nc,
548 nc,
567 nc = (OMX_INT)DetermineNc(pMb,blockIndex,pResidual->totalCoeff);
576 nc,
584 nc,
596 nc,
604 nc,
662 nc = (OMX_INT)DetermineNc(pMb, blockIndex, pResidual->totalCoeff)
706 i32 nc; local
    [all...]
  /libcore/luni/src/test/java/org/apache/harmony/crypto/tests/javax/crypto/
CipherOutputStream1Test.java 151 NullCipher nc = new NullCipher(); local
152 CipherOutputStream stream1 = new CipherOutputStream(new BufferedOutputStream((OutputStream) null), nc);
154 CipherOutputStream stream3 = new CipherOutputStream(stream2, nc);
  /external/apache-harmony/auth/src/test/java/common/org/apache/harmony/auth/tests/javax/security/sasl/
Sasl3Test.java 392 NameCallback nc = (NameCallback) element; local
393 nc.setName("Ok");
  /external/bluetooth/bluez/network/
connection.c 101 struct network_conn *nc = list->data; local
103 if (nc->id == id)
104 return nc;
113 struct network_conn *nc = data; local
118 emit_property_changed(connection, nc->peer->path,
121 emit_property_changed(connection, nc->peer->path,
124 emit_property_changed(connection, nc->peer->path,
127 device_remove_disconnect_watch(nc->peer->device, nc->dc_id);
128 nc->dc_id = 0
168 struct network_conn *nc = user_data; local
180 struct network_conn *nc = user_data; local
190 struct network_conn *nc = data; local
326 struct network_conn *nc = data; local
354 struct network_conn *nc; local
400 struct network_conn *nc = data; local
419 struct network_conn *nc = l->data; local
434 struct network_conn *nc = NULL; local
527 struct network_conn *nc; local
578 struct network_conn *nc; local
    [all...]
  /external/nist-sip/java/gov/nist/javax/sip/header/
AuthenticationHeader.java 70 public static final String NC = ParameterNames.NC;
437 return this.getParameterAsHexInt(ParameterNames.NC);
449 String nc = Integer.toHexString(param); local
452 nc = base.substring(0, 8 - nc.length()) + nc;
453 this.setParameter(ParameterNames.NC, nc);
  /frameworks/base/core/java/android/net/http/
RequestHandle.java 311 // because we do not preemptively send authorization headers, nc is always 1
312 String nc = "00000001"; local
314 String digest = computeDigest(A1, A2, nonce, QOP, nc, cnonce);
332 response += ", qop=" + QOP + ", nc=" + nc + ", cnonce=" + doubleQuote(cnonce);
353 String A1, String A2, String nonce, String QOP, String nc, String cnonce) {
362 return KD(H(A1), nonce + ":" + nc + ":" + cnonce + ":" + QOP + ":" + H(A2));
  /sdk/anttasks/src/com/android/ant/
AaptExecTask.java 260 NoCompress nc = new NoCompress(); local
261 mNoCompressList.add(nc);
262 return nc;
454 for (NoCompress nc : mNoCompressList) {
455 if (nc.mExtension == null) {
464 for (NoCompress nc : mNoCompressList) {
466 task.createArg().setValue(nc.mExtension);
  /external/libvpx/vp8/encoder/
mcomp.c 816 int nr = tr + hex[i].row, nc = tc + hex[i].col; local
818 if (nc < x->mv_col_min) continue;
820 if (nc > x->mv_col_max) continue;
826 //CHECK_BETTER(thiserr,nr,nc);
827 if ((thiserr = ERR(nr, nc, besterr)) < besterr)
831 bc = nc;
847 int nr = tr + next_chkpts[tk][i].row, nc = tc + next_chkpts[tk][i].col; local
849 if (nc < x->mv_col_min) continue;
851 if (nc > x->mv_col_max) continue;
857 //CHECK_BETTER(thiserr,nr,nc);
881 int nr = tr + neighbors[i].row, nc = tc + neighbors[i].col; local
    [all...]
  /external/openssl/ssl/
s3_clnt.c 1046 unsigned long n,nc,llen,l; local
1093 for (nc=0; nc<llen; )
1096 if ((l+nc+3) > llen)
1123 nc+=l+3;
1164 printf("cipher, alg, nc = %s, %lx, %lx, %d\n", s->s3->tmp.new_cipher->name,
1742 unsigned long n,nc,l; local
    [all...]
  /external/qemu/distrib/sdl-1.2.12/src/video/x11/
SDL_x11video.c 1391 int nc = this->screen->format->palette->ncolors; local
    [all...]
  /external/skia/src/core/
SkGeometry.cpp 191 int nc = C.shiftToMake32(); local
193 int shift = SkMax32(na, SkMax32(nb, nc));
    [all...]
  /external/wpa_supplicant_6/wpa_supplicant/wpa_gui-qt4/
wpagui.cpp 1030 NetworkConfig *nc = new NetworkConfig(); local
1031 if (nc == NULL)
1033 nc->setWpaGui(this);
1036 nc->paramsFromConfig(id);
1038 nc->newNetwork();
1040 nc->show();
1041 nc->exec();
1080 NetworkConfig *nc = new NetworkConfig(); local
1081 if (nc == NULL)
1083 nc->setWpaGui(this)
    [all...]

Completed in 1416 milliseconds

12 3 4