Searched defs:generator (Results 1 - 25 of 45) sorted by relevance

12

/external/wpa_supplicant_6/wpa_supplicant/src/crypto/
H A Ddh_groups.h20 const u8 *generator; member in struct:dh_group
/external/wpa_supplicant_8/hostapd/src/crypto/
H A Ddh_groups.h20 const u8 *generator; member in struct:dh_group
/external/wpa_supplicant_8/src/crypto/
H A Ddh_groups.h20 const u8 *generator; member in struct:dh_group
/external/wpa_supplicant_8/wpa_supplicant/src/crypto/
H A Ddh_groups.h20 const u8 *generator; member in struct:dh_group
/external/openssl/crypto/dh/
H A Ddh_depr.c67 DH *DH_generate_parameters(int prime_len, int generator, argument
78 if(DH_generate_parameters_ex(ret, prime_len, generator, &cb))
H A Ddh_gen.c69 static int dh_builtin_genparams(DH *ret, int prime_len, int generator, BN_GENCB *cb);
71 int DH_generate_parameters_ex(DH *ret, int prime_len, int generator, BN_GENCB *cb) argument
74 return ret->meth->generate_params(ret, prime_len, generator, cb);
75 return dh_builtin_genparams(ret, prime_len, generator, cb);
81 * For this case, g is a generator if
97 * this generator function can take a very very long time to run.
99 /* Actually there is no reason to insist that 'generator' be a generator.
100 * It's just as OK (and in some sense better) to use a generator of the
103 static int dh_builtin_genparams(DH *ret, int prime_len, int generator, BN_GENC argument
[all...]
H A Ddh_pmeth.c73 int generator; member in struct:__anon7456
87 dctx->generator = 2;
105 dctx->generator = sctx->generator;
129 dctx->generator = p1;
178 dctx->prime_len, dctx->generator, pcb);
/external/stlport/test/unit/
H A Dgenerator_test.cpp52 Fibonacci generator; local
53 generate(v1.begin(), v1.end(), generator);
79 Fibonacci generator; local
80 generate_n(v1.begin(), v1.size(), generator);
/external/chromium/base/i18n/
H A Dtime_formatting.cc50 // Generate a locale-dependent format pattern. The generator will take
55 icu::DateTimePatternGenerator *generator = local
60 generator->getBestPattern(icu::UnicodeString(base_pattern), status);
/external/webkit/Source/WebCore/platform/graphics/
H A DGeneratedImage.h39 static PassRefPtr<GeneratedImage> create(PassRefPtr<Generator> generator, const IntSize& size) argument
41 return adoptRef(new GeneratedImage(generator, size));
64 GeneratedImage(PassRefPtr<Generator> generator, const IntSize& size) argument
65 : m_generator(generator)
/external/protobuf/src/google/protobuf/compiler/
H A Dplugin.cc88 int PluginMain(int argc, char* argv[], const CodeGenerator* generator) { argument
129 bool succeeded = generator->Generate(
133 error = "Code generator returned false but provided no error "
H A Dcommand_line_interface.h95 // Register a code generator for a language.
101 // * generator: The CodeGenerator which will be called to generate files
112 CodeGenerator* generator,
116 // but does not match any registered generator, the compiler will attempt to
117 // find a "plugin" to implement the generator. Plugins are just executables.
129 // gives the generator parameter, if any was provided. The PROTO_FILES list
249 CodeGenerator* generator; member in struct:google::protobuf::compiler::CommandLineInterface::GeneratorInfo
283 // generator to use for each.
286 CodeGenerator* generator; // NULL for plugins member in struct:google::protobuf::compiler::CommandLineInterface::OutputDirective
/external/protobuf/src/google/protobuf/compiler/cpp/
H A Dcpp_bootstrap_unittest.cc132 CppGenerator generator; local
137 ASSERT_TRUE(generator.Generate(proto_file, parameter,
140 ASSERT_TRUE(generator.Generate(plugin_proto_file, parameter,
/external/chromium/chrome/browser/sync/util/
H A Dextensions_activity_monitor_unittest.cc147 BookmarkAPIEventGenerator generator; local
149 generator.NewEvent<RemoveBookmarkFunction>(kTestExtensionPath1,
151 generator.NewEvent<MoveBookmarkFunction>(kTestExtensionPath1,
153 generator.NewEvent<UpdateBookmarkFunction>(kTestExtensionPath1,
155 generator.NewEvent<CreateBookmarkFunction>(kTestExtensionPath1,
157 generator.NewEvent<SearchBookmarksFunction>(kTestExtensionPath1,
161 generator.NewEvent<RemoveTreeBookmarkFunction>(kTestExtensionPath2,
163 generator.NewEvent<GetBookmarkTreeFunction>(kTestExtensionPath2,
165 generator.NewEvent<GetBookmarkChildrenFunction>(kTestExtensionPath2,
167 generator
188 BookmarkAPIEventGenerator generator; local
225 BookmarkAPIEventGenerator generator; local
[all...]
/external/mesa3d/src/glsl/
H A Dlower_variable_index_to_cond_assign.cpp74 const TFunction& generator; member in struct:switch_generator
82 switch_generator(const TFunction& generator, ir_variable *index, argument
85 : generator(generator), index(index),
106 if (!this->generator.is_write) {
107 this->generator.generate(begin, 0, list);
157 this->generator.generate(i, cond_deref, list);
165 this->generator.generate(i + j, cond_swiz, list);
/external/v8/test/cctest/
H A Dtest-cpu-profiler.cc3 // Tests of profiles generator and utilities.
26 ProfileGenerator generator(&profiles);
27 ProfilerEventsProcessor processor(i::Isolate::Current(), &generator); local
90 ProfileGenerator generator(&profiles);
91 ProfilerEventsProcessor processor(i::Isolate::Current(), &generator); local
127 // Check the state of profile generator.
128 CodeEntry* entry1 = generator.code_map()->FindEntry(ToAddress(0x1000));
131 CodeEntry* entry2 = generator.code_map()->FindEntry(ToAddress(0x1200));
134 CodeEntry* entry3 = generator.code_map()->FindEntry(ToAddress(0x1300));
137 CHECK_EQ(NULL, generator
155 ProfilerEventsProcessor processor(i::Isolate::Current(), &generator); local
248 ProfilerEventsProcessor processor(i::Isolate::Current(), &generator); local
[all...]
/external/webkit/Source/JavaScriptCore/runtime/
H A DJSGlobalData.cpp360 NativeExecutable* JSGlobalData::getHostFunction(NativeFunction function, ThunkGenerator generator) argument
362 return jitStubs->hostFunctionStub(this, function, generator);
H A DLookup.h47 ThunkGenerator generator; member in struct:JSC::HashTableValue
61 , ThunkGenerator generator = 0
70 m_u.function.generator = generator;
81 ThunkGenerator generator() const { ASSERT(m_attributes & Function); return m_u.function.generator; } function in class:JSC::HashEntry
107 ThunkGenerator generator; member in struct:JSC::HashEntry::__anon11642::__anon11644
/external/chromium/testing/gtest/test/
H A Dgtest-param-test_test.cc126 // Verifies that a sequence generated by the generator and accessed
130 void VerifyGenerator(const ParamGenerator<T>& generator, argument
132 typename ParamGenerator<T>::iterator it = generator.begin();
134 ASSERT_FALSE(it == generator.end())
146 EXPECT_TRUE(it == generator.end())
154 it = generator.begin();
156 ASSERT_FALSE(it == generator.end())
166 EXPECT_TRUE(it == generator.end())
172 void VerifyGeneratorIsEmpty(const ParamGenerator<T>& generator) { argument
173 typename ParamGenerator<T>::iterator it = generator
[all...]
/external/dbus/dbus/
H A Ddbus-message-factory.c1254 int generator; local
1257 generator = iter_get_sequence (iter);
1259 if (generator == _DBUS_N_ELEMENTS (generators))
1266 printf (" testing message loading: %s ", generators[generator].name);
1270 func = generators[generator].func;
1281 iter_next (iter); /* next generator */
/external/gtest/test/
H A Dgtest-param-test_test.cc73 // Verifies that a sequence generated by the generator and accessed
77 void VerifyGenerator(const ParamGenerator<T>& generator, argument
79 typename ParamGenerator<T>::iterator it = generator.begin();
81 ASSERT_FALSE(it == generator.end())
89 EXPECT_TRUE(it == generator.end())
97 it = generator.begin();
99 ASSERT_FALSE(it == generator.end())
107 EXPECT_TRUE(it == generator.end())
113 void VerifyGeneratorIsEmpty(const ParamGenerator<T>& generator) { argument
114 typename ParamGenerator<T>::iterator it = generator
[all...]
/external/icu4c/test/cintltst/
H A Dudatpg_test.c96 /* Clone the generator. */
226 UDateTimePatternGenerator *generator; local
320 generator=udatpg_open(locale, &status);
326 length = udatpg_getBestPattern(generator, skeleton, 4,
332 udatpg_close(generator);
348 udatpg_close(generator);
/external/icu4c/test/intltest/
H A Ddtptngts.cpp719 // set up the generator
722 DateTimePatternGenerator *generator = DateTimePatternGenerator::createInstance( locale, status); local
725 pattern = generator->getBestPattern(UnicodeString("MMMd"), status);
749 delete generator;
/external/openssl/crypto/ec/
H A Dec_lcl.h187 EC_POINT *generator; /* optional */ member in struct:ec_group_st
H A Dec_mult.c81 /* structure for precomputed multiples of the generator */
87 EC_POINT **points; /* array with pre-calculated multiples of generator:
343 * scalar*generator
350 const EC_POINT *generator = NULL; local
401 generator = EC_GROUP_get0_generator(group);
402 if (generator == NULL)
408 /* look if we can use precomputed multiples of generator */
412 if (pre_comp && pre_comp->numblocks && (EC_POINT_cmp(group, generator, pre_comp->points[0], ctx) == 0))
508 * as the wNAF belonging to the generator,
635 if (!EC_POINT_copy(val_sub[i][0], generator)) got
767 const EC_POINT *generator; local
[all...]

Completed in 5559 milliseconds

12