HomeSort by relevance Sort by last modified time
    Searched full:tmpbuffer (Results 1 - 25 of 45) sorted by null

1 2

  /packages/inputmethods/LatinIME/tools/dicttool/src/com/android/inputmethod/latin/dicttool/
BinaryDictOffdeviceUtils.java 157 final byte[] tmpBuffer = new byte[12];
158 if (tmpBuffer.length != input.read(tmpBuffer)) {
166 final int magicNumber = ((tmpBuffer[MAGIC_NUMBER_START_OFFSET] & 0xFF) << 24)
167 + ((tmpBuffer[MAGIC_NUMBER_START_OFFSET + 1] & 0xFF) << 16)
168 + ((tmpBuffer[MAGIC_NUMBER_START_OFFSET + 2] & 0xFF) << 8)
169 + (tmpBuffer[MAGIC_NUMBER_START_OFFSET + 3] & 0xFF);
173 final int version = ((tmpBuffer[VERSION_START_OFFSET] & 0xFF) << 8)
174 + (tmpBuffer[VERSION_START_OFFSET + 1] & 0xFF);
179 final int totalHeaderSize = ((tmpBuffer[HEADER_SIZE_OFFSET] & 0xFF) << 24
    [all...]
  /external/libgdx/backends/gdx-backend-lwjgl3/src/com/badlogic/gdx/backends/lwjgl3/
Lwjgl3Graphics.java 56 IntBuffer tmpBuffer = BufferUtils.createIntBuffer(1);
99 GLFW.glfwGetFramebufferSize(window.getWindowHandle(), tmpBuffer, tmpBuffer2);
100 this.backBufferWidth = tmpBuffer.get(0);
102 GLFW.glfwGetWindowSize(window.getWindowHandle(), tmpBuffer, tmpBuffer2);
103 Lwjgl3Graphics.this.logicalWidth = tmpBuffer.get(0);
220 GLFW.glfwGetMonitorPhysicalSize(monitor.monitorHandle, tmpBuffer, tmpBuffer2);
221 int sizeX = tmpBuffer.get(0);
229 GLFW.glfwGetMonitorPhysicalSize(monitor.monitorHandle, tmpBuffer, tmpBuffer2);
255 GLFW.glfwGetWindowPos(window.getWindowHandle(), tmpBuffer, tmpBuffer2);
256 int windowX = tmpBuffer.get(0)
    [all...]
Lwjgl3Window.java 43 private final IntBuffer tmpBuffer;
128 this.tmpBuffer = BufferUtils.createIntBuffer(1);
173 GLFW.glfwGetWindowPos(windowHandle, tmpBuffer, tmpBuffer2);
174 return tmpBuffer.get(0);
181 GLFW.glfwGetWindowPos(windowHandle, tmpBuffer, tmpBuffer2);
  /external/webrtc/webrtc/modules/audio_coding/codecs/isac/main/source/
filter_functions.c 136 double tmpbuffer[PITCH_FRAME_LEN + PITCH_WLPCBUFLEN]; local
146 memcpy(tmpbuffer, wfdata->buffer, sizeof(double) * PITCH_WLPCBUFLEN);
147 memcpy(tmpbuffer+PITCH_WLPCBUFLEN, in, sizeof(double) * PITCH_FRAME_LEN);
148 memcpy(wfdata->buffer, tmpbuffer+PITCH_FRAME_LEN, sizeof(double) * PITCH_WLPCBUFLEN);
163 inp=tmpbuffer + PITCH_WLPCBUFLEN;
169 ext[k]=wfdata->window[k]*tmpbuffer[start+k];
  /libcore/ojluni/src/main/java/sun/misc/
CharacterEncoder.java 145 byte tmpbuffer[] = new byte[bytesPerLine()];
150 numBytes = readFully(inStream, tmpbuffer);
158 encodeAtom(outStream, tmpbuffer, j, bytesPerAtom());
160 encodeAtom(outStream, tmpbuffer, j, (numBytes)- j);
280 byte tmpbuffer[] = new byte[bytesPerLine()];
285 numBytes = readFully(inStream, tmpbuffer);
292 encodeAtom(outStream, tmpbuffer, j, bytesPerAtom());
294 encodeAtom(outStream, tmpbuffer, j, (numBytes)- j);
  /packages/apps/Nfc/src/com/android/nfc/snep/
SnepMessenger.java 56 byte[] tmpBuffer = Arrays.copyOfRange(buffer, 0, length);
58 mSocket.send(tmpBuffer);
84 tmpBuffer = Arrays.copyOfRange(buffer, offset, offset + length);
86 mSocket.send(tmpBuffer);
  /hardware/ti/omap4-aah/camera/
CameraHalUtilClasses.cpp 211 char *tmpBuffer = NULL;
222 tmpBuffer = ( char * ) malloc(areaLength);
223 if ( NULL == tmpBuffer )
228 memcpy(tmpBuffer, area, areaLength);
230 pArea = strtok_r(tmpBuffer, startToken, &ctx);
325 if ( NULL != tmpBuffer )
327 free(tmpBuffer);
AppCallbackNotifier.cpp 428 camera_memory_t *tmpBuffer = mRequestMemory(-1, 1, 1, NULL);
431 tmpBuffer,
438 if ( NULL != tmpBuffer ) {
439 tmpBuffer->release(tmpBuffer);
    [all...]
CameraHal.cpp 693 char tmpBuffer[MAX_PROP_VALUE_LENGTH];
695 sprintf(tmpBuffer, "%d,%d", framerate * CameraHal::VFR_SCALE, framerate * CameraHal::VFR_SCALE);
698 mParameters.set(android::CameraParameters::KEY_PREVIEW_FPS_RANGE, tmpBuffer);
699 CAMHAL_LOGDB("FPS Range = %s", tmpBuffer);
    [all...]
  /hardware/ti/omap4xxx/camera/
CameraHalUtilClasses.cpp 213 char *tmpBuffer = NULL;
224 tmpBuffer = ( char * ) malloc(areaLength);
225 if ( NULL == tmpBuffer )
230 memcpy(tmpBuffer, area, areaLength);
232 pArea = strtok_r(tmpBuffer, startToken, &ctx);
327 if ( NULL != tmpBuffer )
329 free(tmpBuffer);
AppCallbackNotifier.cpp 416 camera_memory_t *tmpBuffer = mRequestMemory(-1, 1, 1, NULL);
419 tmpBuffer,
426 if ( NULL != tmpBuffer ) {
427 tmpBuffer->release(tmpBuffer);
    [all...]
CameraHal.cpp     [all...]
  /packages/apps/Nfc/src/com/android/nfc/handover/
HandoverClient.java 117 byte[] tmpBuffer = Arrays.copyOfRange(buffer, offset, offset+length);
119 sock.send(tmpBuffer);
HandoverServer.java 225 byte[] tmpBuffer = Arrays.copyOfRange(buffer, offset, offset+length);
226 mSock.send(tmpBuffer);
  /packages/apps/Nfc/src/com/android/nfc/ndefpush/
NdefPushClient.java 108 byte[] tmpBuffer = Arrays.copyOfRange(buffer, offset, offset+length);
110 sock.send(tmpBuffer);
  /external/opencv3/modules/core/include/opencv2/core/opencl/runtime/autogenerated/
opencl_clamdfft.hpp 115 extern CL_RUNTIME_EXPORT clAmdFftStatus (*clAmdFftEnqueueTransform)(clAmdFftPlanHandle plHandle, clAmdFftDirection dir, cl_uint numQueuesAndEvents, cl_command_queue* commQueues, cl_uint numWaitEvents, const cl_event* waitEvents, cl_event* outEvents, cl_mem* inputBuffers, cl_mem* outputBuffers, cl_mem tmpBuffer);
  /hardware/ti/omap4xxx/camera/OMXCameraAdapter/
OMXCapabilities.cpp 261 char tmpBuffer[FRAMERATE_COUNT];
285 memset(tmpBuffer, 0, FRAMERATE_COUNT);
286 snprintf(tmpBuffer, FRAMERATE_COUNT - 1, "%u,", ( unsigned int ) framerateMax);
287 strncat(buffer, tmpBuffer, bufferSize - 1);
292 memset(tmpBuffer, 0, FRAMERATE_COUNT);
293 snprintf(tmpBuffer, FRAMERATE_COUNT - 1, "%u,", ( unsigned int ) framerateMin);
294 strncat(buffer, tmpBuffer, bufferSize - 1);
    [all...]
  /frameworks/ex/framesequence/jni/
FrameSequence_webp.cpp 324 Color8888* tmpBuffer = prevBuffer;
326 currBuffer = tmpBuffer;
  /external/clang/lib/Lex/
PPMacroExpansion.cpp     [all...]
  /external/icu/icu4c/source/tools/pkgdata/
pkgdata.cpp 1856 char tmpbuffer[SMALL_BUFFER_MAX_SIZE]; local
    [all...]
  /frameworks/av/media/libstagefright/
Utils.cpp 85 sp<ABuffer> tmpBuffer = new (std::nothrow) ABuffer((*buffer)->size() + 4 + length + 1024);
86 if (tmpBuffer.get() == NULL || tmpBuffer->base() == NULL) {
89 memcpy(tmpBuffer->data(), (*buffer)->data(), (*buffer)->size());
90 tmpBuffer->setRange(0, (*buffer)->size());
91 (*buffer) = tmpBuffer;
    [all...]
  /libcore/ojluni/src/main/java/java/text/
SimpleDateFormat.java 754 StringBuilder tmpBuffer = null;
774 tmpBuffer.append(c);
787 if (tmpBuffer == null) {
788 tmpBuffer = new StringBuilder(length);
790 tmpBuffer.setLength(0);
794 int len = tmpBuffer.length();
796 char ch = tmpBuffer.charAt(0);
805 compiledPattern.append(tmpBuffer);
    [all...]
  /external/clang/lib/Frontend/Rewrite/
InclusionRewriter.cpp 356 SmallVector<char, 128> TmpBuffer;
358 StringRef TmpName = PP.getSpelling(Tok, TmpBuffer, &Invalid);
  /external/skia/src/effects/
SkBlurMask.cpp 548 SkAutoTMalloc<uint8_t> tmpBuffer(dstSize);
549 uint8_t* tp = tmpBuffer.get();
    [all...]
  /external/libnfc-nci/halimpl/pn54x/hal/
phNxpNciHal.c 1524 char tmpbuffer[10] = {0}; local
    [all...]

Completed in 1264 milliseconds

1 2