OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:strA
(Results
1 - 9
of
9
) sorted by null
/external/neven/Embedded/common/src/b_BasicEm/
String.h
51
uint32 bbs_strlen( const char*
strA
);
70
int32 bbs_atoi( const char*
strA
);
String.c
94
uint32 bbs_strlen( const char*
strA
)
97
while(
strA
[ iL++ ] != 0 );
264
int32 bbs_atoi( const char*
strA
)
268
uint16 iL = 0, lenL = bbs_strlen(
strA
);
270
while( iL < lenL &&
strA
[ iL ] == ' ' ) iL++;
271
if(
strA
[ iL ] == '-' )
276
while( iL < lenL &&
strA
[ iL ] == ' ' ) iL++;
277
while( iL < lenL &&
strA
[ iL ] >= '0' &&
strA
[ iL ] <= '9' )
279
valL = valL * 10 + (
strA
[ iL ] - '0' )
[
all
...]
/external/chromium_org/third_party/protobuf/src/google/protobuf/io/
zero_copy_stream_unittest.cc
292
static const char*
strA
= "0123456789";
303
coded_output->WriteVarint32(strlen(
strA
));
304
coded_output->WriteRaw(
strA
, strlen(
strA
));
322
EXPECT_EQ(strlen(
strA
), insize);
324
EXPECT_EQ(0, memcmp(temp_buffer,
strA
, insize));
597
static const char*
strA
= "0123456789";
609
int32 outlen = strlen(
strA
) + 1;
611
coded_output->WriteRaw(
strA
, outlen);
634
EXPECT_EQ(strlen(
strA
) + 1, insize)
[
all
...]
/external/chromium_org/v8/src/third_party/vtune/
ittnotify_config.h
456
h->
strA
= NULL; \
471
h->
strA
= name ? __itt_fstrdup(name) : NULL; \
/external/chromium_org/third_party/icu/source/test/cintltst/
cmsccoll.c
[
all
...]
/external/llvm/lib/ExecutionEngine/IntelJITEvents/
ittnotify_config.h
427
h->
strA
= NULL; \
442
h->
strA
= name ? __itt_fstrdup(name) : NULL; \
/external/icu4c/test/cintltst/
cmsccoll.c
[
all
...]
/external/chromium_org/third_party/libxml/src/
xmlschemas.c
[
all
...]
/external/libxml2/
xmlschemas.c
[
all
...]
Completed in 295 milliseconds