HomeSort by relevance Sort by last modified time
    Searched defs:InBufPtr (Results 1 - 9 of 9) sorted by null

  /device/linaro/bootloader/edk2/EmbeddedPkg/GdbStub/Arm/
Processor.c 260 @param InBufPtr pointer to the output buffer. the new data will be extracted from the input buffer from this point on.
267 IN CHAR8 *InBufPtr
275 return InBufPtr + 8;
281 TempValue = HexCharToInt (*InBufPtr++);
289 TempValue = HexCharToInt (*InBufPtr++);
300 return InBufPtr;
318 CHAR8 *InBufPtr; // pointer to the input buffer
321 InBufPtr = &InBuffer[1];
323 while (*InBufPtr != '=') {
324 *RegNumBufPtr++ = *InBufPtr++;
    [all...]
  /device/linaro/bootloader/edk2/EmbeddedPkg/GdbStub/Ia32/
Processor.c 250 @param InBufPtr pointer to the output buffer. the new data will be extracted from the input buffer from this point on.
257 IN CHAR8 *InBufPtr
267 TempValue = HexCharToInt(*InBufPtr++);
275 TempValue = HexCharToInt(*InBufPtr++);
286 return InBufPtr;
306 CHAR8 *InBufPtr; // pointer to the input buffer
309 InBufPtr = &InBuffer[1];
311 while (*InBufPtr != '=') {
312 *RegNumBufPtr++ = *InBufPtr++;
322 InBufPtr++; // skips the '=' character
    [all...]
  /device/linaro/bootloader/edk2/EmbeddedPkg/GdbStub/X64/
Processor.c 219 @param InBufPtr pointer to the output buffer. the new data will be extracted from the input buffer from this point on.
226 IN CHAR8 *InBufPtr
236 TempValue = HexCharToInt(*InBufPtr++);
244 TempValue = HexCharToInt(*InBufPtr++);
255 return InBufPtr;
275 CHAR8 *InBufPtr; // pointer to the input buffer
278 InBufPtr = &InBuffer[1];
280 while (*InBufPtr != '=') {
281 *RegNumBufPtr++ = *InBufPtr++;
291 InBufPtr++; // skips the '=' character
    [all...]
  /device/linaro/bootloader/edk2/EmbeddedPkg/Library/GdbDebugAgent/Arm/
Processor.c 273 @param InBufPtr pointer to the output buffer. the new data will be extracted from the input buffer from this point on.
280 IN CHAR8 *InBufPtr
288 return InBufPtr + 8;
294 TempValue = HexCharToInt(*InBufPtr++);
302 TempValue = HexCharToInt(*InBufPtr++);
313 return InBufPtr;
331 CHAR8 *InBufPtr; // pointer to the input buffer
334 InBufPtr = &InBuffer[1];
336 while (*InBufPtr != '=') {
337 *RegNumBufPtr++ = *InBufPtr++;
    [all...]
  /device/linaro/bootloader/edk2/EmbeddedPkg/Library/GdbDebugAgent/
GdbDebugAgent.c 461 CHAR8 *InBufPtr; /// pointer to the input buffer
464 InBufPtr = &PacketData[1];
465 while (*InBufPtr != ',') {
466 *AddrBufPtr++ = *InBufPtr++;
470 InBufPtr++; // this skips ',' in the buffer
485 Length = AsciiStrHexToUintn (InBufPtr);
509 CHAR8 *InBufPtr; /// pointer to the input buffer
513 InBufPtr = &PacketData[1];
515 while (*InBufPtr != ',') {
516 *AddrBufPtr++ = *InBufPtr++;
    [all...]
  /device/linaro/bootloader/edk2/EmbeddedPkg/Library/GdbDebugAgent/Ia32/
Processor.c 236 @param InBufPtr pointer to the output buffer. the new data will be extracted from the input buffer from this point on.
243 IN CHAR8 *InBufPtr
253 TempValue = HexCharToInt(*InBufPtr++);
261 TempValue = HexCharToInt(*InBufPtr++);
272 return InBufPtr;
292 CHAR8 *InBufPtr; // pointer to the input buffer
295 InBufPtr = &InBuffer[1];
297 while (*InBufPtr != '=') {
298 *RegNumBufPtr++ = *InBufPtr++;
308 InBufPtr++; // skips the '=' character
    [all...]
  /device/linaro/bootloader/edk2/EmbeddedPkg/Library/GdbDebugAgent/X64/
Processor.c 219 @param InBufPtr pointer to the output buffer. the new data will be extracted from the input buffer from this point on.
226 IN CHAR8 *InBufPtr
236 TempValue = HexCharToInt(*InBufPtr++);
244 TempValue = HexCharToInt(*InBufPtr++);
255 return InBufPtr;
275 CHAR8 *InBufPtr; // pointer to the input buffer
278 InBufPtr = &InBuffer[1];
280 while (*InBufPtr != '=') {
281 *RegNumBufPtr++ = *InBufPtr++;
291 InBufPtr++; // skips the '=' character
    [all...]
  /device/linaro/bootloader/edk2/EmbeddedPkg/GdbStub/
GdbStub.c 620 CHAR8 *InBufPtr; /// pointer to the input buffer
623 InBufPtr = &PacketData[1];
624 while (*InBufPtr != ',') {
625 *AddrBufPtr++ = *InBufPtr++;
629 InBufPtr++; // this skips ',' in the buffer
646 Length = AsciiStrHexToUintn (InBufPtr);
670 CHAR8 *InBufPtr; /// pointer to the input buffer
674 InBufPtr = &PacketData[1];
676 while (*InBufPtr != ',') {
677 *AddrBufPtr++ = *InBufPtr++;
    [all...]
  /frameworks/compile/libbcc/lib/
RSKernelExpand.cpp 678 llvm::LoadInst *InBufPtr = Builder.CreateLoad(InBufPtrAddr, "input_buf");
682 CastInBufPtr = Builder.CreatePointerCast(InBufPtr, InType, "casted_in");
690 CastInBufPtr = InBufPtr;
694 InBufPtr->setMetadata("tbaa", TBAAPointer);
    [all...]

Completed in 739 milliseconds