1 |
|
|
/*************************************************************************** |
2 |
|
|
* Copyright (c) 2024 Microsoft Corporation |
3 |
|
|
* Copyright (c) 2026-present Eclipse ThreadX contributors |
4 |
|
|
* |
5 |
|
|
* This program and the accompanying materials are made available under the |
6 |
|
|
* terms of the MIT License which is available at |
7 |
|
|
* https://opensource.org/licenses/MIT. |
8 |
|
|
* |
9 |
|
|
* SPDX-License-Identifier: MIT |
10 |
|
|
**************************************************************************/ |
11 |
|
|
|
12 |
|
|
|
13 |
|
|
/**************************************************************************/ |
14 |
|
|
/**************************************************************************/ |
15 |
|
|
/** */ |
16 |
|
|
/** FileX Component */ |
17 |
|
|
/** */ |
18 |
|
|
/** Utility */ |
19 |
|
|
/** */ |
20 |
|
|
/**************************************************************************/ |
21 |
|
|
/**************************************************************************/ |
22 |
|
|
|
23 |
|
|
#define FX_SOURCE_CODE |
24 |
|
|
|
25 |
|
|
|
26 |
|
|
/* Include necessary system files. */ |
27 |
|
|
|
28 |
|
|
#include "fx_api.h" |
29 |
|
|
#include "fx_system.h" |
30 |
|
|
#include "fx_utility.h" |
31 |
|
|
|
32 |
|
|
|
33 |
|
|
/**************************************************************************/ |
34 |
|
|
/* */ |
35 |
|
|
/* FUNCTION RELEASE */ |
36 |
|
|
/* */ |
37 |
|
|
/* _fx_utility_64_unsigned_read PORTABLE C */ |
38 |
|
|
/* 6.1 */ |
39 |
|
|
/* AUTHOR */ |
40 |
|
|
/* */ |
41 |
|
|
/* William E. Lamie, Microsoft Corporation */ |
42 |
|
|
/* */ |
43 |
|
|
/* DESCRIPTION */ |
44 |
|
|
/* */ |
45 |
|
|
/* This function reads (with endian awareness) a 64-bit unsigned data */ |
46 |
|
|
/* from the specified source and returns the value to the caller. */ |
47 |
|
|
/* */ |
48 |
|
|
/* INPUT */ |
49 |
|
|
/* */ |
50 |
|
|
/* source_ptr Source memory pointer */ |
51 |
|
|
/* */ |
52 |
|
|
/* OUTPUT */ |
53 |
|
|
/* */ |
54 |
|
|
/* ULONG64 value */ |
55 |
|
|
/* */ |
56 |
|
|
/* CALLS */ |
57 |
|
|
/* */ |
58 |
|
|
/* None */ |
59 |
|
|
/* */ |
60 |
|
|
/* CALLED BY */ |
61 |
|
|
/* */ |
62 |
|
|
/* FileX System Functions */ |
63 |
|
|
/* */ |
64 |
|
|
/**************************************************************************/ |
65 |
|
1 |
ULONG64 _fx_utility_64_unsigned_read(UCHAR *source_ptr) |
66 |
|
|
{ |
67 |
|
|
|
68 |
|
|
ULONG64 value; |
69 |
|
|
ULONG upper_portion; |
70 |
|
|
ULONG lower_portion; |
71 |
|
|
|
72 |
|
|
|
73 |
|
1 |
lower_portion = _fx_utility_32_unsigned_read(source_ptr); |
74 |
|
1 |
upper_portion = _fx_utility_32_unsigned_read(source_ptr + sizeof(ULONG)); |
75 |
|
|
|
76 |
|
1 |
value = ((ULONG64)upper_portion) << 32; |
77 |
|
1 |
value |= (ULONG64)lower_portion; |
78 |
|
|
|
79 |
|
|
/* Return 64-bit value to caller. */ |
80 |
|
1 |
return(value); |
81 |
|
|
} |
82 |
|
|
|