OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:rawlength
(Results
1 - 8
of
8
) sorted by null
/system/netd/server/
NetdConstants.cpp
221
int
rawLength
;
229
rawLength
= 4;
238
rawLength
= 16;
247
if (
rawLength
> size) {
253
memcpy(address, rawAddress,
rawLength
);
256
return
rawLength
;
RouteController.cpp
373
int
rawLength
= parsePrefix(destination, &family, rawAddress, sizeof(rawAddress),
375
if (
rawLength
< 0) {
376
ALOGE("parsePrefix failed for destination %s (%s)", destination, strerror(-
rawLength
));
377
return
rawLength
;
380
if (static_cast<size_t>(
rawLength
) > sizeof(rawAddress)) {
381
ALOGE("impossible! address too long (%d vs %zu)",
rawLength
, sizeof(rawAddress));
426
rtattr rtaDst = { U16_RTA_LENGTH(
rawLength
), RTA_DST };
427
rtattr rtaGateway = { U16_RTA_LENGTH(
rawLength
), RTA_GATEWAY };
435
{ rawAddress, static_cast<size_t>(
rawLength
) },
439
{ rawNexthop, nexthop ? static_cast<size_t>(
rawLength
) : 0 }
[
all
...]
/dalvik/dexgen/src/com/android/dexgen/dex/file/
AnnotationUtils.java
176
int
rawLength
= raw.length();
179
for (int at = 0; at <
rawLength
; /*at*/) {
184
while (endAt <
rawLength
) {
196
while (endAt <
rawLength
) {
/dalvik/dx/src/com/android/dx/dex/file/
AnnotationUtils.java
175
int
rawLength
= raw.length();
178
for (int at = 0; at <
rawLength
; /*at*/) {
183
while (endAt <
rawLength
) {
195
while (endAt <
rawLength
) {
/external/dexmaker/src/dx/java/com/android/dx/dex/file/
AnnotationUtils.java
174
int
rawLength
= raw.length();
177
for (int at = 0; at <
rawLength
; /*at*/) {
182
while (endAt <
rawLength
) {
194
while (endAt <
rawLength
) {
/packages/inputmethods/LatinIME/native/jni/src/suggest/core/dicnode/internal/
dic_node_state_input.h
50
const int prevCodePoint, const float terminalDiffCost, const float
rawLength
) {
dic_node_state_scoring.h
98
void addRawLength(const float
rawLength
) {
99
mRawLength +=
rawLength
;
/external/clang/lib/Lex/
Lexer.cpp
258
size_t
RawLength
= RawEnd - BufPtr + 1;
261
memcpy(Spelling + Length, BufPtr,
RawLength
);
262
Length +=
RawLength
;
263
BufPtr +=
RawLength
;
[
all
...]
Completed in 117 milliseconds