HomeSort by relevance Sort by last modified time
    Searched full:buflength (Results 1 - 21 of 21) sorted by null

  /libcore/luni/src/main/java/org/apache/harmony/security/x501/
AttributeValue.java 234 int bufLength;
242 bufLength = buf.length();
243 if (bufLength == 0 || buf.charAt(bufLength - 1) == ' ') {
264 for (bufLength = buf.length() - 1; bufLength > -1
265 && buf.charAt(bufLength) == ' '; bufLength--) {
267 buf.setLength(bufLength + 1);
  /development/ndk/platforms/android-5/samples/hello-gl2/jni/
gl_code.cpp 104 GLint bufLength = 0;
105 glGetProgramiv(program, GL_INFO_LOG_LENGTH, &bufLength);
106 if (bufLength) {
107 char* buf = (char*) malloc(bufLength);
109 glGetProgramInfoLog(program, bufLength, NULL, buf);
  /frameworks/base/opengl/tests/gl2_jni/jni/
gl_code.cpp 84 GLint bufLength = 0;
85 glGetProgramiv(program, GL_INFO_LOG_LENGTH, &bufLength);
86 if (bufLength) {
87 char* buf = (char*) malloc(bufLength);
89 glGetProgramInfoLog(program, bufLength, NULL, buf);
  /frameworks/base/opengl/tests/gldual/jni/
gl_code.cpp 84 GLint bufLength = 0;
85 glGetProgramiv(program, GL_INFO_LOG_LENGTH, &bufLength);
86 if (bufLength) {
87 char* buf = (char*) malloc(bufLength);
89 glGetProgramInfoLog(program, bufLength, NULL, buf);
  /frameworks/base/libs/rs/
rsShaderCache.cpp 115 GLint bufLength = 0;
116 glGetProgramiv(pgm, GL_INFO_LOG_LENGTH, &bufLength);
117 if (bufLength) {
118 char* buf = (char*) malloc(bufLength);
120 glGetProgramInfoLog(pgm, bufLength, NULL, buf);
  /frameworks/base/opengl/tests/gl2_basic/
gl2_basic.cpp 123 GLint bufLength = 0;
124 glGetProgramiv(program, GL_INFO_LOG_LENGTH, &bufLength);
125 if (bufLength) {
126 char* buf = (char*) malloc(bufLength);
128 glGetProgramInfoLog(program, bufLength, NULL, buf);
  /hardware/ti/wlan/wl1271/stad/src/Sta_Management/
currBss.h 176 TI_UINT16 bufLength);
183 TI_UINT16 bufLength);
currBss.c 684 TI_UINT16 bufLength)
701 siteMgr_saveProbeRespBuffer(pCurrBSS->hSiteMgr, bssid, (TI_UINT8 *)dataBuffer, bufLength);
734 TI_UINT16 bufLength)
790 siteMgr_saveBeaconBuffer(pCurrBSS->hSiteMgr, bssid, (TI_UINT8 *)dataBuffer, bufLength);
803 siteMgr_saveBeaconBuffer(pCurrBSS->hSiteMgr, bssid, (TI_UINT8 *)dataBuffer, bufLength);
895 pCurrBSS->currAPInfo.bufferLength = pParam->content.siteMgrLastBeacon.bufLength;
    [all...]
siteMgr.c     [all...]
  /system/wlan/ti/sta_dk_4_0_4_32/common/src/core/currBss/
currBss.h 120 UINT16 bufLength);
127 UINT16 bufLength);
currBss.c 626 UINT16 bufLength)
642 siteMgr_saveProbeRespBuffer(pCurrBSS->hSiteMgr, bssid, (UINT8 *)dataBuffer, bufLength);
674 UINT16 bufLength)
689 siteMgr_saveBeaconBuffer(pCurrBSS->hSiteMgr, bssid, (UINT8 *)dataBuffer, bufLength);
805 pCurrBSS->currAPInfo.bufferLength = param.content.siteMgrLastBeacon.bufLength;
    [all...]
  /system/wlan/ti/wilink_6_1/stad/src/Sta_Management/
currBss.h 178 TI_UINT16 bufLength);
185 TI_UINT16 bufLength);
currBss.c 654 TI_UINT16 bufLength)
670 siteMgr_saveProbeRespBuffer(pCurrBSS->hSiteMgr, bssid, (TI_UINT8 *)dataBuffer, bufLength);
703 TI_UINT16 bufLength)
721 siteMgr_saveBeaconBuffer(pCurrBSS->hSiteMgr, bssid, (TI_UINT8 *)dataBuffer, bufLength);
727 siteMgr_saveBeaconBuffer(pCurrBSS->hSiteMgr, bssid, (TI_UINT8 *)dataBuffer, bufLength);
814 pCurrBSS->currAPInfo.bufferLength = pParam->content.siteMgrLastBeacon.bufLength;
    [all...]
siteMgr.c     [all...]
  /external/grub/netboot/
epic100.c 32 unsigned short buflength; member in struct:epic_rx_desc
44 unsigned short buflength; member in struct:epic_tx_desc
262 rx_ring[i].buflength = PKT_BUF_SZ;
329 tx_ring[entry].buflength = len;
  /external/bouncycastle/src/main/java/org/bouncycastle/crypto/modes/
GCMBlockCipher.java 116 int bufLength = forEncryption ? BLOCK_SIZE : (BLOCK_SIZE + macSize);
117 this.bufBlock = new byte[bufLength];
  /hardware/ti/wlan/wl1271/stad/Export_Inc/
paramOut.h 363 TI_UINT16 bufLength;
    [all...]
  /libcore/luni/src/main/java/java/math/
BigDecimal.java 295 int bufLength = 0;
316 bufLength += offset - begin;
333 bufLength +=scale;
359 if (bufLength < 19) {
    [all...]